Lines Matching refs:g_FastPos
211 static void LzmaEnc_FastPosInit(Byte *g_FastPos)
214 g_FastPos[0] = 0;
215 g_FastPos[1] = 1;
216 g_FastPos += 2;
223 g_FastPos[j] = (Byte)slot;
224 g_FastPos += k;
232 res = p->g_FastPos[pos >> zz] + (zz * 2); }
238 res = p->g_FastPos[pos >> zz] + (zz * 2); }
242 res = p->g_FastPos[pos >> zz] + (zz * 2); }
246 p->g_FastPos[pos >> 6] + 12 : \
247 p->g_FastPos[pos >> (6 + kNumLogBits - 1)] + (6 + (kNumLogBits - 1)) * 2; }
250 #define GetPosSlot1(pos) p->g_FastPos[pos]
252 #define GetPosSlot(pos, res) { if (pos < kNumFullDistances) res = p->g_FastPos[pos & (kNumFullDistances - 1)]; else BSR2_RET(pos, res); }
472 Byte g_FastPos[1 << kNumLogBits];
2338 LzmaEnc_FastPosInit(p->g_FastPos);