Searched refs:runlen (Results 1 – 6 of 6) sorted by relevance
| /freebsd-14.2/sys/gdb/ |
| H A D | gdb_packet.c | 279 int runlen; in gdb_tx_end() local 297 runlen = 0; in gdb_tx_end() 300 runlen++; in gdb_tx_end() 309 runlen -= 97; in gdb_tx_end() 310 if (runlen > 0) { in gdb_tx_end() 313 runlen--; in gdb_tx_end() 317 while (runlen == 1 || runlen == 2 || in gdb_tx_end() 318 runlen + 29 == '$' || runlen + 29 == '#' || in gdb_tx_end() 319 runlen + 29 == '+' || runlen + 29 == '-') { in gdb_tx_end() 322 runlen--; in gdb_tx_end() [all …]
|
| /freebsd-14.2/sys/kern/ |
| H A D | kern_exec.c | 1990 size_t resid, runlen; in core_output() local 2001 for (; len > 0; base += runlen, offset += runlen, len -= runlen) { in core_output() 2008 for (runlen = 0; runlen < len; runlen += PAGE_SIZE) { in core_output() 2011 error = vm_fault(map, (uintptr_t)base + runlen, in core_output() 2013 if (runlen == 0) in core_output() 2020 error = core_write(cp, base, runlen, offset, in core_output() 2035 runlen -= resid; in core_output() 2036 if (runlen == 0) { in core_output() 2038 runlen = PAGE_SIZE; in core_output() 2047 error = vn_truncate_locked(cp->vp, offset + runlen, in core_output()
|
| /freebsd-14.2/usr.sbin/makefs/zfs/ |
| H A D | vdev.c | 359 uint64_t runlen, runoff; in vdev_spacemap_write() local 376 runlen = erunb - srunb; in vdev_spacemap_write() 381 SM2_RUN_ENCODE(runlen) | SM2_VDEV_ENCODE(0); in vdev_spacemap_write() 385 alloc += runlen << zfs->ashift; in vdev_spacemap_write()
|
| /freebsd-14.2/sys/fs/ext2fs/ |
| H A D | ext2_alloc.c | 1007 daddr_t bno, runstart, runlen; in ext2_alloccg() local 1072 runlen = 0; in ext2_alloccg() 1076 runlen = 0; in ext2_alloccg() 1081 if (runlen == 0) { in ext2_alloccg() 1083 runlen = NBBY - bit; in ext2_alloccg() 1087 runlen += NBBY; in ext2_alloccg() 1094 runlen += bit; in ext2_alloccg() 1095 if (runlen >= 8) { in ext2_alloccg() 1102 runlen = NBBY - bit; in ext2_alloccg() 1107 if (runlen >= 8) { in ext2_alloccg()
|
| /freebsd-14.2/sys/vm/ |
| H A D | vm_pageout.c | 475 int i, runlen; in vm_pageout_flush() local 501 runlen = count - mreq; in vm_pageout_flush() 553 if (eio != NULL && i >= mreq && i - mreq < runlen) in vm_pageout_flush() 557 if (i >= mreq && i - mreq < runlen) in vm_pageout_flush() 558 runlen = i - mreq; in vm_pageout_flush() 574 *prunlen = runlen; in vm_pageout_flush()
|
| H A D | vm_object.c | 1124 int count, i, mreq, runlen; in vm_object_page_collect_flush() local 1158 vm_pageout_flush(ma, count, pagerflags, mreq, &runlen, eio); in vm_object_page_collect_flush() 1159 return (runlen); in vm_object_page_collect_flush()
|