Lines Matching refs:current

325   size_t current;  in xdrrec_getbytes()  local
329 current = (int) rstrm->fbtbc; in xdrrec_getbytes()
330 if (current == 0) in xdrrec_getbytes()
338 current = (len < current) ? len : current; in xdrrec_getbytes()
339 if (!get_input_bytes (rstrm, addr, current)) in xdrrec_getbytes()
341 addr += current; in xdrrec_getbytes()
342 rstrm->fbtbc -= current; in xdrrec_getbytes()
343 len -= current; in xdrrec_getbytes()
354 size_t current; in xdrrec_putbytes() local
358 current = (size_t) ((uintptr_t) rstrm->out_boundry - in xdrrec_putbytes()
360 current = (len < current) ? len : current; in xdrrec_putbytes()
361 memmove (rstrm->out_finger, addr, current); in xdrrec_putbytes()
362 rstrm->out_finger += current; in xdrrec_putbytes()
363 addr += current; in xdrrec_putbytes()
364 len -= current; in xdrrec_putbytes()
798 size_t current; in get_input_bytes() local
812 current = (size_t) ((intptr_t) rstrm->in_boundry - (intptr_t) rstrm->in_finger); in get_input_bytes()
813 if (current == 0) in get_input_bytes()
819 current = (len < current) ? len : current; in get_input_bytes()
820 memmove (addr, rstrm->in_finger, current); in get_input_bytes()
821 rstrm->in_finger += current; in get_input_bytes()
822 addr += current; in get_input_bytes()
823 len -= current; in get_input_bytes()
857 size_t current; in skip_input_bytes() local
861 current = (size_t) ((intptr_t) rstrm->in_boundry - (intptr_t) rstrm->in_finger); in skip_input_bytes()
862 if (current == 0) in skip_input_bytes()
869 current = (size_t) (((size_t)cnt < current) ? (size_t)cnt : current); in skip_input_bytes()
870 rstrm->in_finger += current; in skip_input_bytes()
871 cnt -= current; in skip_input_bytes()