OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_UB
(Results
1 - 3
of
3
) sorted by null
/bionic/libc/upstream-openbsd/lib/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 = reallocarray(
_UB
(fp)._base, i, 2);
73
_UB
(fp)._base = p;
74
_UB
(fp)._size = i * 2;
112
if (fp->_r >=
_UB
(fp)._size && __submore(fp))
138
_UB
(fp)._base = fp->_ubuf;
139
_UB
(fp)._size = sizeof(fp->_ubuf)
[
all
...]
/bionic/libc/stdio/
local.h
111
struct __sbuf
_ub
;
member in struct:__sfileext
156
#define
_UB
(fp) _EXT(fp)->
_ub
161
_UB
(fp)._base = NULL; \
162
_UB
(fp)._size = 0; \
226
#define HASUB(fp) (
_UB
(fp)._base != NULL)
228
if (
_UB
(fp)._base != (fp)->_ubuf) \
229
free(
_UB
(fp)._base); \
230
_UB
(fp)._base = NULL; \
stdio.cpp
317
_UB
(fp)._size = 0;
Completed in 111 milliseconds