/external/guava/guava/src/com/google/common/collect/ |
D | RegularImmutableMultiset.java | 56 ImmutableEntry<E>[] hashTable = new @Nullable ImmutableEntry[tableSize]; in create() local 90 private static boolean hashFloodingDetected(@Nullable ImmutableEntry<?>[] hashTable) { in hashFloodingDetected() 123 private final transient @Nullable ImmutableEntry<?>[] hashTable; field in RegularImmutableMultiset 131 @Nullable ImmutableEntry<?>[] hashTable, in RegularImmutableMultiset() 163 @Nullable ImmutableEntry<?>[] hashTable = this.hashTable; in count() local
|
D | LinkedHashMultimap.java | 365 @VisibleForTesting @Nullable ValueEntry<K, V>[] hashTable; field in LinkedHashMultimap.ValueSet 383 ValueEntry<K, V>[] hashTable = new @Nullable ValueEntry[tableSize]; in ValueSet() local 508 ValueEntry<K, V>[] hashTable = in rehashIfNecessary() local
|
/external/guava/android/guava/src/com/google/common/collect/ |
D | RegularImmutableMap.java | 72 @CheckForNull private final transient Object hashTable; field in RegularImmutableMap 122 Object hashTable; in create() local 212 short[] hashTable = new short[tableSize]; in createHashTable() local 249 int[] hashTable = new int[tableSize]; in createHashTable() local 297 private RegularImmutableMap( in RegularImmutableMap() 355 short[] hashTable = (short[]) hashTableObject; in get() local 367 int[] hashTable = (int[]) hashTableObject; in get() local
|
D | LinkedHashMultimap.java | 361 @VisibleForTesting @Nullable ValueEntry<K, V>[] hashTable; field in LinkedHashMultimap.ValueSet 379 ValueEntry<K, V>[] hashTable = new @Nullable ValueEntry[tableSize]; in ValueSet() local 494 ValueEntry<K, V>[] hashTable = in rehashIfNecessary() local
|
D | HashBiMap.java | 231 int[] hashTable, in findEntry()
|
/external/guava/guava-tests/benchmark/com/google/common/collect/ |
D | ImmutableSetHashFloodingDetectionBenchmark.java | 62 boolean hashFloodingDetected(Object[] hashTable) { in hashFloodingDetected() 102 boolean hashFloodingDetected(Object[] hashTable) { in hashFloodingDetected() 150 boolean hashFloodingDetected(Object[] hashTable) { in hashFloodingDetected()
|
/external/zstd/lib/compress/ |
D | zstd_fast.c | 21 U32* const hashTable = ms->hashTable; in ZSTD_fillHashTableForCDict() local 58 U32* const hashTable = ms->hashTable; in ZSTD_fillHashTableForCCtx() local 198 U32* const hashTable = ms->hashTable; in ZSTD_compressBlock_fast_noDict_generic() local 488 U32* const hashTable = ms->hashTable; in ZSTD_compressBlock_fast_dictMatchState_generic() local 714 U32* const hashTable = ms->hashTable; in ZSTD_compressBlock_fast_extDict_generic() local
|
D | zstd_lazy.c | 34 U32* const hashTable = ms->hashTable; in ZSTD_updateDUBT() local 250 U32* const hashTable = ms->hashTable; in ZSTD_DUBT_findBestMatch() local 415 U32* const hashTable = ms->hashTable; in ZSTD_dedicatedDictSearch_lazy_loadDictionary() local 637 U32* const hashTable = ms->hashTable; in ZSTD_insertAndFindFirstIndex_internal() local 816 FORCE_INLINE_TEMPLATE void ZSTD_row_prefetch(U32 const* hashTable, BYTE const* tagTable, U32 const … in ZSTD_row_prefetch() 841 U32 const* const hashTable = ms->hashTable; in ZSTD_row_fillHashCache() local 865 U32 ZSTD_row_nextCachedHash(U32* cache, U32 const* hashTable, in ZSTD_row_nextCachedHash() 890 U32* const hashTable = ms->hashTable; in ZSTD_row_update_internalImpl() local 1148 U32* const hashTable = ms->hashTable; in ZSTD_RowFindBestMatch() local
|
D | zstd_opt.c | 449 U32* const hashTable = ms->hashTable; in ZSTD_insertBt1() local 607 U32* const hashTable = ms->hashTable; in ZSTD_insertBtAndGetAllMatches() local
|
D | zstd_compress_internal.h | 290 U32* hashTable; member 339 ldmEntry_t* hashTable; member 1487 MEM_STATIC void ZSTD_writeTaggedIndex(U32* const hashTable, size_t hashAndTag, U32 index) { in ZSTD_writeTaggedIndex()
|
/external/zstd/contrib/externalSequenceProducer/ |
D | sequence_producer.c | 32 U32 hashTable[HSIZE]; in simpleSequenceProducer() local
|
/external/zstd/tests/ |
D | external_matchfinder.c | 33 U32 hashTable[HSIZE]; in simpleSequenceProducer() local
|
/external/lz4/lib/ |
D | lz4hc.h | 237 LZ4_u32 hashTable[LZ4HC_HASHTABLESIZE]; member
|
D | lz4.c | 814 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = NULL; return; } in LZ4_clearHash() local 815 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = 0; return; } in LZ4_clearHash() local 816 case byU16: { U16* hashTable = (U16*) tableBase; hashTable[h] = 0; return; } in LZ4_clearHash() local 827 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = idx; return; } in LZ4_putIndexOnHash() local 828 …case byU16: { U16* hashTable = (U16*) tableBase; assert(idx < 65536); hashTable[h] = (U16)idx; ret… in LZ4_putIndexOnHash() local 836 const BYTE** const hashTable = (const BYTE**)tableBase; in LZ4_putPositionOnHash() local 857 const U32* const hashTable = (const U32*) tableBase; in LZ4_getIndexOnHash() local 862 const U16* const hashTable = (const U16*) tableBase; in LZ4_getIndexOnHash() local 872 { const BYTE* const* hashTable = (const BYTE* const*) tableBase; return hashTable[h]; } in LZ4_getPositionOnHash() local
|
D | lz4.h | 720 LZ4_u32 hashTable[LZ4_HASH_SIZE_U32]; member
|
D | lz4hc.c | 784 U32* const hashTable = hc4->hashTable; in LZ4HC_Insert() local 896 U32* const hashTable = hc4->hashTable; in LZ4HC_InsertAndGetWiderMatch() local
|
/external/coreboot/util/cbfstool/lz4/lib/ |
D | lz4.c | 395 U32 hashTable[HASH_SIZE_U32]; member 455 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = p; return; } in LZ4_putPositionOnHash() local 456 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = (U32)(p-srcBase); return; } in LZ4_putPositionOnHash() local 457 case byU16: { U16* hashTable = (U16*) tableBase; hashTable[h] = (U16)(p-srcBase); return; } in LZ4_putPositionOnHash() local 469 …if (tableType == byPtr) { const BYTE** hashTable = (const BYTE**) tableBase; return hashTable[h]; } in LZ4_getPositionOnHash() local 470 if (tableType == byU32) { U32* hashTable = (U32*) tableBase; return hashTable[h] + srcBase; } in LZ4_getPositionOnHash() local 471 …{ U16* hashTable = (U16*) tableBase; return hashTable[h] + srcBase; } /* default, to ensure a re… in LZ4_getPositionOnHash() local
|
D | lz4hc.c | 97 U32 hashTable[HASHTABLESIZE]; member
|
/external/icu/icu4c/source/tools/gensprep/ |
D | store.c | 213 static UHashtable* hashTable = NULL; variable
|
/external/cronet/stable/third_party/icu/source/tools/gensprep/ |
D | store.c | 213 static UHashtable* hashTable = NULL; variable
|
/external/cronet/tot/third_party/icu/source/tools/gensprep/ |
D | store.c | 213 static UHashtable* hashTable = NULL; variable
|
/external/zstd/lib/legacy/ |
D | zstd_v01.c | 1396 __m256i hashTable[HASH_TABLESIZE>>3]; member 1398 U32 hashTable[HASH_TABLESIZE]; member
|
/external/bcc/libbpf-tools/riscv/ |
D | vmlinux_602.h | 74336 unsigned int hashTable[32768]; member 74542 uint32_t hashTable[4096]; member 74723 ldmEntry_t *hashTable; member 74799 U32 *hashTable; member
|
D | vmlinux.h | 74336 unsigned int hashTable[32768]; member 74542 uint32_t hashTable[4096]; member 74723 ldmEntry_t *hashTable; member 74799 U32 *hashTable; member
|
/external/bcc/libbpf-tools/loongarch/ |
D | vmlinux_602.h | 32822 U32 *hashTable; member 78294 ldmEntry_t *hashTable; member
|