Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 133 for b1 (0.04 sec)

  1. src/cmd/cgo/internal/test/test.go

    	var x2 *C.struct_test7786
    	x1 = x2
    	x2 = x1
    	C.f7786(x1)
    	C.f7786(x2)
    	C.g7786(x1)
    	C.g7786(x2)
    
    	var b1 *C.typedef_body7786
    	var b2 *C.struct_body7786
    	b1 = b2
    	b2 = b1
    	C.b7786(b1)
    	C.b7786(b2)
    	C.c7786(b1)
    	C.c7786(b2)
    
    	var u1 *C.typedef_union7786
    	var u2 *C.union_union7786
    	u1 = u2
    	u2 = u1
    	C.u7786(u1)
    	C.u7786(u2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/Longs.java

       * order; equivalent to {@code Longs.fromByteArray(new byte[] {b1, b2, b3, b4, b5, b6, b7, b8})}.
       *
       * @since 7.0
       */
      public static long fromBytes(
          byte b1, byte b2, byte b3, byte b4, byte b5, byte b6, byte b7, byte b8) {
        return (b1 & 0xFFL) << 56
            | (b2 & 0xFFL) << 48
            | (b3 & 0xFFL) << 40
            | (b4 & 0xFFL) << 32
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/primitives/Longs.java

       * order; equivalent to {@code Longs.fromByteArray(new byte[] {b1, b2, b3, b4, b5, b6, b7, b8})}.
       *
       * @since 7.0
       */
      public static long fromBytes(
          byte b1, byte b2, byte b3, byte b4, byte b5, byte b6, byte b7, byte b8) {
        return (b1 & 0xFFL) << 56
            | (b2 & 0xFFL) << 48
            | (b3 & 0xFFL) << 40
            | (b4 & 0xFFL) << 32
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactSelectionIntegrationTest.groovy

                }
            }
        }
    }
    project(':ui') {
        configurations {
            legacy
            compile.extendsFrom legacy
        }
        artifacts {
            legacy file('b1.jar')
            compile file('b2.jar')
        }
    }
    
    task show {
        def artifacts = configurations.compile.incoming.artifactView {
            attributes { it.attribute(buildType, 'debug') }
        }.artifacts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectSetSpec.groovy

            then:
            container.withType(Bean) as List == [bean1, bean2, bean3]
            container.withType(BeanSub1) as List == [bean2]
        }
    
        def canChainFilteredCollections() {
            final Bean bean = new Bean("b1");
            final Bean bean2 = new Bean("b2");
            final Bean bean3 = new Bean("b3");
    
            when:
            Spec<Bean> spec = { it != bean } as Spec<Bean>
            Spec<Bean> spec2 = {it != bean2 } as Spec<Bean>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top