Searched refs:wcount (Results 1 - 10 of 10) sorted by relevance

/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_clear/
H A Dzpool_clear_001_pos.ksh114 typeset -i wcount=0
119 (( wcount = size*1024*1024 - 512 ))
123 (( wcount = size*1024 - 512 ))
127 (( wcount = size - 512 ))
130 (( wcount = FILESIZE/1024 - 512 ))
133 dd if=/dev/zero of=$fbase.$i seek=512 bs=1024 count=$wcount conv=notrunc 2>/dev/null
/freebsd-current/bin/cp/
H A Dutils.c75 ssize_t rcount, wresid, wcount = 0; local
90 for (bufp = buf, wresid = rcount; ; bufp += wcount, wresid -= wcount) {
91 wcount = write(to_fd, bufp, wresid);
92 if (wcount <= 0)
94 if (wcount >= wresid)
97 return (wcount < 0 ? wcount : rcount);
104 ssize_t wcount; local
203 wcount
[all...]
/freebsd-current/sys/dev/smbus/
H A Dsmb.h50 int wcount; member in struct:smbcmd
H A Dsmb.c63 int wcount; member in struct:smbcmd32
183 CP(*uaddr, *kaddr, wcount);
353 if (s->wcount < 0) {
357 if (s->wcount > SMB_MAXBLOCKSIZE)
358 s->wcount = SMB_MAXBLOCKSIZE;
359 if (s->wcount)
360 error = copyin(s->wbuf, buf, s->wcount);
364 s->wcount, buf));
H A Dsmbconf.h117 #define smbus_trans(bus,slave,cmd,op,wbuf,wcount,rbuf,rcount,actualp) \
119 wbuf, wcount, rbuf, rcount, actualp))
/freebsd-current/usr.bin/mail/
H A Dcmd1.c163 char headline[LINESIZE], wcount[LINESIZE], *subjline, dispc, curind; local
189 sprintf(wcount, "%3ld/%-5ld", mp->m_lines, mp->m_size);
190 subjlen = screenwidth - 50 - strlen(wcount);
195 curind, dispc, mesg, name, hl.l_date, wcount);
198 curind, dispc, mesg, name, hl.l_date, wcount,
/freebsd-current/usr.sbin/smbmsg/
H A Dsmbmsg.c139 c.wcount = 0;
215 c.wcount = oflag;
/freebsd-current/usr.sbin/pwd_mkdb/
H A Dpwd_mkdb.c577 int from_fd, rcount, to_fd, wcount; local
584 wcount = write(to_fd, buf, rcount);
585 if (rcount != wcount || wcount == -1) {
/freebsd-current/usr.bin/sdiff/
H A Dsdiff.c184 ssize_t wcount; local
186 wcount = write(ofd, buf, (size_t)rcount);
187 if (-1 == wcount || rcount != wcount) {
/freebsd-current/libexec/rtld-elf/
H A Drtld.h96 volatile int wcount; /* Number of writers holding lock */ member in struct:Struct_LockInfo

Completed in 158 milliseconds