/freebsd/lib/libc/stdio/ |
H A D | local.h | 104 ((fp)->_bf._base == NULL && ((fp)->_flags & __SSTR) == 0)) && \ 111 #define HASUB(fp) ((fp)->_ub._base != NULL) 113 if ((fp)->_ub._base != (fp)->_ubuf) \ 114 free((char *)(fp)->_ub._base); \ 115 (fp)->_ub._base = NULL; \ 121 #define HASLB(fp) ((fp)->_lb._base != NULL) 123 free((char *)(fp)->_lb._base); \ 124 (fp)->_lb._base = NULL; \
|
H A D | ungetc.c | 57 if (fp->_ub._base == fp->_ubuf) { in __submore() 63 fp->_ub._base = p; in __submore() 72 p = reallocarray(fp->_ub._base, i, 2); in __submore() 78 fp->_ub._base = p; in __submore() 145 if (fp->_bf._base != NULL && fp->_p > fp->_bf._base && in __ungetc() 158 fp->_ub._base = fp->_ubuf; in __ungetc()
|
H A D | fvwrite.c | 105 size_t blen = fp->_p - fp->_bf._base; in __sfvwrite() 113 fp->_bf._base = in __sfvwrite() 114 reallocf(fp->_bf._base, fp->_bf._size + 1); in __sfvwrite() 115 if (fp->_bf._base == NULL) in __sfvwrite() 117 fp->_p = fp->_bf._base + blen; in __sfvwrite() 129 } else if (fp->_p > fp->_bf._base && len > w) { in __sfvwrite() 170 if (fp->_p > fp->_bf._base && s > w) { in __sfvwrite()
|
H A D | vswprintf.c | 68 f._bf._base = f._p = (unsigned char *)malloc(128); in vswprintf_l() 69 if (f._bf._base == NULL) { in vswprintf_l() 78 free(f._bf._base); in vswprintf_l() 84 mbp = f._bf._base; in vswprintf_l() 91 free(f._bf._base); in vswprintf_l()
|
H A D | fgetln.c | 59 if ((p = realloc(fp->_lb._base, newsize)) == NULL) in __slbexpand() 61 fp->_lb._base = p; in __slbexpand() 126 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p, in fgetln() 143 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p, in fgetln() 150 ret = (char *)fp->_lb._base; in fgetln()
|
H A D | vasprintf.c | 52 f._bf._base = f._p = malloc(128); in vasprintf_l() 53 if (f._bf._base == NULL) { in vasprintf_l() 61 free(f._bf._base); in vasprintf_l() 67 *str = (char *)f._bf._base; in vasprintf_l()
|
H A D | fseek.c | 165 if (fp->_bf._base == NULL) in _fseeko() 222 n = fp->_up - fp->_bf._base; in _fseeko() 226 n = fp->_p - fp->_bf._base; in _fseeko() 239 fp->_p = fp->_bf._base + o; in _fseeko() 261 fp->_p = fp->_bf._base; in _fseeko() 291 fp->_p = fp->_bf._base; in _fseeko()
|
H A D | makebuf.c | 62 fp->_bf._base = fp->_p = fp->_nbuf; in __smakebuf() 69 fp->_bf._base = fp->_p = fp->_nbuf; in __smakebuf() 75 fp->_bf._base = fp->_p = p; in __smakebuf()
|
H A D | setvbuf.c | 77 free((void *)fp->_bf._base); in setvbuf() 113 fp->_bf._base = fp->_p = fp->_nbuf; in setvbuf() 136 fp->_bf._base = fp->_p = (unsigned char *)buf; in setvbuf()
|
H A D | wsetup.c | 67 fp->_p = fp->_bf._base; in __swsetup() 75 if (fp->_bf._base == NULL) in __swsetup()
|
H A D | findfp.c | 145 fp->_bf._base = NULL; /* no buffer */ in __sfp() 150 fp->_ub._base = NULL; /* no ungetc buffer */ in __sfp() 152 fp->_lb._base = NULL; /* no line buffer */ in __sfp()
|
H A D | fgetwln.c | 68 *((wchar_t *)fp->_lb._base + len++) = wc; in fgetwln_l() 81 ret = (wchar_t *)fp->_lb._base; in fgetwln_l()
|
H A D | ftell.c | 97 fp->_p != NULL && fp->_p - fp->_bf._base > 0 && in _ftello() 123 (n = fp->_p - fp->_bf._base) > 0) { in _ftello()
|
H A D | snprintf.c | 69 f._bf._base = f._p = (unsigned char *)str; in snprintf() 98 f._bf._base = f._p = (unsigned char *)str; in snprintf_l()
|
H A D | refill.c | 111 if (fp->_bf._base == NULL) in __srefill() 129 fp->_p = fp->_bf._base; in __srefill()
|
H A D | fread.c | 107 fp->_bf._base = fp->_p = p; in __fread() 120 fp->_bf._base = fp->_p = fp->_nbuf; in __fread()
|
H A D | freopen.c | 171 free((char *)fp->_bf._base); in freopen() 175 fp->_bf._base = NULL; in freopen()
|
H A D | fpurge.c | 58 fp->_p = fp->_bf._base; in fpurge()
|
/freebsd/crypto/libecc/src/examples/sig/common/ |
H A D | common.h | 183 nn r, r_square, _base, one; in _nn_mod_pow_insecure() local 185 r.magic = r_square.magic = _base.magic = one.magic = WORD(0); in _nn_mod_pow_insecure() 209 ret = nn_mod(&_base, base, mod); EG(ret, err); in _nn_mod_pow_insecure() 212 ret = nn_copy(&_base, base); EG(ret, err); in _nn_mod_pow_insecure() 215 ret = nn_mul_redc1(&_base, &_base, &r_square, mod, mpinv); EG(ret, err); in _nn_mod_pow_insecure() 232 ret = nn_mul_redc1(out, out, &_base, mod, mpinv); EG(ret, err); in _nn_mod_pow_insecure() 241 nn_uninit(&_base); in _nn_mod_pow_insecure()
|
/freebsd/contrib/ntp/libntp/lib/isc/include/isc/ |
H A D | buffer.h | 682 #define ISC__BUFFER_INIT(_b, _base, _length) \ argument 688 _u.konst = (_base); \ 793 #define ISC__BUFFER_PUTMEM(_b, _base, _length) \ argument 795 memcpy(isc_buffer_used(_b), (_base), (_length)); \
|
/freebsd/sys/riscv/sifive/ |
H A D | sifive_prci.c | 111 #define PLL(_id, _name, _base) \ argument 115 .reg = (_base), \ 128 #define DIV(_id, _name, _parent_name, _base, _bias) \ argument 133 .reg = (_base), \ 146 #define GATE(_id, _name, _parent_name, _base) \ argument 151 .reg = (_base), \
|
/freebsd/sys/dev/sfxge/common/ |
H A D | efx_types.h | 1321 #define EFX_SHIFT64(_bit, _base) \ argument 1322 (((_bit) >= (_base) && (_bit) < (_base) + 64) ? \ 1323 ((uint64_t)1 << EFX_SSUB((_bit), (_base))) : \ 1326 #define EFX_SHIFT32(_bit, _base) \ argument 1327 (((_bit) >= (_base) && (_bit) < (_base) + 32) ? \ 1328 ((uint32_t)1 << EFX_SSUB((_bit),(_base))) : \ 1331 #define EFX_SHIFT16(_bit, _base) \ argument 1332 (((_bit) >= (_base) && (_bit) < (_base) + 16) ? \ 1333 (uint16_t)(1 << EFX_SSUB((_bit), (_base))) : \ 1336 #define EFX_SHIFT8(_bit, _base) \ argument [all …]
|
/freebsd/sys/dev/bhnd/bcma/ |
H A D | bcma_dmp.h | 136 #define BCMA_DMP_OOBSEL(_base, _bank, _sel) \ argument 137 (_base + (_bank * 8) + (_sel >= 4 ? 4 : 0))
|
/freebsd/contrib/elftoolchain/libelf/ |
H A D | _libelf_ar.h | 55 unsigned int _base, size_t *_ret);
|
/freebsd/lib/libsysdecode/ |
H A D | sysdecode.h | 52 void sysdecode_fcntl_arg(FILE *_fp, int _cmd, uintptr_t _arg, int _base); 66 int _base);
|