Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4hc.c77 #define DELTANEXTMAXD(p) chainTable[(p) & LZ4HC_MAXD_MASK] /* flexible, LZ4HC_MAXD depen…
92 MEM_INIT(hc4->chainTable, 0xFF, sizeof(hc4->chainTable)); in LZ4HC_clearTables()
115 U16* const chainTable = hc4->chainTable; in LZ4HC_Insert() local
125 DELTANEXTU16(chainTable, idx) = (U16)delta; in LZ4HC_Insert()
220 U16* const chainTable = hc4->chainTable; in LZ4HC_InsertAndGetWiderMatch() local
290 U32 const candidateDist = DELTANEXTU16(chainTable, matchIndex + pos); in LZ4HC_InsertAndGetWiderMatch()
301 { U32 const distNextMatch = DELTANEXTU16(chainTable, matchIndex); in LZ4HC_InsertAndGetWiderMatch()
337 … { U32 const distToNextPattern = DELTANEXTU16(chainTable, matchIndex); in LZ4HC_InsertAndGetWiderMatch()
346 matchIndex -= DELTANEXTU16(chainTable, matchIndex+matchChainPos); in LZ4HC_InsertAndGetWiderMatch()
373 { U32 const nextOffset = DELTANEXTU16(dictCtx->chainTable, dictMatchIndex); in LZ4HC_InsertAndGetWiderMatch()
Dlz4hc.h148 uint16_t chainTable[LZ4HC_MAXD]; member
166 unsigned short chainTable[LZ4HC_MAXD]; member