Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4.c459 typedef enum { clearedTable = 0, byPtr, byU32, byU16 } tableType_t; enumerator
547 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = idx; return; } in LZ4_putIndexOnHash()
560 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = (U32)(p-srcBase); return; } in LZ4_putPositionOnHash()
580 if (tableType == byU32) { in LZ4_getIndexOnHash()
596 …if (tableType == byU32) { const U32* const hashTable = (const U32*) tableBase; return hashTable[h]… in LZ4_getPositionOnHash()
619 || (tableType == byU32 && cctx->currentOffset > 1 GB) in LZ4_prepareTable()
636 if (cctx->currentOffset != 0 && tableType == byU32) { in LZ4_prepareTable()
770 assert(tableType == byU32); in LZ4_compress_generic()
771 matchIndex = LZ4_getIndexOnHash(h, dictCtx->hashTable, byU32); in LZ4_compress_generic()
938 matchIndex = LZ4_getIndexOnHash(h, dictCtx->hashTable, byU32); in LZ4_compress_generic()
[all …]