Home
last modified time | relevance | path

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

/freebsd-head/sys/gdb/
HDgdb_packet.c278 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-head/sys/kern/
HDkern_exec.c1997 size_t resid, runlen; in core_output() local
2009 for (; len > 0; base += runlen, offset += runlen, len -= runlen) { in core_output()
2016 for (runlen = 0; runlen < len; runlen += PAGE_SIZE) { in core_output()
2019 error = vm_fault(map, (uintptr_t)base + runlen, in core_output()
2021 if (runlen == 0) in core_output()
2028 error = core_write(cp, base, runlen, offset, in core_output()
2043 runlen -= resid; in core_output()
2044 if (runlen == 0) { in core_output()
2046 runlen = PAGE_SIZE; in core_output()
2055 error = vn_truncate_locked(cp->vp, offset + runlen, in core_output()
/freebsd-head/usr.sbin/makefs/zfs/
HDvdev.c359 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-head/sys/fs/ext2fs/
HDext2_alloc.c1005 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-head/sys/vm/
HDvm_pageout.c465 int i, runlen; in vm_pageout_flush() local
491 runlen = count - mreq; in vm_pageout_flush()
543 if (eio != NULL && i >= mreq && i - mreq < runlen) in vm_pageout_flush()
547 if (i >= mreq && i - mreq < runlen) in vm_pageout_flush()
548 runlen = i - mreq; in vm_pageout_flush()
564 *prunlen = runlen; in vm_pageout_flush()
HDvm_object.c1133 int base, count, runlen; in vm_object_page_collect_flush() local
1163 &runlen, eio); in vm_object_page_collect_flush()
1164 return (runlen); in vm_object_page_collect_flush()