Home
last modified time | relevance | path

Searched refs:kTopValue (Results 1 – 15 of 15) 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/CPP/7zip/Compress/
DRangeCoder.h14 const UInt32 kTopValue = (1 << kNumTopBits); variable
51 while (Range < kTopValue) in Encode()
81 if (Range < kTopValue) in EncodeDirectBits()
99 while (Range < kTopValue) in EncodeBit()
119 while (Range < kTopValue) in Normalize()
170 if (range < kTopValue) in DecodeDirectBits()
DRangeCoderBit.h64 if (encoder->Range < kTopValue) in Encode()
90 if (decoder->Range < kTopValue) in Decode()
102 if (decoder->Range < kTopValue) in Decode()
/external/lzma/C/
DPpmd7Enc.c7 #define kTopValue (1 << 24) macro
38 while (p->Range < kTopValue) in RangeEnc_Encode()
48 while (p->Range < kTopValue) in RangeEnc_EncodeBit_0()
60 while (p->Range < kTopValue) in RangeEnc_EncodeBit_1()
DPpmd7Dec.c7 #define kTopValue (1 << 24) macro
29 if (p->Range < kTopValue) in Range_Normalize()
33 if (p->Range < kTopValue) in Range_Normalize()
DBcj2.c16 #define kTopValue ((UInt32)1 << kNumTopBits) macro
27 #define NORMALIZE if (range < kTopValue) { RC_TEST; range <<= 8; code = (code << 8) | RC_READ_BYTE;…
DLzmaDec.c9 #define kTopValue ((UInt32)1 << kNumTopBits) macro
17 #define NORMALIZE if (range < kTopValue) { range <<= 8; code = (code << 8) | (*buf++); }
47 #define NORMALIZE_CHECK if (range < kTopValue) { if (buf >= bufLimit) return DUMMY_ERROR; range <<=…
DLzmaEnc.c34 #define kTopValue ((UInt32)1 << kNumTopBits) macro
543 if (p->range < kTopValue) in RangeEnc_EncodeDirectBits()
568 if (p->range < kTopValue) in RangeEnc_EncodeBit()
/external/chromium_org/third_party/lzma_sdk/
DBcj2.c16 #define kTopValue ((UInt32)1 << kNumTopBits) macro
27 #define NORMALIZE if (range < kTopValue) { RC_TEST; range <<= 8; code = (code << 8) | RC_READ_BYTE;…
DLzmaDec.c9 #define kTopValue ((UInt32)1 << kNumTopBits) macro
17 #define NORMALIZE if (range < kTopValue) { range <<= 8; code = (code << 8) | (*buf++); }
47 #define NORMALIZE_CHECK if (range < kTopValue) { if (buf >= bufLimit) return DUMMY_ERROR; range <<=…
DLzmaEnc.c34 #define kTopValue ((UInt32)1 << kNumTopBits) macro
543 if (p->range < kTopValue) in RangeEnc_EncodeDirectBits()
568 if (p->range < kTopValue) in RangeEnc_EncodeBit()
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
DLzmaDec.c10 #define kTopValue ((UInt32)1 << kNumTopBits) macro
18 #define NORMALIZE if (range < kTopValue) { range <<= 8; code = (code << 8) | (*buf++); }
48 #define NORMALIZE_CHECK if (range < kTopValue) { if (buf >= bufLimit) return DUMMY_ERROR; range <<=…
DLzmaEnc.c35 #define kTopValue ((UInt32)1 << kNumTopBits) macro
544 if (p->range < kTopValue) in RangeEnc_EncodeDirectBits()
569 if (p->range < kTopValue) in RangeEnc_EncodeBit()
/external/chromium_org/third_party/brotli/src/
Dots-lzma.patch833 +#define kTopValue ((UInt32)1 << kNumTopBits)
841 +#define NORMALIZE if (range < kTopValue) { range <<= 8; code = (code << 8) | (*buf++); }
871 +#define NORMALIZE_CHECK if (range < kTopValue) { if (buf >= bufLimit) return DUMMY_ERROR; range <<…
2939 +#define kTopValue ((UInt32)1 << kNumTopBits)
3448 + if (p->range < kTopValue)
3473 + if (p->range < kTopValue)