Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
DLzmaEnc.c120 void LzmaEnc_FastPosInit(Byte *g_FastPos) in LzmaEnc_FastPosInit() argument
123 g_FastPos[0] = 0; in LzmaEnc_FastPosInit()
124 g_FastPos[1] = 1; in LzmaEnc_FastPosInit()
131 g_FastPos[c] = (Byte)slotFast; in LzmaEnc_FastPosInit()
137 res = p->g_FastPos[pos >> i] + (i * 2); }
144 #define GetPosSlot1(pos) p->g_FastPos[pos]
146 #define GetPosSlot(pos, res) { if (pos < kNumFullDistances) res = p->g_FastPos[pos]; else BSR2_RET(…
315 Byte g_FastPos[1 << kNumLogBits]; member
1726 LzmaEnc_FastPosInit(p->g_FastPos); in LzmaEnc_Construct()