HomeSort by relevance Sort by last modified time
    Searched defs:BUF (Results 1 - 5 of 5) sorted by null

  /bionic/libc/stdio/
vfscanf.c 46 #define BUF 513 /* Maximum length of numeric string. */
114 char buf[BUF]; /* buffer for numeric conversions */ local
454 if (width == 0 || width > sizeof(buf) - 1)
455 width = sizeof(buf) - 1;
458 if (--width > sizeof(buf) - 2)
459 width = sizeof(buf) - 2;
463 for (p = buf; width; width--) {
535 buf + 1 + !!(flags & HAVESIGN)) {
565 if (p > buf)
    [all...]
vfprintf.c 88 unsigned char buf[BUFSIZ]; local
98 fake._bf._base = fake._p = buf;
99 fake._bf._size = fake._w = sizeof(buf);
117 #define BUF (MAXEXP+MAXFRACT+1) /* + decimal point */
123 #define BUF 40
204 char buf[BUF]; /* space for %c, %[diouxX], %[eEfgG] */ local
477 *(cp = buf) = GETARG(int);
661 cp = buf + BUF;
    [all...]
  /external/dropbear/
scp.c 268 char *buf; member in struct:__anon7203
269 } BUF;
271 BUF *allocbuf(BUF *, int, int);
595 static BUF buffer;
596 BUF *bp;
600 char *last, *name, buf[2048]; local
643 (void) snprintf(buf, sizeof buf, "T%lu 0 %lu 0\n",
646 (void) atomicio(vwrite, remout, buf, strlen(buf))
835 char ch, *cp, *np, *targ, *why, *vect[1], buf[2048]; local
    [all...]
  /external/grub/netboot/
depca.c 263 #define BUF 0x0020 /* BUFfer size (1->32k, 0->64k) */
713 if (nicsr & BUF) {
  /external/openssh/
scp.c 343 char *buf; member in struct:__anon12456
344 } BUF;
346 BUF *allocbuf(BUF *, int, int);
725 static BUF buffer;
726 BUF *bp;
730 char *last, *name, buf[2048], encname[MAXPATHLEN]; local
777 (void) snprintf(buf, sizeof buf, "T%lu 0 %lu 0\n",
784 buf);
912 char ch, *cp, *np, *targ, *why, *vect[1], buf[2048]; local
    [all...]

Completed in 226 milliseconds