Searched defs:kTopValue (Results 1 - 8 of 8) sorted by relevance

/external/lzma/C/
H A DPpmd7Dec.c9 #define kTopValue (1 << 24) macro
31 if (p->Range < kTopValue)
35 if (p->Range < kTopValue)
H A DPpmd7Enc.c9 #define kTopValue (1 << 24) macro
40 while (p->Range < kTopValue)
50 while (p->Range < kTopValue)
62 while (p->Range < kTopValue)
H A DBcj2.c18 #define kTopValue ((UInt32)1 << kNumTopBits) macro
29 #define NORMALIZE if (range < kTopValue) { RC_TEST; range <<= 8; code = (code << 8) | RC_READ_BYTE; }
H A DLzmaDec.c11 #define kTopValue ((UInt32)1 << kNumTopBits) macro
19 #define NORMALIZE if (range < kTopValue) { range <<= 8; code = (code << 8) | (*buf++); }
56 #define NORMALIZE_CHECK if (range < kTopValue) { if (buf >= bufLimit) return DUMMY_ERROR; range <<= 8; code = (code << 8) | (*buf++); }
H A DLzmaEnc.c36 #define kTopValue ((UInt32)1 << kNumTopBits) macro
553 if (p->range < kTopValue)
578 if (p->range < kTopValue)
/external/lzma/CS/7zip/Compress/RangeCoder/
H A DRangeCoder.cs7 public const uint kTopValue = (1 << 24); field in class:SevenZip.Compression.RangeCoder.Encoder
58 while (Range < kTopValue)
89 if (Range < kTopValue)
107 while (Range < kTopValue)
124 public const uint kTopValue = (1 << 24); field in class:SevenZip.Compression.RangeCoder.Decoder
154 while (Range < kTopValue)
163 if (Range < kTopValue)
202 if (range < kTopValue)
/external/lzma/CPP/7zip/Compress/
H A DRangeCoder.h14 const UInt32 kTopValue = (1 << kNumTopBits); member in namespace:NCompress::NRangeCoder
49 while (Range < kTopValue)
79 if (Range < kTopValue)
97 while (Range < kTopValue)
117 while (Range < kTopValue)
166 if (range < kTopValue)
/external/lzma/CPP/7zip/Bundles/LzmaSpec/
H A DLzmaSpec.cpp167 #define kTopValue ((UInt32)1 << 24) macro
171 if (Range < kTopValue)

Completed in 137 milliseconds