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

12

/freebsd-12-stable/lib/libc/stdio/
H A Dvasprintf.c54 f._bf._base = f._p = malloc(128);
55 if (f._bf._base == NULL) {
63 free(f._bf._base);
69 *str = (char *)f._bf._base;
H A Dlocal.h107 ((fp)->_bf._base == NULL && ((fp)->_flags & __SSTR) == 0)) && \
114 #define HASUB(fp) ((fp)->_ub._base != NULL)
116 if ((fp)->_ub._base != (fp)->_ubuf) \
117 free((char *)(fp)->_ub._base); \
118 (fp)->_ub._base = NULL; \
124 #define HASLB(fp) ((fp)->_lb._base != NULL)
126 free((char *)(fp)->_lb._base); \
127 (fp)->_lb._base = NULL; \
H A Dungetc.c63 if (fp->_ub._base == fp->_ubuf) {
69 fp->_ub._base = p;
78 p = reallocarray(fp->_ub._base, i, 2);
84 fp->_ub._base = p;
151 if (fp->_bf._base != NULL && fp->_p > fp->_bf._base &&
164 fp->_ub._base = fp->_ubuf;
H A Dvswprintf.c74 f._bf._base = f._p = (unsigned char *)malloc(128);
75 if (f._bf._base == NULL) {
84 free(f._bf._base);
90 mbp = f._bf._base;
97 free(f._bf._base);
H A Dfgetln.c72 if ((p = realloc(fp->_lb._base, newsize)) == NULL)
74 fp->_lb._base = p;
139 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p,
156 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p,
164 fp->_lb._base[len] = '\0';
166 ret = (char *)fp->_lb._base;
H A Dwsetup.c73 fp->_p = fp->_bf._base;
81 if (fp->_bf._base == NULL)
H A Dfvwrite.c111 size_t blen = fp->_p - fp->_bf._base;
119 fp->_bf._base =
120 reallocf(fp->_bf._base, fp->_bf._size + 1);
121 if (fp->_bf._base == NULL)
123 fp->_p = fp->_bf._base + blen;
135 } else if (fp->_p > fp->_bf._base && len > w) {
176 if (fp->_p > fp->_bf._base && s > w) {
H A Dmakebuf.c68 fp->_bf._base = fp->_p = fp->_nbuf;
75 fp->_bf._base = fp->_p = fp->_nbuf;
81 fp->_bf._base = fp->_p = p;
H A Dsetvbuf.c82 free((void *)fp->_bf._base);
118 fp->_bf._base = fp->_p = fp->_nbuf;
141 fp->_bf._base = fp->_p = (unsigned char *)buf;
H A Dfpurge.c64 fp->_p = fp->_bf._base;
H A Dfgetwln.c71 *((wchar_t *)fp->_lb._base + len++) = wc;
84 ret = (wchar_t *)fp->_lb._base;
H A Dvdprintf.c65 f._bf._base = buf;
H A Dvsprintf.c60 f._bf._base = f._p = (unsigned char *)str;
H A Dvsscanf.c70 f._bf._base = f._p = (unsigned char *)str;
H A Dwbuf.c82 n = fp->_p - fp->_bf._base;
H A Dftell.c103 fp->_p != NULL && fp->_p - fp->_bf._base > 0 &&
129 (n = fp->_p - fp->_bf._base) > 0) {
H A Drefill.c117 if (fp->_bf._base == NULL)
135 fp->_p = fp->_bf._base;
H A Dsnprintf.c72 f._bf._base = f._p = (unsigned char *)str;
100 f._bf._base = f._p = (unsigned char *)str;
H A Dfseek.c171 if (fp->_bf._base == NULL)
228 n = fp->_up - fp->_bf._base;
232 n = fp->_p - fp->_bf._base;
245 fp->_p = fp->_bf._base + o;
267 fp->_p = fp->_bf._base;
283 * do it. Allow the seek function to change fp->_bf._base.
297 fp->_p = fp->_bf._base;
H A Dfindfp.c151 fp->_bf._base = NULL; /* no buffer */
156 fp->_ub._base = NULL; /* no ungetc buffer */
158 fp->_lb._base = NULL; /* no line buffer */
H A Dfclose.c64 free((char *)fp->_bf._base);
H A Dfflush.c115 if ((p = fp->_bf._base) == NULL)
H A Dvsnprintf.c78 f._bf._base = f._p = (unsigned char *)str;
/freebsd-12-stable/contrib/elftoolchain/libelf/
H A D_libelf_ar.h55 unsigned int _base, size_t *_ret);
/freebsd-12-stable/sys/arm/freescale/imx/
H A Dimx51_ipuv3reg.h887 #define IPU_CM_BASE(_base) ((_base) + 0x1e000000)
889 #define IPU_IDMAC_BASE(_base) ((_base) + 0x1e008000)
891 #define IPU_DP_BASE(_base) ((_base) + 0x1e018000)
893 #define IPU_IC_BASE(_base) ((_base) + 0x1e020000)
895 #define IPU_IRT_BASE(_base) ((_base)
[all...]

Completed in 141 milliseconds

12