Home | History | Annotate | Download | only in pax

Lines Matching defs:wcnt

974 	int wcnt;
997 wcnt = MIN(cnt, *rem);
998 cnt -= wcnt;
999 *rem -= wcnt;
1006 end = st + wcnt;
1019 lseek(fd, (off_t)wcnt, SEEK_CUR) < 0) {
1051 char *nstr = *strp ? realloc(*strp, *lenp + wcnt + 1) :
1052 malloc(wcnt + 1);
1057 (void)strlcpy(&nstr[*lenp], st, wcnt + 1);
1059 *lenp += wcnt;
1060 } else if (xwrite(fd, st, wcnt) != wcnt) {
1064 st += wcnt;