Searched refs:bufend (Results 1 - 18 of 18) sorted by path

/freebsd-current/bin/pax/
H A Dbuf_subs.c59 static char *bufend; /* end or last char in i/o buffer */ variable
112 bufend = buf + wrblksz;
151 bufend = buf + rdblksz;
152 bufpt = bufend;
233 skcnt += bufend - bufpt;
252 bufend = buf + blksz;
253 while (bufpt < bufend) {
261 bufend = buf + blksz;
266 bufend = buf + blksz;
332 bufend
[all...]
/freebsd-current/bin/sh/
H A Deval.c1123 memout.bufend = NULL;
H A Doutput.h43 char *bufend; member in struct:output
79 #define outc(c, file) ((file)->nextc == (file)->bufend ? (emptyoutbuf(file), *(file)->nextc++ = (c)) : (*(file)->nextc++ = (c)))
/freebsd-current/contrib/diff/src/
H A Dio.c239 char const *bufend = FILE_BUFFER (current) + current->buffered;
397 if (p == bufend
408 bufend = suffix_begin = p;
495 if (p == bufend)
235 char const *bufend = FILE_BUFFER (current) + current->buffered; local
/freebsd-current/contrib/libdivsufsort/lib/
H A Dsssort.c548 saidx_t *a, *b, *c, *bufend; local
552 bufend = buf + (middle - first) - 1;
560 if(bufend <= b) { *bufend = t; return; }
567 while(b < bufend) { *a++ = *b, *b++ = *a; }
576 if(bufend <= b) { *bufend = t; return; }
583 while(b < bufend) { *a++ = *b, *b++ = *a; }
599 saidx_t *a, *b, *c, *bufend; local
604 bufend
[all...]
/freebsd-current/contrib/sendmail/src/
H A Dheaders.c1363 #define SM_HAVE_ROOMB ((bp < buflim) && (buflim <= bufend))
1412 char *bufend; local
1419 buflim = bufend = &buf[sizeof(buf) - 1];
1713 if (realqmode && bp < bufend)
1715 while (realcmtlev-- > 0 && bp < bufend)
1717 if (addangle && bp < bufend)
1720 if (bp < bufend)
/freebsd-current/crypto/heimdal/lib/roken/
H A Dglob.c175 Char *bufnext, *bufend, patbuf[MaxPathLen+1]; local
189 bufend = bufnext + MaxPathLen;
192 while (bufnext < bufend && (c = *patnext++) != CHAR_EOS)
204 while (bufnext < bufend && (c = *patnext++) != CHAR_EOS)
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dglob.c187 Char *bufnext, *bufend, patbuf[PATH_MAX]; local
210 bufend = bufnext + PATH_MAX - 1;
212 while (bufnext < bufend && (c = *patnext++) != EOS)
216 while (bufnext < bufend && (c = *patnext++) != EOS)
/freebsd-current/lib/libc/gen/
H A Dglob-compat11.c156 Char *bufnext, *bufend, patbuf[MAXPATHLEN], prot; local
179 bufend = bufnext + MAXPATHLEN - 1;
183 while (bufnext <= bufend) {
197 while (bufnext <= bufend) {
H A Dglob.c188 Char *bufnext, *bufend, patbuf[MAXPATHLEN], prot; local
211 bufend = bufnext + MAXPATHLEN - 1;
215 while (bufnext <= bufend) {
229 while (bufnext <= bufend) {
/freebsd-current/lib/libc/stdlib/
H A Dstrfmon.c89 *--bufend = *(avalue + avalue_size + padded); \
94 bufend -= thousands_sep_size; \
95 memcpy(bufend, thousands_sep, thousands_sep_size); \
526 char *bufend; local
581 bufend = rslt + bufsize - 1; /* reserve space for trailing '\0' */
591 bufend -= right_prec;
592 memcpy(bufend, avalue + avalue_size + padded - right_prec,
594 bufend -= decimal_point_size;
595 memcpy(bufend, decimal_point, decimal_point_size);
623 bufend
[all...]
/freebsd-current/stand/common/
H A Dmodule.c1163 u_char *cp, *recptr, *bufend, *best; local
1175 bufend = recptr + mdp->d_hintsz;
1178 while (recptr < bufend && !found) {
/freebsd-current/sys/contrib/zstd/lib/dictBuilder/
H A Ddivsufsort.c638 int *a, *b, *c, *bufend; local
642 bufend = buf + (middle - first) - 1;
650 if(bufend <= b) { *bufend = t; return; }
657 while(b < bufend) { *a++ = *b, *b++ = *a; }
666 if(bufend <= b) { *bufend = t; return; }
673 while(b < bufend) { *a++ = *b, *b++ = *a; }
689 int *a, *b, *c, *bufend; local
694 bufend
[all...]
/freebsd-current/sys/contrib/zstd/programs/
H A Dutil.c1051 char* bufend = buf + LIST_SIZE_INCREASE; local
1059 if (buf + pos + len >= bufend) {
1060 ptrdiff_t newListSize = (bufend - buf) + LIST_SIZE_INCREASE;
1064 bufend = buf + newListSize;
1066 if (buf + pos + len < bufend) {
1072 nbFiles += (unsigned)UTIL_prepareFileList(inputNames[ifnNb], &buf, &pos, &bufend, followLinks);
1085 if (buf + pos > bufend) { free(buf); free((void*)fileNamesTable); return NULL; }
/freebsd-current/sys/kern/
H A Dkern_linker.c2000 u_char *cp, *recptr, *bufend, *result, *pathbuf; local
2051 bufend = hints + vattr.va_size;
2054 while (recptr < bufend && !found) {
/freebsd-current/usr.bin/mail/
H A Dutil.c383 char *nbuf, *bufend, *cp, *cp2; local
397 bufend = nbuf;
398 for (cp = name, cp2 = bufend; (c = *cp++) != '\0'; ) {
435 cp2 = bufend;
473 bufend = cp2;
/freebsd-current/usr.sbin/ppp/
H A Dchat.c81 #define BUFLEFT(c) (sizeof (c)->buf - ((c)->bufend - (c)->buf))
161 c->bufstart = c->bufend;
300 end = c->bufend - c->arglen + 1;
350 end = ptr = c->bufend;
352 ptr = c->bufend - in;
353 for (end = c->bufend - 1; end >= ptr; end--)
359 for (ptr = c->bufend - (in == -1 ? 1 : in + 1); ptr >= c->bufstart; ptr--)
397 in = physical_Read(c->physical, c->bufend, in);
402 ebegin = c->bufend - c->arglen + 1;
408 abegin = c->bufend
[all...]
H A Dchat.h58 char *bufend; /* end of relevant data */ member in struct:chat

Completed in 243 milliseconds