Lines Matching defs:current
115 u_int32_t *frag_header; /* beginning of current fragment */
277 int current;
280 current = (int)rstrm->fbtbc;
281 if (current == 0) {
288 current = (len < current) ? len : current;
289 if (! get_input_bytes(rstrm, addr, current))
291 addr += current;
292 rstrm->fbtbc -= current;
293 len -= current;
302 size_t current;
305 current = (size_t)((u_long)rstrm->out_boundry -
307 current = (len < current) ? len : current;
308 memmove(rstrm->out_finger, addr, current);
309 rstrm->out_finger += current;
310 addr += current;
311 len -= current;
467 * after consuming the rest of the current record.
654 size_t current;
665 current = (size_t)((long)rstrm->in_boundry -
667 if (current == 0) {
672 current = (len < current) ? len : current;
673 memmove(addr, rstrm->in_finger, current);
674 rstrm->in_finger += current;
675 addr += current;
676 len -= current;
709 u_int32_t current;
712 current = (size_t)((long)rstrm->in_boundry -
714 if (current == 0) {
719 current = (u_int32_t)((cnt < current) ? cnt : current);
720 rstrm->in_finger += current;
721 cnt -= current;