OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_UB
(Results
1 - 4
of
4
) sorted by null
/bionic/libc/stdio/
fileext.h
36
struct __sbuf
_ub
; /* ungetc buffer */
member in struct:__sfileext
41
#define
_UB
(fp) _EXT(fp)->
_ub
45
_UB
(fp)._base = NULL; \
46
_UB
(fp)._size = 0; \
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;
109
if (fp->_r >=
_UB
(fp)._size && __submore(fp))
135
_UB
(fp)._base = fp->_ubuf;
136
_UB
(fp)._size = sizeof(fp->_ubuf)
[
all
...]
local.h
77
#define HASUB(fp) (
_UB
(fp)._base != NULL)
79
if (
_UB
(fp)._base != (fp)->_ubuf) \
80
free(
_UB
(fp)._base); \
81
_UB
(fp)._base = NULL; \
freopen.c
115
_UB
(fp)._size = 0;
Completed in 140 milliseconds