Home
last modified time | relevance | path

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

/illumos-gate/usr/src/common/lzma/
H A DLzmaEnc.c106 void LzmaEnc_FastPosInit(Byte *g_FastPos) in LzmaEnc_FastPosInit() argument
109 g_FastPos[0] = 0; in LzmaEnc_FastPosInit()
110 g_FastPos[1] = 1; in LzmaEnc_FastPosInit()
117 g_FastPos[c] = (Byte)slotFast; in LzmaEnc_FastPosInit()
123 res = p->g_FastPos[pos >> i] + (i * 2); }
130 #define GetPosSlot1(pos) p->g_FastPos[pos]
132 #define GetPosSlot(pos, res) { if (pos < kNumFullDistances) res = p->g_FastPos[pos]; else BSR2_RET(…
301 Byte g_FastPos[1 << kNumLogBits]; member
1712 LzmaEnc_FastPosInit(p->g_FastPos); in LzmaEnc_Construct()