Searched defs:_size (Results 1 - 2 of 2) sorted by path

/bionic/libc/include/
H A Dstdio.h89 int _size; member in struct:__sbuf
98 * _lbfsize is -_bf._size, else _lbfsize is 0
126 int _lbfsize; /* 0 or -_bf._size, for inline putc */
149 int _blksize; /* stat.st_blksize (may be != _bf._size) */
/bionic/libc/stdio/
H A Dfvwrite.c99 * one _bf._size byte chunk directly (without copying).
113 int _size; local
116 _size = fp->_bf._size;
118 _size = (_size << 1) + 1;
119 } while (_size < (int)(blen + len));
120 _base = realloc(fp->_bf._base, _size + 1);
123 fp->_w += _size - fp->_bf._size;
[all...]

Completed in 109 milliseconds