/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
D | fvwrite.c | 111 int _size; in __sfvwrite() local 114 _size = ((blen + len + 1 + pgmsk) & ~pgmsk) - 1; in __sfvwrite() 116 fp->_bf._size + 1, _size + 1, 1); in __sfvwrite() 119 fp->_w += _size - fp->_bf._size; in __sfvwrite() 121 fp->_bf._size = _size; in __sfvwrite() 139 } else if (len >= (w = fp->_bf._size)) { in __sfvwrite() 180 w = fp->_w + fp->_bf._size; in __sfvwrite() 187 } else if (s >= (w = fp->_bf._size)) { in __sfvwrite()
|
D | ungetc.c | 59 _UB(fp)._size = BUFSIZ; in __submore() 66 i = _UB(fp)._size; in __submore() 74 _UB(fp)._size = i * 2; in __submore() 112 if (fp->_r >= _UB(fp)._size && __submore(fp)) in ungetc() 139 _UB(fp)._size = sizeof(fp->_ubuf); in ungetc()
|
D | makebuf.c | 58 fp->_bf._size = 1; in __smakebuf() 65 fp->_bf._size = 1; in __smakebuf() 70 fp->_bf._size = size; in __smakebuf()
|
D | setvbuf.c | 111 fp->_bf._size = 1; in setvbuf() 142 fp->_bf._size = size; in setvbuf() 151 fp->_lbfsize = -fp->_bf._size; in setvbuf()
|
D | fgetln.c | 47 if (fp->_lb._size >= newsize) in __slbexpand() 49 if ((p = recallocarray(fp->_lb._base, fp->_lb._size, newsize, 1)) == NULL) in __slbexpand() 52 fp->_lb._size = newsize; in __slbexpand()
|
D | wbuf.c | 70 if (n >= fp->_bf._size) { in __swbuf() 77 if (++n == fp->_bf._size || (fp->_flags & __SLBF && c == '\n')) in __swbuf()
|
D | wsetup.c | 89 fp->_lbfsize = -fp->_bf._size; in __swsetup() 91 fp->_w = fp->_flags & __SNBF ? 0 : fp->_bf._size; in __swsetup()
|
D | vasprintf.c | 42 f._bf._size = f._w = INITIAL_SIZE - 1; /* leave room for the NUL */ in vasprintf() 50 f._bf._size + 1, ret + 1, 1); in vasprintf()
|
D | fpurge.c | 58 fp->_w = fp->_flags & (__SLBF|__SNBF) ? 0 : fp->_bf._size; in fpurge()
|
D | vsscanf.c | 54 f._bf._size = f._r = strlen(str); in vsscanf()
|
D | vdprintf.c | 65 f._bf._size = sizeof(buf); in vdprintf()
|
D | vswscanf.c | 81 f._bf._size = f._r = mlen; in vswscanf()
|
D | vswprintf.c | 63 f._bf._size = f._w = 127; /* Leave room for the NUL */ in vswprintf()
|
/bionic/libc/malloc_debug/ |
D | README_api.md | 14 *overall\_size* is set to the total size of the buffer returned. If this 15 *info\_size* 20 *backtrace\_size* is set to the maximum number of backtrace entries 38 *backtrace\_size* as returned by the original call to 45 of backtrace entries is less than *backtrace\_size*, the rest of the 54 *overall\_size* divided by *info\_size*.
|
D | README.md | 163 ### backtrace\_min\_size=ALLOCATION\_SIZE\_BYTES 167 with the backtrace\_max\_size option, then allocations greater than or 168 equal to backtrace\_min\_size and less than or equal to 169 backtrace\_max\_size will be backtraced. The backtrace\_size option 176 ### backtrace\_max\_size=ALLOCATION\_SIZE\_BYTES 180 with the backtrace\_min\_size option, then allocations greater than or 181 equal to backtrace\_min\_size and less than or equal to 182 backtrace\_max\_size will be backtraced. The backtrace\_size option 189 ### backtrace\_size=ALLOCATION\_SIZE\_BYTES 192 This option overrides the backtrace\_min\_size and the backtrace\_max\_size. [all …]
|
/bionic/libc/include/sys/ |
D | ifunc.h | 55 unsigned long _size; member
|
/bionic/libc/bionic/ |
D | bionic_call_ifunc_resolver.cpp | 47 arg._size = sizeof(__ifunc_arg_t); in __bionic_call_ifunc_resolver()
|
D | wcstod.cpp | 61 f._bf._size = f._r = max_len; in wcstod()
|
/bionic/libc/stdio/ |
D | local.h | 55 size_t _size; member 57 int _size; member
|
D | stdio_ext.cpp | 39 return fp->_bf._size; in __fbufsize()
|
D | refill.c | 113 fp->_r = (*fp->_read)(fp->_cookie, (char *)fp->_p, fp->_bf._size); in __srefill()
|
D | stdio.cpp | 192 fp->_bf._size = 0; in __sfp() 197 fp->_lb._size = 0; in __sfp() 372 fp->_bf._size = 0; in freopen() 375 _UB(fp)._size = 0; in freopen() 378 fp->_lb._size = 0; in freopen() 508 fp->_w = (fp->_flags & (__SLBF|__SNBF)) ? 0 : fp->_bf._size; in __sflush() 1036 f._bf._size = f._w = n - 1; in vsnprintf() 1124 if (total > static_cast<size_t>(fp->_bf._size)) break; in fread_unlocked()
|
D | printf_common.h | 102 fake._bf._size = fake._w = sizeof(buf); in __sbprintf()
|
/bionic/tests/ |
D | ifunc_test.cpp | 99 EXPECT_EQ(sizeof(__ifunc_arg_t), g_arg._size); in TEST()
|
/bionic/libc/malloc_hooks/ |
D | README.md | 59 There is no hook for malloc\_usable\_size as of now. 71 it runs the risk of crashing whenever a malloc\_usable\_size call is made.
|