HomeSort by relevance Sort by last modified time
    Searched refs:_base (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /external/llvm/test/MC/MachO/
darwin-x86_64-diff-reloc-assign.s 9 // 00000000 False long True SUB False _base
12 _base = . define
14 .long (0x2000) + _start_ap_2 - _base
22 // CHECK: 0x0 0 2 1 X86_64_RELOC_SUBTRACTOR 0 _base
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
vasprintf.c 31 unsigned char *_base; local
36 f._bf._base = f._p = malloc(128);
37 if (f._bf._base == NULL)
44 _base = realloc(f._bf._base, ret + 1);
45 if (_base == NULL)
47 *str = (char *)_base;
51 free(f._bf._base);
52 f._bf._base = NULL;
vswprintf.c 58 f._bf._base = f._p = malloc(128);
59 if (f._bf._base == NULL) {
67 free(f._bf._base);
73 free(f._bf._base);
77 mbp = (char *)f._bf._base;
84 free(f._bf._base);
vsscanf.c 53 f._bf._base = f._p = (unsigned char *)str;
56 f._lb._base = NULL;
ungetc.c 52 if (_UB(fp)._base == fp->_ubuf) {
58 _UB(fp)._base = p;
67 p = reallocarray(_UB(fp)._base, i, 2);
73 _UB(fp)._base = p;
126 if (fp->_bf._base != NULL && fp->_p > fp->_bf._base &&
138 _UB(fp)._base = fp->_ubuf;
fvwrite.c 107 size_t blen = fp->_p - fp->_bf._base;
108 unsigned char *_base; local
116 _base = realloc(fp->_bf._base, _size + 1);
117 if (_base == NULL)
120 fp->_bf._base = _base;
122 fp->_p = _base + blen;
132 } else if (fp->_p > fp->_bf._base && len > w) {
173 if (fp->_p > fp->_bf._base && s > w)
    [all...]
fgetln.c 49 if ((p = realloc(fp->_lb._base, newsize)) == NULL)
51 fp->_lb._base = p;
115 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p,
129 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p,
136 ret = (char *)fp->_lb._base;
wsetup.c 62 fp->_p = fp->_bf._base;
70 if (fp->_bf._base == NULL) {
makebuf.c 57 fp->_bf._base = fp->_p = fp->_nbuf;
64 fp->_bf._base = fp->_p = fp->_nbuf;
69 fp->_bf._base = fp->_p = p;
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
unordered_set.h 23 typedef voidptr_unordered_set _base;
24 typedef _base::iterator _biterator;
25 typedef _base::const_iterator const_biterator;
39 iterator begin() { return _base::begin(); }
40 iterator end() { return _base::end(); }
41 const_iterator begin() const { return _base::begin(); }
42 const_iterator end() const { return _base::end(); }
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
vasprintf.c 51 unsigned char *_base; local
59 f._bf._base = f._p = (unsigned char *)malloc(128);
60 if (f._bf._base == NULL)
67 _base = realloc(f._bf._base, (size_t)(ret + 1));
68 if (_base == NULL)
70 *str = (char *)_base;
74 if (f._bf._base)
75 free(f._bf._base);
local.h 90 ((((fp)->_flags & __SWR) == 0 || (fp)->_bf._base == NULL) && __swsetup(fp))
96 #define HASUB(fp) (_UB(fp)._base != NULL)
98 if (_UB(fp)._base != (fp)->_ubuf) \
99 free((char *)_UB(fp)._base); \
100 _UB(fp)._base = NULL; \
106 #define HASLB(fp) ((fp)->_lb._base != NULL)
108 free((char *)(fp)->_lb._base); \
109 (fp)->_lb._base = NULL; \
vswprintf.c 61 f._bf._base = f._p = (unsigned char *)malloc(128);
62 if (f._bf._base == NULL) {
70 free(f._bf._base);
75 mbp = (char *)f._bf._base;
82 free(f._bf._base);
sscanf.c 80 f._bf._base = f._p = __UNCONST(str);
83 _UB(&f)._base = NULL;
84 f._lb._base = NULL;
vsscanf.c 77 f._bf._base = f._p = __UNCONST(str);
80 _UB(&f)._base = NULL;
81 f._lb._base = NULL;
ungetc.c 75 if (_UB(fp)._base == fp->_ubuf) {
81 _UB(fp)._base = p;
90 p = realloc(_UB(fp)._base, (size_t)(i << 1));
96 _UB(fp)._base = p;
159 if (fp->_bf._base != NULL && fp->_p > fp->_bf._base &&
173 _UB(fp)._base = fp->_ubuf;
fvwrite.c 131 size_t blen = fp->_p - fp->_bf._base;
132 unsigned char *_base; local
140 _base = realloc(fp->_bf._base,
142 if (_base == NULL)
145 fp->_bf._base = _base;
147 fp->_p = _base + blen;
157 } else if (fp->_p > fp->_bf._base && len > (size_t)w) {
198 if (fp->_p > fp->_bf._base && s > w) {
    [all...]
fgetstr.c 83 if ((p = realloc(fp->_lb._base, newsize)) == NULL)
85 fp->_lb._base = p;
155 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p,
169 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p,
177 fp->_lb._base[len] = 0;
179 return ((char *)fp->_lb._base);
wsetup.c 85 fp->_p = fp->_bf._base;
93 if (fp->_bf._base == NULL)
fileext.h 47 #define _EXT(fp) ((struct __sfileext *)(void *)((fp)->_ext._base))
57 /* LINTED */(f)->_ext._base = (unsigned char *)(fext); \
65 #define _FILEEXT_SETUP(f, fext) /* LINTED */(f)->_ext._base = (unsigned char *)(fext)
  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/
FrameDecorator.py 58 # method and _base will be an object conforming to the Frame Filter
61 self._base = base
80 if hasattr(self._base, "elided"):
81 return self._base.elided()
97 if not isinstance(self._base, gdb.Frame):
98 if hasattr(self._base, "function"):
101 return self._base.function()
125 if hasattr(self._base, "address"):
126 return self._base.address()
136 if hasattr(self._base, "filename")
    [all...]
  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/
FrameDecorator.py 58 # method and _base will be an object conforming to the Frame Filter
61 self._base = base
80 if hasattr(self._base, "elided"):
81 return self._base.elided()
97 if not isinstance(self._base, gdb.Frame):
98 if hasattr(self._base, "function"):
101 return self._base.function()
125 if hasattr(self._base, "address"):
126 return self._base.address()
136 if hasattr(self._base, "filename")
    [all...]
  /external/python/cpython3/Lib/concurrent/futures/
__init__.py 8 from concurrent.futures._base import (FIRST_COMPLETED,
  /external/python/futures/concurrent/futures/
__init__.py 8 from concurrent.futures._base import (FIRST_COMPLETED,
  /external/e2fsprogs/lib/et/
vfprintf.c 38 iop->_ptr = iop->_base = localbuf;
42 iop->_base = NULL;

Completed in 161 milliseconds

1 2 3 4 5