| /external/guava/guava/src/com/google/common/collect/ |
| D | RegularImmutableMultiset.java | 54 ImmutableEntry<E>[] hashTable = new @Nullable ImmutableEntry[tableSize]; in create() local 88 private static boolean hashFloodingDetected(@Nullable ImmutableEntry<?>[] hashTable) { in hashFloodingDetected() 121 private final transient @Nullable ImmutableEntry<?>[] hashTable; field in RegularImmutableMultiset 129 @Nullable ImmutableEntry<?>[] hashTable, in RegularImmutableMultiset() 161 @Nullable ImmutableEntry<?>[] hashTable = this.hashTable; in count() local
|
| D | LinkedHashMultimap.java | 364 @VisibleForTesting @Nullable ValueEntry<K, V>[] hashTable; field in LinkedHashMultimap.ValueSet 382 ValueEntry<K, V>[] hashTable = new @Nullable ValueEntry[tableSize]; in ValueSet() local 507 ValueEntry<K, V>[] hashTable = new ValueEntry[this.hashTable.length * 2]; in rehashIfNecessary() local
|
| /external/guava/android/guava/src/com/google/common/collect/ |
| D | RegularImmutableMap.java | 70 @CheckForNull private final transient Object hashTable; field in RegularImmutableMap 120 Object hashTable; in create() local 210 short[] hashTable = new short[tableSize]; in createHashTable() local 247 int[] hashTable = new int[tableSize]; in createHashTable() local 295 private RegularImmutableMap( in RegularImmutableMap() 353 short[] hashTable = (short[]) hashTableObject; in get() local 365 int[] hashTable = (int[]) hashTableObject; in get() local
|
| D | LinkedHashMultimap.java | 360 @VisibleForTesting @Nullable ValueEntry<K, V>[] hashTable; field in LinkedHashMultimap.ValueSet 378 ValueEntry<K, V>[] hashTable = new @Nullable ValueEntry[tableSize]; in ValueSet() local 493 ValueEntry<K, V>[] hashTable = new ValueEntry[this.hashTable.length * 2]; in rehashIfNecessary() local
|
| D | HashBiMap.java | 230 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 | 20 U32* const hashTable = ms->hashTable; in ZSTD_fillHashTable() local 99 U32* const hashTable = ms->hashTable; in ZSTD_compressBlock_fast_noDict_generic() local 377 U32* const hashTable = ms->hashTable; in ZSTD_compressBlock_fast_dictMatchState_generic() local 553 U32* const hashTable = ms->hashTable; in ZSTD_compressBlock_fast_extDict_generic() local
|
| D | zstd_lazy.c | 25 U32* const hashTable = ms->hashTable; in ZSTD_updateDUBT() local 238 U32* const hashTable = ms->hashTable; in ZSTD_DUBT_findBestMatch() local 402 U32* const hashTable = ms->hashTable; in ZSTD_dedicatedDictSearch_lazy_loadDictionary() local 622 U32* const hashTable = ms->hashTable; in ZSTD_insertAndFindFirstIndex_internal() local 852 FORCE_INLINE_TEMPLATE void ZSTD_row_prefetch(U32 const* hashTable, U16 const* tagTable, U32 const r… in ZSTD_row_prefetch() 875 U32 const* const hashTable = ms->hashTable; in ZSTD_row_fillHashCache() local 897 FORCE_INLINE_TEMPLATE U32 ZSTD_row_nextCachedHash(U32* cache, U32 const* hashTable, in ZSTD_row_nextCachedHash() 919 U32* const hashTable = ms->hashTable; in ZSTD_row_update_internalImpl() local 1136 U32* const hashTable = ms->hashTable; in ZSTD_RowFindBestMatch() local
|
| D | zstd_opt.c | 418 U32* const hashTable = ms->hashTable; in ZSTD_insertBt1() local 572 U32* const hashTable = ms->hashTable; in ZSTD_insertBtAndGetAllMatches() local
|
| D | zstd_compress_internal.h | 224 U32* hashTable; member 261 ldmEntry_t* hashTable; member
|
| /external/lz4/lib/ |
| D | lz4.c | 788 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = NULL; return; } in LZ4_clearHash() local 789 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = 0; return; } in LZ4_clearHash() local 790 case byU16: { U16* hashTable = (U16*) tableBase; hashTable[h] = 0; return; } in LZ4_clearHash() local 801 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = idx; return; } in LZ4_putIndexOnHash() local 802 …case byU16: { U16* hashTable = (U16*) tableBase; assert(idx < 65536); hashTable[h] = (U16)idx; ret… in LZ4_putIndexOnHash() local 813 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = p; return; } in LZ4_putPositionOnHash() local 814 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = (U32)(p-srcBase); return; } in LZ4_putPositionOnHash() local 815 case byU16: { U16* hashTable = (U16*) tableBase; hashTable[h] = (U16)(p-srcBase); return; } in LZ4_putPositionOnHash() local 835 const U32* const hashTable = (const U32*) tableBase; in LZ4_getIndexOnHash() local 840 const U16* const hashTable = (const U16*) tableBase; in LZ4_getIndexOnHash() local [all …]
|
| D | lz4hc.h | 207 LZ4_u32 hashTable[LZ4HC_HASHTABLESIZE]; member
|
| D | lz4.h | 679 LZ4_u32 hashTable[LZ4_HASH_SIZE_U32]; member
|
| D | lz4hc.c | 123 U32* const hashTable = hc4->hashTable; in LZ4HC_Insert() local
|
| /external/cronet/third_party/icu/source/tools/gensprep/ |
| D | store.c | 213 static UHashtable* hashTable = NULL; variable
|
| /external/icu/icu4c/source/tools/gensprep/ |
| D | store.c | 213 static UHashtable* hashTable = NULL; variable
|
| /external/zstd/lib/legacy/ |
| D | zstd_v01.c | 1434 __m256i hashTable[HASH_TABLESIZE>>3]; member 1436 U32 hashTable[HASH_TABLESIZE]; member
|
| /external/bcc/libbpf-tools/powerpc/ |
| D | vmlinux_510.h | 90768 uint32_t hashTable[4096]; member 90981 U32 *hashTable; member
|
| D | vmlinux.h | 90768 uint32_t hashTable[4096]; member 90981 U32 *hashTable; member
|
| /external/bcc/libbpf-tools/arm64/ |
| D | vmlinux.h | 57482 uint32_t hashTable[4096]; member 57695 U32 *hashTable; member
|
| D | vmlinux_510.h | 57482 uint32_t hashTable[4096]; member 57695 U32 *hashTable; member
|