Home
last modified time | relevance | path

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

/third_party/lz4/lib/
Dlz4.c696 typedef enum { clearedTable = 0, byPtr, byU32, byU16 } tableType_t; enumerator
788 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = NULL; return; } in LZ4_clearHash()
800 case byPtr: { /* illegal! */ assert(0); return; } in LZ4_putIndexOnHash()
813 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = p; return; } in LZ4_putPositionOnHash()
849 …if (tableType == byPtr) { const BYTE* const* hashTable = (const BYTE* const*) tableBase; return ha… in LZ4_getPositionOnHash()
876 || tableType == byPtr in LZ4_prepareTable()
964 … if (tableType==byPtr) assert(dictDirective==noDict); /* only supported use case with byPtr */ in LZ4_compress_generic_validated()
994 if (tableType == byPtr) { in LZ4_compress_generic_validated()
1210 if (tableType == byPtr) { in LZ4_compress_generic_validated()
1356 …bleType_t tableType = ((sizeof(void*)==4) && ((uptrval)source > LZ4_DISTANCE_MAX)) ? byPtr : byU32; in LZ4_compress_fast_extState()
[all …]