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 | 2021 size_t resid, runlen; in core_output() local 2033 for (; len > 0; base += runlen, offset += runlen, len -= runlen) { in core_output() 2040 for (runlen = 0; runlen < len; runlen += PAGE_SIZE) { in core_output() 2043 error = vm_fault(map, (uintptr_t)base + runlen, in core_output() 2045 if (runlen == 0) in core_output() 2052 error = core_write(cp, base, runlen, offset, in core_output() 2067 runlen -= resid; in core_output() 2068 if (runlen == 0) { in core_output() 2070 runlen = PAGE_SIZE; in core_output() 2075 error = core_extend(cp, offset + runlen); in core_output()
|
| /freebsd/usr.sbin/makefs/zfs/ |
| H A D | vdev.c | 360 uint64_t runlen, runoff; in vdev_spacemap_write() local 377 runlen = erunb - srunb; in vdev_spacemap_write() 382 SM2_RUN_ENCODE(runlen) | SM2_VDEV_ENCODE(0); in vdev_spacemap_write() 386 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 | 473 int i, runlen; in vm_pageout_flush() local 499 runlen = count; in vm_pageout_flush() 555 if (runlen == count) in vm_pageout_flush() 556 runlen = i; in vm_pageout_flush() 572 return (runlen); in vm_pageout_flush()
|
| H A D | vm_object.c | 1004 int count, runlen; in vm_object_page_clean_flush() local 1008 runlen = vm_radix_iter_lookup_range(pages, p->pindex + 1, in vm_object_page_clean_flush() 1010 for (count = 1; count <= runlen; count++) { in vm_object_page_clean_flush()
|