HomeSort by relevance Sort by last modified time
    Searched refs:_UB (Results 1 - 4 of 4) sorted by null

  /bionic/libc/stdio/
ungetc.c 52 if (_UB(fp)._base == fp->_ubuf) {
58 _UB(fp)._base = p;
59 _UB(fp)._size = BUFSIZ;
66 i = _UB(fp)._size;
67 p = realloc(_UB(fp)._base, i << 1);
73 _UB(fp)._base = p;
74 _UB(fp)._size = i << 1;
112 if (fp->_r >= _UB(fp)._size && __submore(fp))
138 _UB(fp)._base = fp->_ubuf;
139 _UB(fp)._size = sizeof(fp->_ubuf)
    [all...]
fileext.h 39 struct __sbuf _ub; /* ungetc buffer */ member in struct:__sfileext
47 #define _UB(fp) _EXT(fp)->_ub
52 _UB(fp)._base = NULL; \
53 _UB(fp)._size = 0; \
local.h 78 #define HASUB(fp) (_UB(fp)._base != NULL)
80 if (_UB(fp)._base != (fp)->_ubuf) \
81 free(_UB(fp)._base); \
82 _UB(fp)._base = NULL; \
freopen.c 119 _UB(fp)._size = 0;

Completed in 364 milliseconds