Home
last modified time | relevance | path

Searched refs:vsz (Results 1 – 8 of 8) sorted by relevance

/freebsd/tools/test/stress2/misc/
H A Dthr3.sh50 vsz=`ps -Ovsz -p $pid | tail -1 | awk '{print $2}'`
51 [ -z "$vsz" -o "$vsz" = VSZ ] && break
52 if [ $vsz -gt $max ]; then
53 max=$vsz
H A Dswapoff3.sh55 size_t i, len, swap, vsz;
58 vsz = sizeof(free);
59 if (sysctlbyname("vm.stats.vm.v_free_count", &free, &vsz, NULL, 0) != 0)
61 vsz = sizeof(swap);
62 if (sysctlbyname("vm.swap_total", &swap, &vsz, NULL, 0) != 0)
H A Dswapoff5.sh58 size_t i, len, swap, vsz;
61 vsz = sizeof(free);
62 if (sysctlbyname("vm.stats.vm.v_free_count", &free, &vsz, NULL, 0) != 0)
64 vsz = sizeof(swap);
65 if (sysctlbyname("vm.swap_total", &swap, &vsz, NULL, 0) != 0)
H A Dgetrandom2.sh131 size_t f, vsz;
148 vsz = sizeof(pages);
149 if (sysctlbyname("vm.stats.vm.v_free_count", &pages, &vsz, NULL, 0) != 0)
/freebsd/contrib/netbsd-tests/bin/ps/
H A Dt_ps.sh96 l_keywords='uid pid ppid cpu pri nice vsz rss wchan state tt time command'
97 s_keywords='uid pid ppid cpu lid nlwp pri nice vsz rss wchan lstate tt ltime command'
98 u_keywords='user pid %cpu %mem vsz rss tt state start time command'
99 v_keywords='pid state time sl re pagein vsz rss lim tsiz %cpu %mem command'
H A Dkeywords120 vsize vsz ALIAS
121 vsz VSZ
/freebsd/sys/kern/
H A Dvfs_vnops.c965 off_t off, vsz; in vn_read_from_obj() local
1041 vsz = obj->un_pager.vnp.vnp_size; in vn_read_from_obj()
1043 vsz = atomic_load_64(&obj->un_pager.vnp.vnp_size); in vn_read_from_obj()
1045 if (uio->uio_offset >= vsz) { in vn_read_from_obj()
1049 if (uio->uio_offset + resid > vsz) in vn_read_from_obj()
1050 resid = vsz - uio->uio_offset; in vn_read_from_obj()
/freebsd/contrib/mandoc/
H A Droff.c3636 size_t ksz, vsz; in roff_char() local
3659 vsz = strlen(p); in roff_char()
3697 roff_setstrn(&r->xmbtab, kp, ksz, vp, vsz, 0); in roff_char()