Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 75 for b1 (0.02 sec)

  1. test/codegen/mathbits.go

    // crypto/internal/edwards25519/field.feMulGeneric.
    func Add64MultipleChains(a, b, c, d [2]uint64) {
    	var cx, d1, d2 uint64
    	a1, a2 := a[0], a[1]
    	b1, b2 := b[0], b[1]
    	c1, c2 := c[0], c[1]
    
    	// ppc64x: "ADDC\tR\\d+,", -"ADDE", -"MOVD\tXER"
    	d1, cx = bits.Add64(a1, b1, 0)
    	// ppc64x: "ADDE", -"ADDC", -"MOVD\t.*, XER"
    	d2, _ = bits.Add64(a2, b2, cx)
    
    	// ppc64x: "ADDC\tR\\d+,", -"ADDE", -"MOVD\tXER"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/Ints.java

       * Returns the {@code int} value whose byte representation is the given 4 bytes, in big-endian
       * order; equivalent to {@code Ints.fromByteArray(new byte[] {b1, b2, b3, b4})}.
       *
       * @since 7.0
       */
      public static int fromBytes(byte b1, byte b2, byte b3, byte b4) {
        return b1 << 24 | (b2 & 0xFF) << 16 | (b3 & 0xFF) << 8 | (b4 & 0xFF);
      }
    
      private static final class IntConverter extends Converter<String, Integer>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  3. src/crypto/internal/mlkem768/mlkem768.go

    	var h nttElement
    	// We use i += 2 for bounds check elimination. See https://go.dev/issue/66826.
    	for i := 0; i < 256; i += 2 {
    		a0, a1 := f[i], f[i+1]
    		b0, b1 := g[i], g[i+1]
    		h[i] = fieldAddMul(a0, b0, fieldMul(a1, b1), gammas[i/2])
    		h[i+1] = fieldAddMul(a0, b1, a1, b0)
    	}
    	return h
    }
    
    // zetas are the values ΞΆ^BitRev7(k) mod q for each index k.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcBuildOperationsIntegrationTest.groovy

    import java.util.regex.Pattern
    
    class CompositeBuildBuildSrcBuildOperationsIntegrationTest extends AbstractCompositeBuildIntegrationTest {
        BuildTestFile buildB
    
        def setup() {
            buildB = multiProjectBuild("buildB", ['b1', 'b2']) {
                file("buildSrc/src/main/java/Thing.java") << "class Thing { }"
                buildFile << """
                    allprojects {
                        apply plugin: 'java'
                    }
    """
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    	           82:6f:f6:06:a6:43:19:e2:7c:52:66:36:13:6f:0f:73:16:3d:
    	           79:5f:f9:a6:c8:4c:18:f9:ff:20:2b:de:7f:15:e0:ab:ae:44:
    	           fa:65:7a:86:8a:df:d0:63:82:b1:5c:f3:f8:5c:05:97:4e:1f:
    	           09:d6:d9:55:e7:36:fc:08:3e:3f:66:99:68:b6:31:44:0f:63:
    	           20:6a:b2:81:50:39:19:d0:47:de:20:94:f0:a2:2c:eb:69:93:
    	           93:a3
    	   -----BEGIN CERTIFICATE-----
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/liveness/intervals.go

    //
    // The intended use case for this helper is in describing object or
    // variable lifetime ranges within a linearized program representation
    // where each IR instruction has a slot or index. Example:
    //
    //          b1:
    //  0        VarDef abc
    //  1        memset(abc,0)
    //  2        VarDef xyz
    //  3        memset(xyz,0)
    //  4        abc.f1 = 2
    //  5        xyz.f3 = 9
    //  6        if q goto B4
    //  7 B3:    z = xyz.x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java

            // TODO use newest conflict resolver
            ArtifactSpec a = createArtifactSpec("a", "1.0");
            ArtifactSpec b1 = a.addDependency("b", "1.0");
            ArtifactSpec c = a.addDependency("c", "1.0");
            ArtifactSpec d2 = b1.addDependency("d", "2.0");
            d2.addDependency("h", "1.0");
            ArtifactSpec d1 = c.addDependency("d", "1.0");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildOperationsIntegrationTest.groovy

    class CompositeBuildOperationsIntegrationTest extends AbstractCompositeBuildIntegrationTest {
        BuildTestFile buildB
    
        def setup() {
            buildB = multiProjectBuild("buildB", ['b1', 'b2']) {
                buildFile << """
                    allprojects {
                        apply plugin: 'java'
                    }
    """
            }
            includedBuilds << buildB
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildPluginDevelopmentIntegrationTest.groovy

            executed ":pluginDependencyA:jar"
        }
    
        def "can use an included build that provides both a buildscript dependency and a compile dependency"() {
            given:
            def buildB = multiProjectBuild("buildB", ['b1', 'b2']) {
                buildFile << """
                    allprojects {
                        apply plugin: 'java'
                    }
                """
            }
            includedBuilds << buildB
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

      lhs_shape.reserve(dnums.lhs_rhs_out.size() + dnums.lhs_out.size() + 1);
      rhs_shape.reserve(dnums.lhs_rhs_out.size() + 2);
      for (auto i : dnums.lhs_rhs_out) {
        const int64_t b1 = lhs_type.getShape()[std::get<0>(i)];
        lhs_shape.push_back(b1);
        const int64_t b2 = rhs_type.getShape()[std::get<1>(i)];
        rhs_shape.push_back(b2);
    
        lhs_reshape_segids.at(std::get<0>(i)) = num_lhs_reshape_segids++;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top