Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4.c459 typedef enum { clearedTable = 0, byPtr, byU32, byU16 } tableType_t; enumerator
546 case byPtr: { /* illegal! */ assert(0); return; } in LZ4_putIndexOnHash()
559 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = p; return; } in LZ4_putPositionOnHash()
595 …if (tableType == byPtr) { const BYTE* const* hashTable = (const BYTE* const*) tableBase; return ha… in LZ4_getPositionOnHash()
620 || tableType == byPtr in LZ4_prepareTable()
700 … if (tableType==byPtr) assert(dictDirective==noDict); /* only supported use case with byPtr */ in LZ4_compress_generic()
729 if (tableType == byPtr) { in LZ4_compress_generic()
921 if (tableType == byPtr) { in LZ4_compress_generic()
1019 …t tableType_t tableType = ((sizeof(void*)==4) && ((uptrval)source > MAX_DISTANCE)) ? byPtr : byU32; in LZ4_compress_fast_extState()
1026 …t tableType_t tableType = ((sizeof(void*)==4) && ((uptrval)source > MAX_DISTANCE)) ? byPtr : byU32; in LZ4_compress_fast_extState()
[all …]