Searched refs:runlen (Results 1 – 6 of 6) sorted by relevance
/freebsd/sys/gdb/ |
H A D | gdb_packet.c | 278 int runlen; in gdb_tx_end() local 296 runlen = 0; in gdb_tx_end() 299 runlen++; in gdb_tx_end() 303 while (runlen >= 97) { in gdb_tx_end() 308 runlen -= 97; in gdb_tx_end() 309 if (runlen > 0) { in gdb_tx_end() 312 runlen--; in gdb_tx_end() 316 while (runlen == 1 || runlen == 2 || in gdb_tx_end() 317 runlen + 29 == '$' || runlen + 29 == '#' || in gdb_tx_end() 318 runlen + 29 == '+' || runlen + 29 == '-') { in gdb_tx_end() [all …]
|
/freebsd/sys/kern/ |
H A D | kern_exec.c | 2000 size_t resid, runlen; in core_output() local 2012 for (; len > 0; base += runlen, offset += runlen, len -= runlen) { in core_output() 2019 for (runlen = 0; runlen < len; runlen += PAGE_SIZE) { in core_output() 2022 error = vm_fault(map, (uintptr_t)base + runlen, in core_output() 2024 if (runlen == 0) in core_output() 2031 error = core_write(cp, base, runlen, offset, in core_output() 2046 runlen -= resid; in core_output() 2047 if (runlen == 0) { in core_output() 2049 runlen = PAGE_SIZE; in core_output() 2058 error = vn_truncate_locked(cp->vp, offset + runlen, in core_output()
|
/freebsd/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/sys/fs/ext2fs/ |
H A D | ext2_alloc.c | 1005 daddr_t bno, runstart, runlen; in ext2_alloccg() local 1070 runlen = 0; in ext2_alloccg() 1074 runlen = 0; in ext2_alloccg() 1079 if (runlen == 0) { in ext2_alloccg() 1081 runlen = NBBY - bit; in ext2_alloccg() 1085 runlen += NBBY; in ext2_alloccg() 1092 runlen += bit; in ext2_alloccg() 1093 if (runlen >= 8) { in ext2_alloccg() 1100 runlen = NBBY - bit; in ext2_alloccg() 1105 if (runlen >= 8) { in ext2_alloccg()
|
/freebsd/sys/vm/ |
H A D | vm_pageout.c | 448 int i, runlen; in vm_pageout_flush() local 474 runlen = count - mreq; in vm_pageout_flush() 526 if (eio != NULL && i >= mreq && i - mreq < runlen) in vm_pageout_flush() 530 if (i >= mreq && i - mreq < runlen) in vm_pageout_flush() 531 runlen = i - mreq; in vm_pageout_flush() 547 *prunlen = runlen; in vm_pageout_flush()
|
H A D | vm_object.c | 1127 int base, count, runlen; in vm_object_page_collect_flush() local 1157 &runlen, eio); in vm_object_page_collect_flush() 1158 return (runlen); in vm_object_page_collect_flush()
|