/src/bin/pax/ |
buf_subs.c | 76 static char *bufend; /* end or last char in i/o buffer */ variable in typeref:typename:char * 124 bufend = buf + wrblksz; 165 bufend = buf + rdblksz; 166 bufpt = bufend; 247 skcnt += bufend - bufpt; 266 bufend = buf + blksz; 267 while (bufpt < bufend) { 275 bufend = buf + blksz; 280 bufend = buf + blksz; 347 bufend = buf + res [all...] |
/src/usr.bin/sort/ |
files.c | 91 makeline(FILE *fp, RECHEADER *recbuf, u_char *bufend, struct field *dummy2) 105 * This code has relied on realloc changing 'bufend', 112 while (pos < bufend) { 132 if (recbuf->data < bufend) { 144 makekey(FILE *fp, RECHEADER *recbuf, u_char *bufend, struct field *ftbl) 152 overflow = enterkey(recbuf, bufend, line_data, line_size, ftbl); 162 if (line_size > bufend - recbuf->data) { 165 overflow = enterkey(recbuf, bufend, line_data, line_size, ftbl);
|
fsort.c | 88 u_char *bufend; local in function:fsort 99 bufend = (u_char *)buffer + bufsize; 127 c = get(fp, crec, bufend, ftbl); 169 bufend = (u_char *)buffer + bufsize;
|
fields.c | 251 number(u_char *pos, const u_char *bufend, u_char *line, u_char *lineend, 268 bufend--; 271 if (pos + 1 + MAX_EXP_ENC > bufend) 337 if (pos >= bufend) 372 length(u_char *pos, const u_char *bufend, u_char *line, u_char *lineend, 379 return number(pos, bufend, buf, buf + l, flag);
|
/src/lib/libc/stdlib/ |
strfmon.c | 96 *--bufend = *(avalue + avalue_size + padded); \ 101 bufend -= thousands_sep_size; \ 102 memcpy(bufend, thousands_sep, thousands_sep_size); \ 537 char *bufend; local in function:__format_grouped_double 592 bufend = rslt + bufsize - 1; /* reserve space for trailing '\0' */ 602 bufend -= right_prec; 603 memcpy(bufend, avalue + avalue_size + padded - right_prec, 605 bufend -= decimal_point_size; 606 memcpy(bufend, decimal_point, decimal_point_size); 636 bufend -= avalue_size [all...] |
/src/usr.bin/mail/ |
support.c | 457 char *bufend; local in function:skin 470 bufend = nbuf; 471 for (cp = name, cp2 = bufend; (c = *cp++) != '\0'; /*EMPTY*/) { 508 cp2 = bufend; 545 bufend = cp2;
|
format.c | 361 snarf_comment(char **buf, char *bufend, const char *string) 369 qend = buf ? bufend : NULL; 400 snarf_quote(char **buf, char *bufend, const char *string) 407 qend = buf ? bufend : NULL;
|
/src/lib/libc/gen/ |
glob.c | 189 Char *bufnext, *bufend, patbuf[MAXPATHLEN+1]; local in function:glob 206 bufend = bufnext + MAXPATHLEN; 208 while (bufnext < bufend && (c = *patnext++) != EOS) 212 while (bufnext < bufend && (c = *patnext++) != EOS)
|