Home
last modified time | relevance | path

Searched refs:rep0 (Results 1 – 6 of 6) sorted by relevance

/external/lzma/Java/SevenZip/Compression/LZMA/
DDecoder.java209 int rep0 = 0, rep1 = 0, rep2 = 0, rep3 = 0; in Code() local
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 += m_PosAlignDecoder.ReverseDecode(m_RangeDecoder); in Code()
[all …]
/external/lzma/CS/7zip/Compress/LZMA/
DLzmaDecoder.cs237 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 += (m_RangeDecoder.DecodeDirectBits( in Code()
[all …]
/external/lzma/xz-embedded/
Dxz_dec_lzma2.c134 uint32_t rep0; member
596 match_byte = dict_get(&s->dict, s->lzma.rep0) << 1; in lzma_literal()
656 s->lzma.rep1 = s->lzma.rep0; in lzma_match()
664 s->lzma.rep0 = dist_slot; in lzma_match()
667 s->lzma.rep0 = 2 + (dist_slot & 1); in lzma_match()
670 s->lzma.rep0 <<= limit; in lzma_match()
671 probs = s->lzma.dist_special + s->lzma.rep0 in lzma_match()
674 &s->lzma.rep0, limit); in lzma_match()
676 rc_direct(&s->rc, &s->lzma.rep0, limit - ALIGN_BITS); in lzma_match()
677 s->lzma.rep0 <<= ALIGN_BITS; in lzma_match()
[all …]
/external/lzma/C/
DLzmaDec.c136 UInt32 rep0 = p->reps[0], rep1 = p->reps[1], rep2 = p->reps[2], rep3 = p->reps[3]; in LzmaDec_DecodeReal() local
178 unsigned matchByte = p->dic[(dicPos - rep0) + ((dicPos < rep0) ? dicBufSize : 0)]; in LzmaDec_DecodeReal()
220 dic[dicPos] = dic[(dicPos - rep0) + ((dicPos < rep0) ? dicBufSize : 0)]; in LzmaDec_DecodeReal()
255 rep1 = rep0; in LzmaDec_DecodeReal()
256 rep0 = distance; in LzmaDec_DecodeReal()
364 rep1 = rep0; in LzmaDec_DecodeReal()
365 rep0 = distance + 1; in LzmaDec_DecodeReal()
383 SizeT pos = (dicPos - rep0) + ((dicPos < rep0) ? dicBufSize : 0); in LzmaDec_DecodeReal()
419 p->reps[0] = rep0; in LzmaDec_DecodeReal()
436 UInt32 rep0 = p->reps[0]; in LzmaDec_WriteRem() local
[all …]
/external/toybox/toys/pending/
Dxzcat.c1296 uint32_t rep0; member
1744 match_byte = dict_get(&s->dict, s->lzma.rep0) << 1; in lzma_literal()
1804 s->lzma.rep1 = s->lzma.rep0; in lzma_match()
1812 s->lzma.rep0 = dist_slot; in lzma_match()
1815 s->lzma.rep0 = 2 + (dist_slot & 1); in lzma_match()
1818 s->lzma.rep0 <<= limit; in lzma_match()
1819 probs = s->lzma.dist_special + s->lzma.rep0 in lzma_match()
1822 &s->lzma.rep0, limit); in lzma_match()
1824 rc_direct(&s->rc, &s->lzma.rep0, limit - ALIGN_BITS); in lzma_match()
1825 s->lzma.rep0 <<= ALIGN_BITS; in lzma_match()
[all …]
/external/lzma/CPP/7zip/UI/Common/
DBench.cpp116 UInt32 rep0 = 1; in Generate() local
136 rep0 = /* (1 << ppp) +*/ GetVal(res, ppp); in Generate()
139 while (rep0 >= pos); in Generate()
140 rep0++; in Generate()
144 Buffer[pos] = Buffer[pos - rep0]; in Generate()