Lines Matching refs:t
102 register unsigned t; in do_compress()
104 t = lit; in do_compress()
105 assert(op - 2 > out); op[-2] |= (uint8_t)(t); in do_compress()
106 do *op++ = *ii++; while (--t > 0); in do_compress()
131 register unsigned t = pd(ip, ii); in do_compress() local
133 if (t <= 3) { in do_compress()
135 op[-2] |= (uint8_t)(t); in do_compress()
137 else if (t <= 18) in do_compress()
138 *op++ = (uint8_t)(t - 3); in do_compress()
140 register unsigned tt = t - 18; in do_compress()
150 do *op++ = *ii++; while (--t > 0); in do_compress()
258 unsigned t; in DO_COMPRESS() local
261 t = in_len; in DO_COMPRESS()
263 t = do_compress(in,in_len,op,out_len,wrkmem); in DO_COMPRESS()
267 if (t > 0) { in DO_COMPRESS()
268 const uint8_t* ii = in + in_len - t; in DO_COMPRESS()
270 if (op == out && t <= 238) in DO_COMPRESS()
271 *op++ = (uint8_t)(17 + t); in DO_COMPRESS()
272 else if (t <= 3) in DO_COMPRESS()
273 op[-2] |= (uint8_t)(t); in DO_COMPRESS()
274 else if (t <= 18) in DO_COMPRESS()
275 *op++ = (uint8_t)(t - 3); in DO_COMPRESS()
277 unsigned tt = t - 18; in DO_COMPRESS()
287 do *op++ = *ii++; while (--t > 0); in DO_COMPRESS()