Searched refs:_base (Results 1 - 25 of 49) sorted by relevance

12

/netbsd-current/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/
H A DFrameDecorator.py58 # 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, "filenam
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/python/lib/gdb/
H A DFrameDecorator.py50 # method and _base will be an object conforming to the Frame Filter
53 self._base = base
75 if hasattr(self._base, "elided"):
76 return self._base.elided()
92 if not isinstance(self._base, gdb.Frame):
93 if hasattr(self._base, "function"):
96 return self._base.function()
120 if hasattr(self._base, "address"):
121 return self._base.address()
131 if hasattr(self._base, "filenam
[all...]
/netbsd-current/lib/libc/stdio/
H A Dvasprintf.c58 unsigned char *_base; local
66 f._bf._base = f._p = malloc(128);
67 if (f._bf._base == NULL)
74 _base = realloc(f._bf._base, (size_t)(ret + 1));
75 if (_base == NULL)
77 *str = (char *)_base;
81 if (f._bf._base)
82 free(f._bf._base);
H A Dungetc.c66 if (_UB(fp)._base == fp->_ubuf) {
72 _UB(fp)._base = p;
81 p = realloc(_UB(fp)._base, (size_t)(i << 1));
87 _UB(fp)._base = p;
147 if (fp->_bf._base != NULL && fp->_p > fp->_bf._base &&
161 _UB(fp)._base = fp->_ubuf;
H A Dlocal.h92 ((((fp)->_flags & __SWR) == 0 || (fp)->_bf._base == NULL) && \
99 #define HASUB(fp) (_UB(fp)._base != NULL)
101 if (_UB(fp)._base != (fp)->_ubuf) \
102 free((char *)_UB(fp)._base); \
103 _UB(fp)._base = NULL; \
H A Dvswprintf.c73 f._bf._base = f._p = malloc(128);
74 if (f._bf._base == NULL) {
82 free(f._bf._base);
87 mbp = (char *)f._bf._base;
94 free(f._bf._base);
H A Dwbuf.c87 _DIAGASSERT(__type_fit(int, fp->_p - fp->_bf._base));
88 n = (int)(fp->_p - fp->_bf._base);
H A Dwsetup.c78 fp->_p = fp->_bf._base;
86 if (fp->_bf._base == NULL)
H A Dfileext.h49 #define _EXT(fp) ((struct __sfileext *)(void *)((fp)->_ext._base))
59 /* LINTED */(f)->_ext._base = (unsigned char *)(fext); \
70 /* LINTED */(f)->_ext._base = (unsigned char *)(fext); \
H A Dfvwrite.c130 ptrdiff_t blen = fp->_p - fp->_bf._base;
131 unsigned char *_base; local
139 _base = realloc(fp->_bf._base,
141 if (_base == NULL)
144 fp->_bf._base = _base;
146 fp->_p = _base + blen;
156 } else if (fp->_p > fp->_bf._base && len > (size_t)w) {
205 if (fp->_p > fp->_bf._base
[all...]
H A Dfpurge.c70 fp->_p = fp->_bf._base;
H A Dvsscanf.c76 f._bf._base = f._p = __UNCONST(str);
81 _UB(&f)._base = NULL;
H A Dfseeko.c115 curoff += fp->_p - fp->_bf._base;
153 if (fp->_bf._base == NULL)
201 n = fp->_up - fp->_bf._base;
205 n = fp->_p - fp->_bf._base;
220 fp->_p = fp->_bf._base + o;
242 fp->_p = fp->_bf._base;
259 * do it. Allow the seek function to change fp->_bf._base.
270 fp->_p = fp->_bf._base;
H A Dsetvbuf.c90 free((void *)fp->_bf._base);
126 fp->_bf._base = fp->_p = fp->_nbuf;
150 fp->_bf._base = fp->_p = (unsigned char *)buf;
H A Dfclose.c68 free((char *)fp->_bf._base);
H A Dfindfp.c65 ._bf = { ._base = NULL, ._size = 0 }, \
72 ._ext = { ._base = (void *)(__sFext + (file)), ._size = 0 }, \
143 fp->_bf._base = NULL; /* no buffer */
149 _UB(fp)._base = NULL; /* no ungetc buffer */
H A Dftell.c96 pos += fp->_p - fp->_bf._base;
H A Dftello.c97 pos += fp->_p - fp->_bf._base;
H A Drefill.c118 if (fp->_bf._base == NULL)
131 fp->_p = fp->_bf._base;
H A Dvswscanf.c103 f._bf._base = f._p = (unsigned char *)mbstr;
107 _UB(&f)._base = NULL;
H A Dfread.c95 fp->_bf._base = fp->_p = (unsigned char *)p;
108 fp->_bf._base = fp->_p = fp->_nbuf;
/netbsd-current/sys/arch/arm/nxp/
H A Dimx6_ccmvar.h255 #define CLK_MUX(_name, _parents, _base, _reg, _mask) { \
261 .base = (IMX6_CLK_REG_##_base), \
262 .reg = (_base##_##_reg), \
263 .mask = (_base##_##_reg##_##_mask), \
287 #define CLK_GATE(_name, _parent, _base, _reg, _mask) { \
293 .base = (IMX6_CLK_REG_##_base), \
294 .reg = (_base##_##_reg), \
295 .mask = (_base##_##_reg##_##_mask), \
301 #define CLK_GATE_EXCLUSIVE(_name, _parent, _base, _reg, _mask, _exclusive_mask) { \
307 .base = (IMX6_CLK_REG_##_base), \
[all...]
/netbsd-current/external/bsd/elftoolchain/dist/libelf/
H A D_libelf_ar.h57 unsigned int _base, size_t *_ret);
/netbsd-current/sys/arch/hpc/stand/hpcboot/menu/
H A Drootwindow.cpp47 _base = 0;
67 if (_base)
68 delete _base;
129 int tab_id = TabCtrl_GetCurSel(_base->_window);
133 TabCtrl_GetItem(_base->_window, tab_id, &tc_item);
146 return _base->focusManagerHook(key->wVKey, key->flags,
253 _base = new TabWindowBase(_app, w, rect, IDC_BASE);
254 _base->create(aux);
256 _main = _base->boot(IDC_BASE_MAIN);
257 _option = _base
[all...]
H A Dtabwindow.h76 TabWindowBase &_base; member in class:TabWindow
84 : Window(base._app, base._window), _base(base), _name(name) {
85 _rect = _base._rect;

Completed in 157 milliseconds

12