/third_party/lzma/Java/SevenZip/Compression/LZMA/ |
H A D | Decoder.java | 209 int rep0 = 0, rep1 = 0, rep2 = 0, rep3 = 0;
in Code() 220 prevByte = decoder2.DecodeWithMatchByte(m_RangeDecoder, m_OutWindow.GetByte(rep0));
in Code() 257 rep1 = rep0;
in Code() 258 rep0 = distance;
in Code() 270 rep1 = rep0;
in Code() 277 rep0 = ((2 | (posSlot & 1)) << numDirectBits);
in Code() 279 rep0 += BitTreeDecoder.ReverseDecode(m_PosDecoders,
in Code() 280 rep0 - posSlot - 1, m_RangeDecoder, numDirectBits);
in Code() 283 rep0 += (m_RangeDecoder.DecodeDirectBits(
in Code() 285 rep0 in Code() [all...] |
/third_party/lzma/CS/7zip/Compress/LZMA/ |
H A D | LzmaDecoder.cs | 237 uint rep0 = 0, rep1 = 0, rep2 = 0, rep3 = 0;
in Code() 262 (uint)nowPos64, prevByte, m_OutWindow.GetByte(rep0));
in Code() 279 m_OutWindow.PutByte(m_OutWindow.GetByte(rep0));
in Code() 302 rep1 = rep0;
in Code() 303 rep0 = distance;
in Code() 312 rep1 = rep0;
in Code() 319 rep0 = ((2 | (posSlot & 1)) << numDirectBits);
in Code() 321 rep0 += BitTreeDecoder.ReverseDecode(m_PosDecoders,
in Code() 322 rep0 - posSlot - 1, m_RangeDecoder, numDirectBits);
in Code() 325 rep0 in Code() [all...] |
/third_party/lzma/CPP/7zip/Bundles/LzmaSpec/ |
H A D | LzmaSpec.cpp | 372 void DecodeLiteral(unsigned state, UInt32 rep0)
in DecodeLiteral() argument 384 unsigned matchByte = OutWindow.GetByte(rep0 + 1);
in DecodeLiteral() 474 UInt32 rep0 = 0, rep1 = 0, rep2 = 0, rep3 = 0;
in Decode() local 489 DecodeLiteral(state, rep0);
in Decode() 508 OutWindow.PutByte(OutWindow.GetByte(rep0 + 1));
in Decode() 529 rep1 = rep0;
in Decode() 530 rep0 = dist;
in Decode() 539 rep1 = rep0;
in Decode() 542 rep0 = DecodeDistance(len);
in Decode() 543 if (rep0 in Decode() [all...] |
/third_party/lzma/Asm/x86/ |
H A D | LzmaDecOpt.asm | 527 rep0 dd ?
define 556 rep0 dd ?
define 632 COPY_VAR(rep0)
894 mov t1, LOC rep0
907 ; rep1 = rep0;
908 ; rep0 = distance + 1;
911 mov LOC rep0, sym
946 mov x1, LOC rep0
958 ; pos = dicPos - rep0 + (dicPos < rep0 [all...] |
/third_party/lzma/C/ |
H A D | LzmaDec.c | 175 < kMatchSpecLenStart : the number of bytes to be copied with (p->rep0) offset
238 UInt32 rep0 = p->reps[0], rep1 = p->reps[1], rep2 = p->reps[2], rep3 = p->reps[3];
in LZMA_DECODE_REAL() local 291 unsigned matchByte = dic[dicPos - rep0 + (dicPos < rep0 ? dicBufSize : 0)];
in LZMA_DECODE_REAL() 350 dic[dicPos] = dic[dicPos - rep0 + (dicPos < rep0 ? dicBufSize : 0)];
in LZMA_DECODE_REAL() 385 rep1 = rep0;
in LZMA_DECODE_REAL() 386 rep0 = distance;
in LZMA_DECODE_REAL() 534 rep1 = rep0;
in LZMA_DECODE_REAL() 535 rep0 in LZMA_DECODE_REAL() 625 SizeT rep0; /* we use SizeT to avoid the BUG of VC14 for AMD64 */ LzmaDec_WriteRem() local [all...] |
/third_party/toybox/toys/pending/ |
H A D | xzcat.c | 1290 uint32_t rep0; member 1317 /* If 1, it's a repeated match. The distance is one of rep0 .. rep3. */ 1321 * If 0, distance of a repeated match is rep0. 1738 match_byte = dict_get(&s->dict, s->lzma.rep0) << 1; in lzma_literal() 1787 /* Decode a match. The distance will be stored in s->lzma.rep0. */ 1798 s->lzma.rep1 = s->lzma.rep0; in lzma_match() 1806 s->lzma.rep0 = dist_slot; in lzma_match() 1809 s->lzma.rep0 = 2 + (dist_slot & 1); in lzma_match() 1812 s->lzma.rep0 <<= limit; in lzma_match() 1813 probs = s->lzma.dist_special + s->lzma.rep0 in lzma_match() [all...] |
/third_party/lzma/Asm/arm64/ |
H A D | LzmaDecOpt.S | 176 #define rep0 w20 define 756 LOAD_LZMA_PAIR rep0, rep1, offset_rep0 1025 mov rep1, rep0 1026 add rep0, sym, 1 1055 // pos = dicPos - rep0 + (dicPos < rep0 ? dicBufSize : 0); 1082 cmp rep0, 1 1155 // matchByte = dic[dicPos - rep0 + (dicPos < rep0 ? dicBufSize : 0)]; 1222 // dic[dicPos] = dic[dicPos - rep0 [all...] |
/third_party/lzma/CPP/7zip/UI/Common/ |
H A D | Bench.cpp | 188 size_t rep0 = 1;
in GenerateLz() local 232 // rep0 = GetVal(r, ppp);
in GenerateLz() 233 rep0 = r & (((size_t)1 << ppp) - 1);
in GenerateLz() 234 if (rep0 < pos)
in GenerateLz() 238 rep0++;
in GenerateLz() 248 const Byte *src = dest - rep0;
in GenerateLz()
|