/external/guava/android/guava/src/com/google/common/hash/ |
D | BloomFilterStrategies.java | 51 int hash1 = (int) hash64; in MURMUR128_MITZ_32() local 56 int combinedHash = hash1 + (i * hash2); in MURMUR128_MITZ_32() 71 int hash1 = (int) hash64; in MURMUR128_MITZ_32() local 75 int combinedHash = hash1 + (i * hash2); in MURMUR128_MITZ_32() 99 long hash1 = lowerEight(bytes); in MURMUR128_MITZ_64() local 103 long combinedHash = hash1; in MURMUR128_MITZ_64() 117 long hash1 = lowerEight(bytes); in MURMUR128_MITZ_64() local 120 long combinedHash = hash1; in MURMUR128_MITZ_64()
|
/external/guava/guava/src/com/google/common/hash/ |
D | BloomFilterStrategies.java | 51 int hash1 = (int) hash64; in MURMUR128_MITZ_32() local 56 int combinedHash = hash1 + (i * hash2); in MURMUR128_MITZ_32() 71 int hash1 = (int) hash64; in MURMUR128_MITZ_32() local 75 int combinedHash = hash1 + (i * hash2); in MURMUR128_MITZ_32() 99 long hash1 = lowerEight(bytes); in MURMUR128_MITZ_64() local 103 long combinedHash = hash1; in MURMUR128_MITZ_64() 117 long hash1 = lowerEight(bytes); in MURMUR128_MITZ_64() local 120 long combinedHash = hash1; in MURMUR128_MITZ_64()
|
/external/libyuv/files/util/ |
D | compare.cc | 34 uint32_t hash1 = 5381; in main() local 43 hash1 = libyuv::HashDjb2(buf1, amt1, hash1); in main() 56 printf("hash1 %x", hash1); in main()
|
/external/tensorflow/tensorflow/core/kernels/data/ |
D | hash_utils_test.cc | 232 uint64 hash1 = GetHash(gd, *n3); in TEST_F() local 234 EXPECT_EQ(hash1, hash2); in TEST_F() 267 uint64 hash1 = GetHash(gd, *n3); in TEST_F() local 270 EXPECT_NE(hash1, hash2); in TEST_F() 343 uint64 hash1 = GetHash(gd, *shuffle_ds); in TEST_F() local 345 EXPECT_EQ(hash1, hash2); in TEST_F() 392 uint64 hash1 = GetHash(gd, *n3); in TEST_F() local 395 EXPECT_EQ(hash1, hash2); in TEST_F() 428 uint64 hash1 = GetHash(gd, *n3); in TEST_F() local 431 EXPECT_NE(hash1, hash2); in TEST_F() [all …]
|
/external/guava/android/guava-tests/test/com/google/common/hash/ |
D | HashCodeTest.java | 184 HashCode hash1 = Hashing.sha1().hashString("foo", Charsets.US_ASCII); in testRoundTripHashCodeUsingBaseEncoding() local 185 HashCode hash2 = HashCode.fromBytes(BaseEncoding.base16().lowerCase().decode(hash1.toString())); in testRoundTripHashCodeUsingBaseEncoding() 186 assertEquals(hash1, hash2); in testRoundTripHashCodeUsingBaseEncoding() 216 HashCode hash1 = Hashing.sha1().hashString("foo", Charsets.US_ASCII); in testRoundTripHashCodeUsingFromString() local 217 HashCode hash2 = HashCode.fromString(hash1.toString()); in testRoundTripHashCodeUsingFromString() 218 assertEquals(hash1, hash2); in testRoundTripHashCodeUsingFromString()
|
D | HashTestUtils.java | 296 int hash1 = function.hashInt(key1).asInt(); in checkNoFunnels() local 299 same |= ~(hash1 ^ hash2); in checkNoFunnels() 301 diff |= (hash1 ^ hash2); in checkNoFunnels() 343 int hash1 = function.hashInt(key1).asInt(); in checkAvalanche() local 346 if ((hash1 & (1 << k)) == (hash2 & (1 << k))) { in checkAvalanche() 389 int hash1 = function.hashInt(key1).asInt(); in checkNo2BitCharacteristics() local 394 if ((hash1 ^ hash2) != delta) { in checkNo2BitCharacteristics() 440 int hash1 = function.hashInt(key1).asInt(); in check2BitAvalanche() local 443 if ((hash1 & (1 << k)) == (hash2 & (1 << k))) { in check2BitAvalanche()
|
/external/guava/guava-tests/test/com/google/common/hash/ |
D | HashCodeTest.java | 184 HashCode hash1 = Hashing.sha1().hashString("foo", Charsets.US_ASCII); in testRoundTripHashCodeUsingBaseEncoding() local 185 HashCode hash2 = HashCode.fromBytes(BaseEncoding.base16().lowerCase().decode(hash1.toString())); in testRoundTripHashCodeUsingBaseEncoding() 186 assertEquals(hash1, hash2); in testRoundTripHashCodeUsingBaseEncoding() 216 HashCode hash1 = Hashing.sha1().hashString("foo", Charsets.US_ASCII); in testRoundTripHashCodeUsingFromString() local 217 HashCode hash2 = HashCode.fromString(hash1.toString()); in testRoundTripHashCodeUsingFromString() 218 assertEquals(hash1, hash2); in testRoundTripHashCodeUsingFromString()
|
D | HashTestUtils.java | 296 int hash1 = function.hashInt(key1).asInt(); in checkNoFunnels() local 299 same |= ~(hash1 ^ hash2); in checkNoFunnels() 301 diff |= (hash1 ^ hash2); in checkNoFunnels() 343 int hash1 = function.hashInt(key1).asInt(); in checkAvalanche() local 346 if ((hash1 & (1 << k)) == (hash2 & (1 << k))) { in checkAvalanche() 389 int hash1 = function.hashInt(key1).asInt(); in checkNo2BitCharacteristics() local 394 if ((hash1 ^ hash2) != delta) { in checkNo2BitCharacteristics() 440 int hash1 = function.hashInt(key1).asInt(); in check2BitAvalanche() local 443 if ((hash1 & (1 << k)) == (hash2 & (1 << k))) { in check2BitAvalanche()
|
/external/grpc-grpc-java/context/src/main/java/io/grpc/ |
D | PersistentHashArrayMappedTrie.java | 262 Node<K,V> node1, int hash1, Node<K,V> node2, int hash2, int bitsConsumed) { in combine() argument 263 assert hash1 != hash2; in combine() 264 int indexBit1 = indexBit(hash1, bitsConsumed); in combine() 267 Node<K,V> node = combine(node1, hash1, node2, hash2, bitsConsumed + BITS); in combine() 273 if (uncompressedIndex(hash1, bitsConsumed) > uncompressedIndex(hash2, bitsConsumed)) { in combine()
|
/external/icu/icu4c/source/common/ |
D | uhash.cpp | 873 uhash_equals(const UHashtable* hash1, const UHashtable* hash2){ in uhash_equals() argument 876 if(hash1==hash2){ in uhash_equals() 888 if (hash1==NULL || hash2==NULL || in uhash_equals() 889 hash1->keyComparator != hash2->keyComparator || in uhash_equals() 890 hash1->valueComparator != hash2->valueComparator || in uhash_equals() 891 hash1->valueComparator == NULL) in uhash_equals() 900 count1 = uhash_count(hash1); in uhash_equals() 908 const UHashElement* elem1 = uhash_nextElement(hash1, &pos); in uhash_equals() 917 if(hash1->valueComparator(val1, val2)==FALSE){ in uhash_equals()
|
D | uhash.h | 696 uhash_equals(const UHashtable* hash1, const UHashtable* hash2);
|
/external/deqp-deps/amber/src/dawn/ |
D | pipeline_info.h | 36 auto hash1 = std::hash<T1>{}(p.first); in operator() 38 return hash1 ^ hash2; in operator()
|
/external/e2fsprogs/lib/ext2fs/ |
D | dirhash.c | 125 __u32 hash, hash0 = 0x12a3fe2d, hash1 = 0x37abe8f9; in dx_hack_hash() local 135 hash = hash1 + (hash0 ^ (c * 7152373)); in dx_hack_hash() 138 hash1 = hash0; in dx_hack_hash()
|
/external/mtools/ |
D | vfat.h | 49 unsigned char hash1; /* Always 0? */ member
|
D | vfat.c | 266 vse->hash1 = vse->sector_l = vse->sector_u = 0; in write_vfat()
|
/external/tensorflow/tensorflow/core/framework/ |
D | function_test.cc | 1434 uint64 hash1 = FunctionDefHash(fdef1); in TEST() local 1436 EXPECT_EQ(hash1, FunctionDefHash(fdef2)); in TEST() 1441 EXPECT_NE(hash1, FunctionDefHash(fdef2)); in TEST() 1447 EXPECT_NE(hash1, FunctionDefHash(fdef2)); in TEST() 1453 EXPECT_NE(hash1, FunctionDefHash(fdef2)); in TEST() 1461 EXPECT_NE(hash1, FunctionDefHash(fdef2)); in TEST() 1467 EXPECT_NE(hash1, FunctionDefHash(fdef2)); in TEST() 1473 EXPECT_NE(hash1, FunctionDefHash(fdef2)); in TEST()
|
/external/elfutils/src/ |
D | elfcmp.c | 841 const Hash_Word *const hash1 = data1->d_buf; \ in hash_content_equivalent() 843 const size_t nbucket = hash1[0]; \ in hash_content_equivalent() 844 const size_t nchain = hash1[1]; \ in hash_content_equivalent() 845 if (data1->d_size != (2 + nbucket + nchain) * sizeof hash1[0] \ in hash_content_equivalent() 849 const Hash_Word *const bucket1 = &hash1[2]; \ in hash_content_equivalent()
|
/external/giflib/ |
D | quantize.c | 320 int hash1 = entry1->RGB[SortRGBAxis] * 256 * 256 in SortCmpRtn() local 327 return hash1 - hash2; in SortCmpRtn()
|
/external/rust/crates/parking_lot_core/src/ |
D | parking_lot.rs | 396 let hash1 = hash(key1, hashtable.hash_bits); in lock_bucket_pair() localVariable 400 let bucket1 = if hash1 <= hash2 { in lock_bucket_pair() 401 &hashtable.entries[hash1] in lock_bucket_pair() 413 if hash1 == hash2 { in lock_bucket_pair() 415 } else if hash1 < hash2 { in lock_bucket_pair() 420 let bucket2 = &hashtable.entries[hash1]; in lock_bucket_pair()
|
/external/icu/libicu/cts_headers/ |
D | uhash.h | 696 uhash_equals(const UHashtable* hash1, const UHashtable* hash2);
|
/external/arm-trusted-firmware/fdts/ |
D | stm32mp15xx-osd32.dtsi | 180 &hash1 {
|
D | stm32mp15xx-dkx.dtsi | 44 &hash1 {
|
D | stm32mp157c-ed1.dts | 58 &hash1 {
|
/external/mesa3d/src/compiler/nir/ |
D | nir_instr_set.c | 127 uint32_t hash1 = hash_alu_src(hash, &instr->src[1], in hash_alu() local 135 hash = hash0 * hash1; in hash_alu()
|
/external/icu/icu4c/source/test/intltest/ |
D | loctest.cpp | 632 int32_t hash1 = test1.hashCode(); in TestSimpleObjectStuff() local 636 test_assert(hash1 == hash2); in TestSimpleObjectStuff() 637 test_assert(hash1 == hash3); in TestSimpleObjectStuff() 719 int32_t hash1 = test1.hashCode(); in TestPOSIXParsing() local 723 test_assert(hash1 == hash2); in TestPOSIXParsing() 725 test_assert(hash3 == hash1); in TestPOSIXParsing()
|