Home
last modified time | relevance | path

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

/external/lzma/Java/SevenZip/Compression/LZMA/
DEncoder.java27 for (int slotFast = 2; slotFast < kFastSlots; slotFast++)
29 int k = (1 << ((slotFast >> 1) - 1));
31 g_FastPos[c] = (byte)slotFast;
/external/lzma/CS/7zip/Compress/LZMA/
DLzmaEncoder.cs27 for (Byte slotFast = 2; slotFast < kFastSlots; slotFast++) in Encoder()
29 UInt32 k = ((UInt32)1 << ((slotFast >> 1) - 1)); in Encoder()
31 g_FastPos[c] = slotFast; in Encoder()
/external/lzma/C/
DLzmaEnc.c121 int c = 2, slotFast; in LzmaEnc_FastPosInit() local
125 for (slotFast = 2; slotFast < kNumLogBits * 2; slotFast++) in LzmaEnc_FastPosInit()
127 UInt32 k = (1 << ((slotFast >> 1) - 1)); in LzmaEnc_FastPosInit()
130 g_FastPos[c] = (Byte)slotFast; in LzmaEnc_FastPosInit()