Home
last modified time | relevance | path

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

/third_party/lzma/CS/7zip/Compress/RangeCoder/
DRangeCoder.cs7 public const uint kTopValue = (1 << 24); field in SevenZip.Compression.RangeCoder.Encoder
58 while (Range < kTopValue) in Encode()
89 if (Range < kTopValue) in EncodeDirectBits()
107 while (Range < kTopValue) in EncodeBit()
124 public const uint kTopValue = (1 << 24); field in SevenZip.Compression.RangeCoder.Decoder
154 while (Range < kTopValue) in Normalize()
163 if (Range < kTopValue) in Normalize2()
202 if (range < kTopValue) in DecodeDirectBits()
DRangeCoderBit.cs41 if (encoder.Range < Encoder.kTopValue) in Encode()
96 if (rangeDecoder.Range < Decoder.kTopValue) in Decode()
108 if (rangeDecoder.Range < Decoder.kTopValue) in Decode()
/third_party/lzma/C/
DBcj2.c9 #define kTopValue ((UInt32)1 << 24) macro
98 if (p->range < kTopValue) in Bcj2Dec_Decode()
276 if (p->range < kTopValue && p->bufs[BCJ2_STREAM_RC] != p->lims[BCJ2_STREAM_RC]) in Bcj2Dec_Decode()
287 #undef kTopValue
DPpmd7Dec.c11 #define kTopValue ((UInt32)1 << 24) macro
28 #define RC_NORM_BASE(p) if ((p)->Range < kTopValue) \
299 #undef kTopValue
DBcj2Enc.c17 #define kTopValue ((UInt32)1 << 24) macro
183 if (p->range < kTopValue) in Bcj2Enc_Encode_2()
503 #undef kTopValue
DPpmd7Enc.c11 #define kTopValue ((UInt32)1 << 24) macro
41 #define RC_NORM_BASE(p) if (R->Range < kTopValue) { R->Range <<= 8; Ppmd7z_RangeEnc_ShiftLow(p);
325 #undef kTopValue
DLzmaDec.c12 #define kTopValue ((UInt32)1 << 24) macro
22 #define NORMALIZE if (range < kTopValue) { range <<= 8; code = (code << 8) | (*buf++); }
70 #define NORMALIZE_CHECK if (range < kTopValue) { if (buf >= bufLimit) return DUMMY_INPUT_EOF; range…
DLzmaEnc.c44 #define kTopValue ((UInt32)1 << 24) macro
724 #define RC_NORM(p) if (range < kTopValue) { range <<= 8; RangeEnc_ShiftLow(p); }
/third_party/lzma/CPP/7zip/Bundles/LzmaSpec/
DLzmaSpec.cpp167 #define kTopValue ((UInt32)1 << 24) macro
171 if (Range < kTopValue) in Normalize()
/third_party/lzma/Asm/x86/
DLzmaDecOpt.asm149 kTopValue equ (1 SHL 24) define
162 cmp range, kTopValue
/third_party/lzma/DOC/
Dlzma-specification.txt391 #define kTopValue ((UInt32)1 << 24)
395 if (Range < kTopValue)