Searched refs:runlen (Results 1 - 4 of 4) sorted by relevance

/freebsd-9.3-release/sys/gdb/
H A Dgdb_packet.c219 int runlen; local
232 runlen = 0;
235 runlen++;
239 while (runlen >= 97) {
244 runlen -= 97;
245 if (runlen > 0) {
248 runlen--;
251 if (runlen == 1) {
254 runlen--;
256 if (runlen
[all...]
/freebsd-9.3-release/sys/fs/ext2fs/
H A Dext2_alloc.c648 daddr_t bno, runstart, runlen; local
700 runlen = 0;
704 runlen = 0;
709 if (runlen == 0) {
711 runlen = NBBY - bit;
715 runlen += NBBY;
722 runlen += bit;
723 if (runlen >= 8) {
730 runlen = NBBY - bit;
735 if (runlen >
[all...]
/freebsd-9.3-release/sys/vm/
H A Dvm_pageout.c461 * Returned runlen is the count of pages between mreq and first
464 * for any page in runlen set.
473 int i, runlen; local
499 runlen = count - mreq;
531 if (eio != NULL && i >= mreq && i - mreq < runlen)
535 if (i >= mreq && i - mreq < runlen)
536 runlen = i - mreq;
557 *prunlen = runlen;
H A Dvm_object.c907 int count, i, mreq, runlen; local
937 vm_pageout_flush(ma, count, pagerflags, mreq, &runlen, eio);
938 return (runlen);

Completed in 114 milliseconds