Searched refs:rep0 (Results 1 - 7 of 7) sorted by relevance

/external/lzma/Java/SevenZip/Compression/LZMA/
H A DDecoder.java209 int rep0 = 0, rep1 = 0, rep2 = 0, rep3 = 0;
220 prevByte = decoder2.DecodeWithMatchByte(m_RangeDecoder, m_OutWindow.GetByte(rep0));
257 rep1 = rep0;
258 rep0 = distance;
270 rep1 = rep0;
277 rep0 = ((2 | (posSlot & 1)) << numDirectBits);
279 rep0 += BitTreeDecoder.ReverseDecode(m_PosDecoders,
280 rep0 - posSlot - 1, m_RangeDecoder, numDirectBits);
283 rep0 += (m_RangeDecoder.DecodeDirectBits(
285 rep0
[all...]
/external/lzma/CS/7zip/Compress/LZMA/
H A DLzmaDecoder.cs237 uint rep0 = 0, rep1 = 0, rep2 = 0, rep3 = 0;
262 (uint)nowPos64, prevByte, m_OutWindow.GetByte(rep0));
279 m_OutWindow.PutByte(m_OutWindow.GetByte(rep0));
302 rep1 = rep0;
303 rep0 = distance;
312 rep1 = rep0;
319 rep0 = ((2 | (posSlot & 1)) << numDirectBits);
321 rep0 += BitTreeDecoder.ReverseDecode(m_PosDecoders,
322 rep0 - posSlot - 1, m_RangeDecoder, numDirectBits);
325 rep0
[all...]
/external/lzma/CPP/7zip/Bundles/LzmaSpec/
H A DLzmaSpec.cpp372 void DecodeLiteral(unsigned state, UInt32 rep0) argument
384 unsigned matchByte = OutWindow.GetByte(rep0 + 1);
474 UInt32 rep0 = 0, rep1 = 0, rep2 = 0, rep3 = 0; local
489 DecodeLiteral(state, rep0);
508 OutWindow.PutByte(OutWindow.GetByte(rep0 + 1));
529 rep1 = rep0;
530 rep0 = dist;
539 rep1 = rep0;
542 rep0 = DecodeDistance(len);
543 if (rep0
[all...]
/external/xz-embedded/linux/lib/xz/
H A Dxz_dec_lzma2.c134 uint32_t rep0; member in struct:lzma_dec
161 /* If 1, it's a repeated match. The distance is one of rep0 .. rep3. */
165 * If 0, distance of a repeated match is rep0.
596 match_byte = dict_get(&s->dict, s->lzma.rep0) << 1;
645 /* Decode a match. The distance will be stored in s->lzma.rep0. */
656 s->lzma.rep1 = s->lzma.rep0;
664 s->lzma.rep0 = dist_slot;
667 s->lzma.rep0 = 2 + (dist_slot & 1);
670 s->lzma.rep0 <<= limit;
671 probs = s->lzma.dist_special + s->lzma.rep0
[all...]
/external/lzma/C/
H A DLzmaDec.c145 UInt32 rep0 = p->reps[0], rep1 = p->reps[1], rep2 = p->reps[2], rep3 = p->reps[3]; local
199 unsigned matchByte = dic[dicPos - rep0 + (dicPos < rep0 ? dicBufSize : 0)];
253 dic[dicPos] = dic[dicPos - rep0 + (dicPos < rep0 ? dicBufSize : 0)];
288 rep1 = rep0;
289 rep0 = distance;
436 rep1 = rep0;
437 rep0 = distance + 1;
468 pos = dicPos - rep0
523 SizeT rep0 = p->reps[0]; /* we use SizeT to avoid the BUG of VC14 for AMD64 */ local
[all...]
/external/toybox/toys/pending/
H A Dxzcat.c1290 uint32_t rep0; member in struct:lzma_dec
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;
1787 /* Decode a match. The distance will be stored in s->lzma.rep0. */
1798 s->lzma.rep1 = s->lzma.rep0;
1806 s->lzma.rep0 = dist_slot;
1809 s->lzma.rep0 = 2 + (dist_slot & 1);
1812 s->lzma.rep0 <<= limit;
1813 probs = s->lzma.dist_special + s->lzma.rep0
[all...]
/external/lzma/CPP/7zip/UI/Common/
H A DBench.cpp203 UInt32 rep0 = 1; local
240 rep0 = GetVal(r, ppp);
241 if (rep0 < pos)
245 rep0++;
254 const Byte *src = dest - rep0;

Completed in 355 milliseconds