Home
last modified time | relevance | path

Searched refs:hashTable (Results 1 – 2 of 2) sorted by relevance

/lvgl-latest/src/libs/lz4/
Dlz4.c799 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = NULL; return; } in LZ4_clearHash() local
800 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = 0; return; } in LZ4_clearHash() local
801 case byU16: { U16* hashTable = (U16*) tableBase; hashTable[h] = 0; return; } in LZ4_clearHash() local
812 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = idx; return; } in LZ4_putIndexOnHash() local
813 …case byU16: { U16* hashTable = (U16*) tableBase; assert(idx < 65536); hashTable[h] = (U16)idx; ret… in LZ4_putIndexOnHash() local
821 const BYTE** const hashTable = (const BYTE**)tableBase; in LZ4_putPositionOnHash() local
823 hashTable[h] = p; in LZ4_putPositionOnHash()
842 const U32* const hashTable = (const U32*) tableBase; in LZ4_getIndexOnHash() local
844 return hashTable[h]; in LZ4_getIndexOnHash()
847 const U16* const hashTable = (const U16*) tableBase; in LZ4_getIndexOnHash() local
[all …]
Dlz4.h711 LZ4_u32 hashTable[LZ4_HASH_SIZE_U32]; member