Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 133 for little32 (0.23 sec)

  1. src/crypto/internal/edwards25519/scalar.go

    // fiatScalarMontgomeryDomainFieldElement, which is a little-endian 4-limb value
    // in the 2^256 Montgomery domain.
    var scalarTwo168 = &Scalar{s: [4]uint64{0x5b8ab432eac74798, 0x38afddd6de59d5d7,
    	0xa2c131b399411b7c, 0x6329a7ed9ce5a30}}
    var scalarTwo336 = &Scalar{s: [4]uint64{0xbd3d108e2b35ecc5, 0x5c3a3718bdf9c90b,
    	0x63aa97a331b4f2ee, 0x3d217f5be65cb5c}}
    
    // setShortBytes sets s = x mod l, where x is a little-endian integer shorter
    // than 32 bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

                ["English", """
    ELF Header:
     Magic:   7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00
     Class:                             ELF32
     Data:                              2's complement, little endian
     Version:                           1 (current)
     OS/ABI:                            UNIX - System V
     ABI Version:                       0
     Type:                              EXEC (Executable file)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/Hashing.java

      /**
       * Returns a hash function implementing the <a
       * href="https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp">32-bit murmur3
       * algorithm, x86 variant</a> (little-endian variant), using the given seed value, <b>with a known
       * bug</b> as described in the deprecation text.
       *
       * <p>The C++ equivalent is the MurmurHash3_x86_32 function (Murmur3A), which however does not
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. src/syscall/mksyscall.pl

    my $newtags = ""; # new style build tags
    my $stdimports = 'import "unsafe"';
    my $extraimports = "";
    
    if($ARGV[0] eq "-b32") {
    	$_32bit = "big-endian";
    	shift;
    } elsif($ARGV[0] eq "-l32") {
    	$_32bit = "little-endian";
    	shift;
    }
    if($ARGV[0] eq "-plan9") {
    	$plan9 = 1;
    	shift;
    }
    if($ARGV[0] eq "-darwin") {
    	$darwin = 1;
    	$libc = 1;
    	shift;
    }
    if($ARGV[0] eq "-openbsd") {
    	$openbsd = 1;
    	shift;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/Hashing.java

      /**
       * Returns a hash function implementing the <a
       * href="https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp">32-bit murmur3
       * algorithm, x86 variant</a> (little-endian variant), using the given seed value, <b>with a known
       * bug</b> as described in the deprecation text.
       *
       * <p>The C++ equivalent is the MurmurHash3_x86_32 function (Murmur3A), which however does not
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  6. src/runtime/debuglog.go

    // A log record consists of a 2-byte framing header and a sequence of
    // fields. The framing header gives the size of the record as a little
    // endian 16-bit value. Each field starts with a byte indicating its
    // type, followed by type-specific data. If the size in the framing
    // header is 0, it's a sync record consisting of two little endian
    // 64-bit values giving a new time base.
    //
    // Because this is a ring buffer, new records will eventually
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. pkg/registry/certificates/certificates/storage/metrics_test.go

    				},
    			},
    			options:       &metav1.UpdateOptions{},
    			wantSigner:    "other",
    			wantRequested: true,
    			wantHonored:   true,
    		},
    		{
    			name:    "signer honors duration but just a little bit less",
    			success: true,
    			obj: &certificates.CertificateSigningRequest{
    				Status: certificates.CertificateSigningRequestStatus{
    					Certificate: createCert(t, time.Hour-6*time.Minute, caPrivateKey, caCert),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. src/encoding/binary/binary_test.go

    			checkResult(t, enc.name, order, err, buf, b)
    		})
    	}
    }
    
    func TestLittleEndianRead(t *testing.T)     { testRead(t, LittleEndian, little, s) }
    func TestLittleEndianWrite(t *testing.T)    { testWrite(t, LittleEndian, little, s) }
    func TestLittleEndianPtrWrite(t *testing.T) { testWrite(t, LittleEndian, little, &s) }
    
    func TestBigEndianRead(t *testing.T)     { testRead(t, BigEndian, big, s) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/field/fe.go

    	return v.Multiply(&t, &z11) // 2^255 - 21
    }
    
    // Set sets v = a, and returns v.
    func (v *Element) Set(a *Element) *Element {
    	*v = *a
    	return v
    }
    
    // SetBytes sets v to x, where x is a 32-byte little-endian encoding. If x is
    // not of the right length, SetBytes returns nil and an error, and the
    // receiver is unchanged.
    //
    // Consistent with RFC 7748, the most significant bit (the high bit of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultProjectDependency.java

         * no instantiator types available here.
         *
         * NOTE: This should all be going away in Gradle 9, so it's okay to remain ugly for a little while.
         *
         * @param selectedConfiguration the non-consumable configuration that was selected
         */
        private void failDueToNonConsumableConfigurationSelection(Configuration selectedConfiguration) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top