Home
last modified time | relevance | path

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

/NextBSD/sys/gdb/
HDgdb_packet.c220 int runlen; in gdb_tx_end() local
233 runlen = 0; in gdb_tx_end()
236 runlen++; in gdb_tx_end()
240 while (runlen >= 97) { in gdb_tx_end()
245 runlen -= 97; in gdb_tx_end()
246 if (runlen > 0) { in gdb_tx_end()
249 runlen--; in gdb_tx_end()
252 if (runlen == 1) { in gdb_tx_end()
255 runlen--; in gdb_tx_end()
257 if (runlen == 0) in gdb_tx_end()
[all …]
/NextBSD/sys/fs/ext2fs/
HDext2_alloc.c645 daddr_t bno, runstart, runlen; in ext2_alloccg() local
697 runlen = 0; in ext2_alloccg()
701 runlen = 0; in ext2_alloccg()
706 if (runlen == 0) { in ext2_alloccg()
708 runlen = NBBY - bit; in ext2_alloccg()
712 runlen += NBBY; in ext2_alloccg()
719 runlen += bit; in ext2_alloccg()
720 if (runlen >= 8) { in ext2_alloccg()
727 runlen = NBBY - bit; in ext2_alloccg()
732 if (runlen >= 8) { in ext2_alloccg()
/NextBSD/sys/vm/
HDvm_pageout.c519 int i, runlen; in vm_pageout_flush() local
544 runlen = count - mreq; in vm_pageout_flush()
576 if (eio != NULL && i >= mreq && i - mreq < runlen) in vm_pageout_flush()
580 if (i >= mreq && i - mreq < runlen) in vm_pageout_flush()
581 runlen = i - mreq; in vm_pageout_flush()
597 *prunlen = runlen; in vm_pageout_flush()
HDvm_object.c934 int count, i, mreq, runlen; in vm_object_page_collect_flush() local
963 vm_pageout_flush(ma, count, pagerflags, mreq, &runlen, eio); in vm_object_page_collect_flush()
964 return (runlen); in vm_object_page_collect_flush()