Lines Matching refs:fbtbc
125 long fbtbc; /* fragment bytes to be consumed */ member
213 rstrm->fbtbc = 0; in xdrrec_create()
237 if ((rstrm->fbtbc >= sizeof(int32_t)) && in xdrrec_getlong()
240 rstrm->fbtbc -= sizeof(int32_t); in xdrrec_getlong()
280 current = (int)rstrm->fbtbc; in xdrrec_getbytes()
292 rstrm->fbtbc -= current; in xdrrec_getbytes()
370 if ((delta < (int)(rstrm->fbtbc)) && in xdrrec_setpos()
374 rstrm->fbtbc -= delta; in xdrrec_setpos()
401 if ((len <= rstrm->fbtbc) && in xdrrec_inline()
404 rstrm->fbtbc -= len; in xdrrec_inline()
442 rstrm->fbtbc = 0; in xdrrec_skiprecord()
447 rstrm->fbtbc = 0; in xdrrec_skiprecord()
453 while (rstrm->fbtbc > 0 || (! rstrm->last_frag)) { in xdrrec_skiprecord()
454 if (! skip_input_bytes(rstrm, rstrm->fbtbc)) in xdrrec_skiprecord()
456 rstrm->fbtbc = 0; in xdrrec_skiprecord()
474 while (rstrm->fbtbc > 0 || (! rstrm->last_frag)) { in xdrrec_eof()
475 if (! skip_input_bytes(rstrm, rstrm->fbtbc)) in xdrrec_eof()
477 rstrm->fbtbc = 0; in xdrrec_eof()
583 rstrm->fbtbc = rstrm->in_reclen; in __xdrrec_getrec()
702 rstrm->fbtbc = header & (~LAST_FRAG); in set_input_fragment()