Home
last modified time | relevance | path

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

/external/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()
/external/lzma/C/
DPpmd7Enc.c9 #define kTopValue (1 << 24) macro
40 while (p->Range < kTopValue) in RangeEnc_Encode()
50 while (p->Range < kTopValue) in RangeEnc_EncodeBit_0()
62 while (p->Range < kTopValue) in RangeEnc_EncodeBit_1()
DBcj2.c11 #define kTopValue ((UInt32)1 << 24) macro
111 if (p->range < kTopValue) in Bcj2Dec_Decode()
250 if (p->range < kTopValue && p->bufs[BCJ2_STREAM_RC] != p->lims[BCJ2_STREAM_RC]) in Bcj2Dec_Decode()
DPpmd7Dec.c9 #define kTopValue (1 << 24) macro
33 if (p->Range < kTopValue) in Range_Normalize()
37 if (p->Range < kTopValue) in Range_Normalize()
DBcj2Enc.c22 #define kTopValue ((UInt32)1 << 24) macro
95 if (p->range < kTopValue) in Bcj2Enc_Encode_2()
DLzmaDec.c12 #define kTopValue ((UInt32)1 << kNumTopBits) macro
20 #define NORMALIZE if (range < kTopValue) { range <<= 8; code = (code << 8) | (*buf++); }
67 #define NORMALIZE_CHECK if (range < kTopValue) { if (buf >= bufLimit) return DUMMY_ERROR; range <<=…
DLzmaEnc.c30 #define kTopValue ((UInt32)1 << kNumTopBits) macro
627 #define RC_NORM(p) if (range < kTopValue) { range <<= 8; RangeEnc_ShiftLow(p); }
/external/lzma/CPP/7zip/Bundles/LzmaSpec/
DLzmaSpec.cpp167 #define kTopValue ((UInt32)1 << 24) macro
171 if (Range < kTopValue) in Normalize()
/external/lzma/Asm/x86/
DLzmaDecOpt.asm148 kTopValue equ (1 SHL 24) define
161 cmp range, kTopValue
848 ; cmp range, kTopValue
874 cmp range, kTopValue
/external/u-boot/lib/lzma/
DLzmaDec.c12 #define kTopValue ((UInt32)1 << kNumTopBits) macro
20 #define NORMALIZE if (range < kTopValue) { range <<= 8; code = (code << 8) | (*buf++); }
50 #define NORMALIZE_CHECK if (range < kTopValue) { if (buf >= bufLimit) return DUMMY_ERROR; range <<=…
/external/lzma/DOC/
Dlzma-specification.txt391 #define kTopValue ((UInt32)1 << 24)
395 if (Range < kTopValue)