Home
last modified time | relevance | path

Searched defs:hashTable (Results 1 – 7 of 7) sorted by relevance

/third_party/lz4/lib/
Dlz4.c788 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 …]
Dlz4hc.h207 LZ4_u32 hashTable[LZ4HC_HASHTABLESIZE]; member
Dlz4.h679 LZ4_u32 hashTable[LZ4_HASH_SIZE_U32]; member
Dlz4hc.c123 U32* const hashTable = hc4->hashTable; in LZ4HC_Insert() local
/third_party/skia/third_party/externals/icu/source/tools/gensprep/
Dstore.c212 static UHashtable* hashTable = NULL; variable
/third_party/icu/icu4c/source/tools/gensprep/
Dstore.c213 static UHashtable* hashTable = NULL; variable
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/
DLzcompCompress.java53 private HashNode[] hashTable; field in LzcompCompress