Home
last modified time | relevance | path

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

/freebsd/sys/gdb/
H A Dgdb_packet.c278 int runlen; in gdb_tx_end() local
296 runlen = 0; in gdb_tx_end()
299 runlen++; 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()
321 runlen--; in gdb_tx_end()
[all …]
/freebsd/sys/kern/
H A Dkern_exec.c1990 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/usr.sbin/makefs/zfs/
H A Dvdev.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/sys/fs/ext2fs/
H A Dext2_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/sys/vm/
H A Dvm_pageout.c473 int i, runlen; in vm_pageout_flush() local
499 runlen = count - mreq; in vm_pageout_flush()
551 if (eio != NULL && i >= mreq && i - mreq < runlen) in vm_pageout_flush()
555 if (i >= mreq && i - mreq < runlen) in vm_pageout_flush()
556 runlen = i - mreq; in vm_pageout_flush()
572 *prunlen = runlen; in vm_pageout_flush()
H A Dvm_object.c1119 int count, i, mreq, runlen; in vm_object_page_collect_flush() local
1153 vm_pageout_flush(ma, count, pagerflags, mreq, &runlen, eio); in vm_object_page_collect_flush()
1154 return (runlen); in vm_object_page_collect_flush()