Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 96 of 96 for k0 (0.05 sec)

  1. guava-testlib/src/com/google/common/collect/testing/AbstractMapTester.java

       * that callers don't pass an {@link Entry} by mistake.
       */
      protected V get(K key) {
        return getMap().get(key);
      }
    
      protected final K k0() {
        return e0().getKey();
      }
    
      protected final V v0() {
        return e0().getValue();
      }
    
      protected final K k1() {
        return e1().getKey();
      }
    
      protected final V v1() {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/Hashing.java

       * SipHash-2-4 algorithm</a> using the given seed.
       *
       * @since 15.0
       */
      public static HashFunction sipHash24(long k0, long k1) {
        return new SipHashFunction(2, 4, k0, k1);
      }
    
      /**
       * Returns a hash function implementing the MD5 hash algorithm (128 hash bits).
       *
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 29.8K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/avx512enc/avx512dq.s

    	KMOVB K6, R9                                       // c57993ce
    	KMOVB K5, K0                                       // c5f990c5
    	KMOVB K4, K0                                       // c5f990c4
    	KMOVB 7(AX), K0                                    // c5f9904007
    	KMOVB (DI), K0                                     // c5f99007
    	KMOVB K5, K7                                       // c5f990fd
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 194.8K bytes
    - Viewed (0)
  4. cmd/erasure-sets.go

    	if cardinality <= 0 {
    		return -1
    	}
    	// use the faster version as per siphash docs
    	// https://github.com/dchest/siphash#usage
    	k0, k1 := binary.LittleEndian.Uint64(id[0:8]), binary.LittleEndian.Uint64(id[8:16])
    	sum64 := siphash.Hash(k0, k1, []byte(key))
    	return int(sum64 % uint64(cardinality))
    }
    
    func crcHashMod(key string, cardinality int) int {
    	if cardinality <= 0 {
    		return -1
    	}
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 37K bytes
    - Viewed (1)
  5. lib/fips140/v1.0.0-c2097c7c.zip

    CTR.S4 // Skip to <8 blocks loop CMP $128, srcPtrLen MOVD ks, H0 // For AES-128 round keys are stored in: K0 .. K10, KLAST VLD1.P 64(H0), [K0.B16, K1.B16, K2.B16, K3.B16] VLD1.P 64(H0), [K4.B16, K5.B16, K6.B16, K7.B16] VLD1.P 48(H0), [K8.B16, K9.B16, K10.B16] VMOV K10.B16, KLAST.B16 BLT startSingles // There are at least 8 blocks to encrypt TBZ $4, NR, octetsLoop // For AES-192 round keys occupy: K0 .. K7, K10, K11, K8, K9, KLAST VMOV K8.B16, K10.B16 VMOV K9.B16, K11.B16 VMOV KLAST.B16, K8.B16 VLD1.P...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Sep 25 19:53:19 UTC 2025
    - 642.7K bytes
    - Viewed (0)
  6. lib/fips140/v1.1.0-rc1.zip

    CTR.S4 // Skip to <8 blocks loop CMP $128, srcPtrLen MOVD ks, H0 // For AES-128 round keys are stored in: K0 .. K10, KLAST VLD1.P 64(H0), [K0.B16, K1.B16, K2.B16, K3.B16] VLD1.P 64(H0), [K4.B16, K5.B16, K6.B16, K7.B16] VLD1.P 48(H0), [K8.B16, K9.B16, K10.B16] VMOV K10.B16, KLAST.B16 BLT startSingles // There are at least 8 blocks to encrypt TBZ $4, NR, octetsLoop // For AES-192 round keys occupy: K0 .. K7, K10, K11, K8, K9, KLAST VMOV K8.B16, K10.B16 VMOV K9.B16, K11.B16 VMOV KLAST.B16, K8.B16 VLD1.P...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
Back to top