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

  /libcore/ojluni/src/main/native/
SocketInputStream.c 58 char BUF[MAX_BUFFER_LEN];
88 bufP = BUF;
92 bufP = BUF;
112 if (bufP != BUF) {
150 if (bufP != BUF) {
SocketOutputStream.c 60 char BUF[MAX_BUFFER_LEN];
80 bufP = BUF;
88 bufP = BUF;
117 if (bufP != BUF) {
126 if (bufP != BUF) {
  /bionic/libc/stdio/
parsefloat.c 39 #define BUF 513 /* Maximum length of numeric string. */
41 size_t parsefloat(FILE *fp, char *buf, char *end) {
60 commit = buf - 1;
61 for (p = buf; p < end; ) {
186 return commit - buf;
189 size_t wparsefloat(FILE *fp, wchar_t *buf, wchar_t *end) {
208 commit = buf - 1;
210 for (p = buf; p < end; ) {
335 return (int)(commit - buf);
vfscanf.c 48 #define BUF 513 /* Maximum length of numeric string. */
112 char buf[BUF]; /* buffer for numeric conversions */ local
353 buf[n++] = *fp->_p;
357 nconv = mbrtowc(wcp, buf, n, &mbs);
435 buf[n++] = *fp->_p;
439 nconv = mbrtowc(wcp, buf, n, &mbs);
451 ungetc(buf[n],
539 buf[n++] = *fp->_p;
543 nconv = mbrtowc(wcp, buf, n, &mbs)
    [all...]
vfwscanf.c 49 #define BUF 513 /* Maximum length of numeric string. */
117 wchar_t buf[BUF]; /* buffer for numeric conversions */ local
537 if (width == 0 || width > sizeof(buf) /
538 sizeof(*buf) - 1)
539 width = sizeof(buf) / sizeof(*buf) - 1;
541 for (p = buf; width; width--) {
613 buf + 1 + !!(flags & HAVESIGN)) {
641 if (p > buf)
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
vfscanf.c 79 #define BUF 513 /* Maximum length of numeric string. */
172 char buf[BUF]; /* buffer for numeric and mb conversions */ local
420 buf[n++] = *fp->_p;
424 nconv = mbrtowc(wcp, buf, n, &mbs);
500 buf[n++] = *fp->_p;
504 nconv = mbrtowc(wcp, buf, n, &mbs);
516 (void)ungetc(buf[n],
601 buf[n++] = *fp->_p;
605 nconv = mbrtowc(wcp, buf, n, &mbs);
    [all...]
vfwscanf.c 79 #define BUF 513 /* Maximum length of numeric string. */
153 wchar_t buf[BUF]; /* buffer for numeric conversions */ local
564 if (width == 0 || width > sizeof(buf) /
565 sizeof(*buf) - 1)
566 width = sizeof(buf) / sizeof(*buf) - 1;
568 for (p = buf; width; width--) {
640 buf + 1 + !!(flags & HAVESIGN)) {
668 if (p > buf)
    [all...]
vfwprintf.c 163 unsigned char buf[BUFSIZ]; local
181 fake._bf._base = fake._p = buf;
182 fake._bf._size = fake._w = sizeof(buf);
204 char buf[MB_LEN_MAX]; local
213 if ((len = wcrtomb(buf, wc, &mbs)) == (size_t)-1) {
220 iov.iov_base = buf;
498 char buf[MB_LEN_MAX]; local
523 clen = wcrtomb(buf, *p++, &mbs);
587 #define BUF 100
679 CHAR_T buf[BUF]; /* buffer with space for digits of uintmax_t */ local
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
vfwprintf.c 102 unsigned char buf[BUFSIZ]; local
112 fake._bf._base = fake._p = buf;
113 fake._bf._size = fake._w = sizeof(buf);
133 char buf[MB_LEN_MAX]; local
142 len = wcrtomb(buf, wc, &mbs);
151 iov.iov_base = buf;
250 #define BUF 100
327 wchar_t buf[BUF]; /* buffer with space for digits of uintmax_t */ local
613 *(cp = buf) = (wchar_t)GETARG(wint_t)
    [all...]
vfprintf.c 124 unsigned char buf[BUFSIZ]; local
134 fake._bf._base = fake._p = buf;
135 fake._bf._size = fake._w = sizeof(buf);
158 char buf[MB_LEN_MAX]; local
183 clen = wcrtomb(buf, *p++, &mbs);
228 #define BUF 100
323 char buf[BUF]; /* buffer with space for digits of uintmax_t */ local
649 mbseqlen = wcrtomb(buf,
655 cp = buf;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
bz2module.c 37 #define BUF(v) PyString_AS_STRING((PyStringObject *)v)
253 char *buf, *end; local
269 buf = BUF(v);
270 end = buf + total_v_size;
274 while (buf != end) {
300 *buf++ = c;
319 /* Must be because buf == end */
333 buf = BUF(v) + used_v_size;
468 char *buf; local
829 char *buf; local
    [all...]
  /external/openssh/
scp.c 345 char *buf; member in struct:__anon28999
346 } BUF;
348 BUF *allocbuf(BUF *, int, int);
571 char buf[(20 + 7 + 2) * 2 + 2]; local
573 (void)snprintf(buf, sizeof(buf), "T%llu 0 %llu 0\n",
579 fprintf(stderr, "Sending file timestamps: %s", buf);
581 (void) atomicio(vwrite, fd, buf, strlen(buf));
766 char *last, *name, buf[2048], encname[PATH_MAX]; local
934 char ch, *cp, *np, *targ, *why, *vect[1], buf[2048], visbuf[2048]; local
    [all...]
  /external/python/cpython2/Modules/
bz2module.c 37 #define BUF(v) PyString_AS_STRING((PyStringObject *)v)
223 Util_GrowBuffer(PyObject **buf)
225 size_t size = PyString_GET_SIZE(*buf);
228 return _PyString_Resize(buf, new_size);
241 char *buf, *end; local
257 buf = BUF(v);
258 end = buf + total_v_size;
262 while (buf != end) {
288 *buf++ = c
456 char *buf; local
818 char *buf; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
fileobject.c 23 #define BUF(v) PyString_AS_STRING((PyStringObject *)v)
123 struct stat buf; local
126 if (fstat(fileno(f->f_fp), &buf) == 0 &&
127 S_ISDIR(buf.st_mode)) {
1086 chunksize = Py_UniversalNewlineFread(BUF(v) + bytesread,
1255 char buf[MAXBUFSIZE]; local
1411 char *buf, *end; local
2281 char *buf; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
fileobject.c 23 #define BUF(v) PyString_AS_STRING((PyStringObject *)v)
123 struct stat buf; local
126 if (fstat(fileno(f->f_fp), &buf) == 0 &&
127 S_ISDIR(buf.st_mode)) {
1082 chunksize = Py_UniversalNewlineFread(BUF(v) + bytesread,
1137 ptr = pbuf.buf;
1230 char buf[MAXBUFSIZE]; local
1386 char *buf, *end; local
2213 char *buf; local
    [all...]
  /external/python/cpython2/Objects/
fileobject.c 23 #define BUF(v) PyString_AS_STRING((PyStringObject *)v)
123 struct stat buf; local
126 if (fstat(fileno(f->f_fp), &buf) == 0 &&
127 S_ISDIR(buf.st_mode)) {
1084 chunksize = Py_UniversalNewlineFread(BUF(v) + bytesread,
1149 ptr = pbuf.buf;
1253 char buf[MAXBUFSIZE]; local
1409 char *buf, *end; local
2279 char *buf; local
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.9/
commons-compress-1.9.jar 
  /external/r8/deps/
commons-compress-1.12.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.12/
commons-compress-1.12.jar 

Completed in 1697 milliseconds