Home
last modified time | relevance | path

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

/third_party/lzma/Java/SevenZip/Compression/LZMA/
H A DEncoder.java19 static byte[] g_FastPos = new byte[1 << 11]; field in Encoder
25 g_FastPos[0] = 0;
26 g_FastPos[1] = 1;
31 g_FastPos[c] = (byte)slotFast;
38 return g_FastPos[pos]; in GetPosSlot()
40 return (g_FastPos[pos >> 10] + 20); in GetPosSlot()
41 return (g_FastPos[pos >> 20] + 40); in GetPosSlot()
47 return (g_FastPos[pos >> 6] + 12); in GetPosSlot2()
49 return (g_FastPos[pos >> 16] + 32); in GetPosSlot2()
50 return (g_FastPos[po in GetPosSlot2()
[all...]
/third_party/lzma/CS/7zip/Compress/LZMA/
H A DLzmaEncoder.cs19 static Byte[] g_FastPos = new Byte[1 << 11]; field in SevenZip.Compression.LZMA.Encoder
25 g_FastPos[0] = 0; in Encoder()
26 g_FastPos[1] = 1; in Encoder()
31 g_FastPos[c] = slotFast; in Encoder()
38 return g_FastPos[pos]; in GetPosSlot()
40 return (UInt32)(g_FastPos[pos >> 10] + 20); in GetPosSlot()
41 return (UInt32)(g_FastPos[pos >> 20] + 40); in GetPosSlot()
47 return (UInt32)(g_FastPos[pos >> 6] + 12); in GetPosSlot2()
49 return (UInt32)(g_FastPos[pos >> 16] + 32); in GetPosSlot2()
50 return (UInt32)(g_FastPos[po in GetPosSlot2()
[all...]
/third_party/lzma/C/
H A DLzmaEnc.c211 static void LzmaEnc_FastPosInit(Byte *g_FastPos) in LzmaEnc_FastPosInit() argument
214 g_FastPos[0] = 0; in LzmaEnc_FastPosInit()
215 g_FastPos[1] = 1; in LzmaEnc_FastPosInit()
216 g_FastPos += 2; in LzmaEnc_FastPosInit()
223 g_FastPos[j] = (Byte)slot; in LzmaEnc_FastPosInit()
224 g_FastPos += k; in LzmaEnc_FastPosInit()
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[po
472 Byte g_FastPos[1 << kNumLogBits]; global() member
[all...]

Completed in 4 milliseconds