Searched defs:rep0 (Results 1 - 5 of 5) sorted by relevance

/external/lzma/CPP/7zip/UI/Common/
H A DBench.cpp151 UInt32 rep0 = 1; local
171 rep0 = /* (1 << ppp) +*/ GetVal(res, ppp);
174 while (rep0 >= pos);
175 rep0++;
179 Buffer[pos] = Buffer[pos - rep0];
/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
198 unsigned matchByte = dic[(dicPos - rep0) + ((dicPos < rep0) ? dicBufSize : 0)];
252 dic[dicPos] = dic[(dicPos - rep0) + ((dicPos < rep0) ? dicBufSize : 0)];
287 rep1 = rep0;
288 rep0 = distance;
396 rep1 = rep0;
397 rep0 = distance + 1;
415 SizeT pos = (dicPos - rep0)
468 UInt32 rep0 = p->reps[0]; local
[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);
472 UInt32 rep0 = 0, rep1 = 0, rep2 = 0, rep3 = 0; local
487 DecodeLiteral(state, rep0);
506 OutWindow.PutByte(OutWindow.GetByte(rep0 + 1));
527 rep1 = rep0;
528 rep0 = dist;
537 rep1 = rep0;
540 rep0 = DecodeDistance(len);
541 if (rep0
[all...]
/external/lzma/xz-embedded/
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/toybox/toys/pending/
H A Dxzcat.c1296 uint32_t rep0; member in struct:lzma_dec
1323 /* If 1, it's a repeated match. The distance is one of rep0 .. rep3. */
1327 * If 0, distance of a repeated match is rep0.
1744 match_byte = dict_get(&s->dict, s->lzma.rep0) << 1;
1793 /* Decode a match. The distance will be stored in s->lzma.rep0. */
1804 s->lzma.rep1 = s->lzma.rep0;
1812 s->lzma.rep0 = dist_slot;
1815 s->lzma.rep0 = 2 + (dist_slot & 1);
1818 s->lzma.rep0 <<= limit;
1819 probs = s->lzma.dist_special + s->lzma.rep0
[all...]

Completed in 144 milliseconds