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) argument
109 g_FastPos[0] = 0;
110 g_FastPos[1] = 1;
117 g_FastPos[c] = (Byte)slotFast;
123 res = p->g_FastPos[pos >> i] + (i * 2); }
126 p->g_FastPos[pos >> 6] + 12 : \
127 p->g_FastPos[pos >> (6 + kNumLogBits - 1)] + (6 + (kNumLogBits - 1)) * 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(pos, res); }
301 Byte g_FastPos[ member in struct:_CLzmaEnc
[all...]

Completed in 73 milliseconds