Lines Matching refs:g_FastPos
123 static void LzmaEnc_FastPosInit(Byte *g_FastPos) in LzmaEnc_FastPosInit() argument
126 g_FastPos[0] = 0; in LzmaEnc_FastPosInit()
127 g_FastPos[1] = 1; in LzmaEnc_FastPosInit()
128 g_FastPos += 2; in LzmaEnc_FastPosInit()
135 g_FastPos[j] = (Byte)slot; in LzmaEnc_FastPosInit()
136 g_FastPos += k; in LzmaEnc_FastPosInit()
154 res = p->g_FastPos[pos >> zz] + (zz * 2); }
162 #define GetPosSlot1(pos) p->g_FastPos[pos]
164 #define GetPosSlot(pos, res) { if (pos < kNumFullDistances) res = p->g_FastPos[pos & (kNumFullDista…
378 Byte g_FastPos[1 << kNumLogBits]; member
2218 LzmaEnc_FastPosInit(p->g_FastPos); in LzmaEnc_Construct()