Searched refs:_r (Results 1 - 25 of 108) sorted by relevance

12345

/netbsd-current/external/bsd/ntp/dist/lib/isc/include/isc/
H A Dregion.h60 isc_region_t *_r = (r); \
62 INSIST(_r->length >= _l); \
63 _r->base += _l; \
64 _r->length -= _l; \
69 isc_textregion_t *_r = (r); \
71 INSIST(_r->length >= _l); \
72 _r->base += _l; \
73 _r->length -= _l; \
78 isc_constregion_t *_r = (r); \
80 INSIST(_r
[all...]
H A Dbuffer.h713 #define ISC__BUFFER_REGION(_b, _r) \
715 (_r)->base = (_b)->base; \
716 (_r)->length = (_b)->length; \
719 #define ISC__BUFFER_USEDREGION(_b, _r) \
721 (_r)->base = (_b)->base; \
722 (_r)->length = (_b)->used; \
725 #define ISC__BUFFER_AVAILABLEREGION(_b, _r) \
727 (_r)->base = isc_buffer_used(_b); \
728 (_r)->length = isc_buffer_availablelength(_b); \
752 #define ISC__BUFFER_CONSUMEDREGION(_b, _r) \
[all...]
/netbsd-current/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
H A Dregion.h55 isc_region_t *_r = (r); \
57 INSIST(_r->length >= _l); \
58 _r->base += _l; \
59 _r->length -= _l; \
64 isc_textregion_t *_r = (r); \
66 INSIST(_r->length >= _l); \
67 _r->base += _l; \
68 _r->length -= _l; \
73 isc_constregion_t *_r = (r); \
75 INSIST(_r
[all...]
H A Dbuffer.h828 #define ISC__BUFFER_REGION(_b, _r) \
831 ISC_REQUIRE((_r) != NULL); \
832 (_r)->base = (_b)->base; \
833 (_r)->length = (_b)->length; \
836 #define ISC__BUFFER_USEDREGION(_b, _r) \
839 ISC_REQUIRE((_r) != NULL); \
840 (_r)->base = (_b)->base; \
841 (_r)->length = (_b)->used; \
844 #define ISC__BUFFER_AVAILABLEREGION(_b, _r) \
847 ISC_REQUIRE((_r) !
[all...]
/netbsd-current/external/mpl/bind/dist/lib/isc/include/isc/
H A Dregion.h54 isc_region_t *_r = (r); \
56 INSIST(_r->length >= _l); \
57 _r->base += _l; \
58 _r->length -= _l; \
63 isc_textregion_t *_r = (r); \
65 INSIST(_r->length >= _l); \
66 _r->base += _l; \
67 _r->length -= _l; \
72 isc_constregion_t *_r = (r); \
74 INSIST(_r
[all...]
/netbsd-current/sys/arch/arm/include/
H A Dptrace.h66 #define PTRACE_REG_PC(_r) (_r)->r_pc
67 #define PTRACE_REG_FP(_r) (_r)->r[11]
68 #define PTRACE_REG_SET_PC(_r, _v) (_r)->r_pc = (_v)
69 #define PTRACE_REG_SP(_r) (_r)->r_sp
70 #define PTRACE_REG_INTRV(_r) (_r)
[all...]
/netbsd-current/sys/external/mit/xen-include-public/dist/xen/include/public/io/
H A Dring.h178 #define FRONT_RING_INIT(_r, _s, __size) do { \
179 (_r)->req_prod_pvt = 0; \
180 (_r)->rsp_cons = 0; \
181 (_r)->nr_ents = __RING_SIZE(_s, __size); \
182 (_r)->sring = (_s); \
185 #define BACK_RING_INIT(_r, _s, __size) do { \
186 (_r)->rsp_prod_pvt = 0; \
187 (_r)->req_cons = 0; \
188 (_r)->nr_ents = __RING_SIZE(_s, __size); \
189 (_r)
[all...]
/netbsd-current/external/lgpl3/mpfr/dist/src/
H A Dinvsqrt_limb.h311 mp_limb_t _u, _invs, _r, _h, _l; \
315 _r = _h + _u; \
316 /* make sure _r has its most significant bit set */ \
317 if (MPFR_UNLIKELY(_r < MPFR_LIMB_HIGHBIT)) \
318 _r = MPFR_LIMB_HIGHBIT; \
319 /* we know _r <= sqrt(2^64*u) <= _r + 16 */ \
320 umul_ppmm (_h, _l, _r, _r); \
322 /* now h:l <= 30*_r */ \
[all...]
/netbsd-current/lib/libc/stdio/
H A Dfgetwc.c60 if (fp->_r <= 0) {
66 (size_t)fp->_r, &wcio->wcio_mbstate_in);
71 fp->_p += fp->_r;
72 fp->_r = 0;
78 --fp->_r;
83 _DIAGASSERT(__type_fit(int, fp->_r - nr));
84 fp->_r -= (int)nr;
H A Dfread.c103 p += fp->_r;
104 resid -= fp->_r;
110 fp->_r = 0;
116 if (fp->_r <= 0) {
121 while (resid > (size_t)(r = fp->_r)) {
124 /* fp->_r = 0 ... done in __srefill */
136 _DIAGASSERT(__type_fit(int, fp->_r - resid));
137 fp->_r -= (int)resid;
H A Drefill.c80 fp->_r = 0; /* largely a convenience for callers */
111 if ((fp->_r = fp->_ur) != 0) {
132 fp->_r = (int)(*fp->_read)(fp->_cookie, (char *)fp->_p,
135 if (fp->_r <= 0) {
136 if (fp->_r == 0)
139 fp->_r = 0;
H A Dfgets.c77 if (fp->_r <= 0) {
87 len = fp->_r;
115 fp->_r -= len;
122 fp->_r -= len;
H A Drget.c63 fp->_r--;
H A Dungetc.c131 if (fp->_r >= _UB(fp)._size && __submore(fp)) {
136 fp->_r++;
150 fp->_r++;
159 fp->_ur = fp->_r;
165 fp->_r = 1;
H A Dvfscanf.c151 while ((fp->_r > 0 || __srefill(fp) == 0) && isspace_l(*fp->_p, loc)) \
152 nread++, fp->_r--, fp->_p++; \
197 while ((fp->_r > 0 || __srefill(fp) == 0) &&
199 nread++, fp->_r--, fp->_p++;
215 if (fp->_r <= 0 && __srefill(fp))
219 fp->_r--, fp->_p++;
364 if (fp->_r <= 0 && __srefill(fp))
374 if (--fp->_r > 0)
408 fp->_r--;
425 if (fp->_r <
[all...]
H A Dfseeko.c111 curoff -= fp->_r;
188 curoff -= fp->_r;
200 curoff += fp->_r; /* kill off ungetc */
207 n += fp->_r;
222 fp->_r = (int)(n - o);
241 fp->_r = 0;
248 if (__srefill(fp) || (size_t)fp->_r < n)
251 _DIAGASSERT(__type_fit(int, fp->_r - n));
252 fp->_r -= (int)n;
271 fp->_r
[all...]
H A Dfpurge.c71 fp->_r = 0;
H A Dgetdelim.c79 if (fp->_r <= 0 && __srefill(fp)) {
87 p = memchr(fp->_p, sep, (size_t)fp->_r);
89 len = fp->_r;
125 /* Safe, len is never greater than what fp->_r can fit. */
126 fp->_r -= (int)len;
H A Dfclose.c75 fp->_r = fp->_w = 0; /* Mess up if reaccessed. */
/netbsd-current/sys/arch/arm/pci/
H A Dpci_smccc.h32 #define PCI_SMCCC_SUCCESS(_r) (((_r) & 0x80000000) == 0)
/netbsd-current/external/lgpl3/mpfr/dist/tests/
H A Dmpfr-test.h153 #define RND_LOOP(_r) for((_r) = 0 ; (_r) < MPFR_RND_MAX ; (_r)++)
157 #define RND_LOOP_NO_RNDF(_r) for((_r) = 0 ; (_r) < MPFR_RNDF ; (_r)++)
/netbsd-current/sys/arch/evbsh3/t_sh7706lan/
H A Dscimci.c105 uint8_t _r; \
106 _r = _reg_read_1((reg)); \
107 _r &= ~(mask); \
108 _r |= (set); \
109 _reg_write_1((reg), _r); \
114 uint16_t _r; \
115 _r = _reg_read_2((reg)); \
116 _r &= ~(mask); \
117 _r |= (set); \
118 _reg_write_2((reg), _r); \
[all...]
H A Dssumci.c107 uint8_t _r; \
108 _r = _reg_read_1((reg)); \
109 _r &= ~(mask); \
110 _r |= (set); \
111 _reg_write_1((reg), _r); \
116 uint16_t _r; \
117 _r = _reg_read_2((reg)); \
118 _r &= ~(mask); \
119 _r |= (set); \
120 _reg_write_2((reg), _r); \
[all...]
/netbsd-current/sys/dev/ic/
H A Dnvmereg.h28 #define NVME_CAP_MPSMAX(_r) (12 + (((_r) >> 52) & 0xf)) /* shift */
29 #define NVME_CAP_MPSMIN(_r) (12 + (((_r) >> 48) & 0xf)) /* shift */
30 #define NVME_CAP_CSS(_r) (((_r) >> 37) & 0x7f)
32 #define NVME_CAP_NSSRS(_r) ISSET((_r), __BIT(36))
33 #define NVME_CAP_DSTRD(_r) __BIT(2 + (((_r) >> 3
[all...]
/netbsd-current/external/lgpl3/gmp/dist/mpn/sparc64/
H A Dsparc64.h195 unsigned _n2, _n10, _n1, _nadj, _q11n, _xh, _r, _q; \
211 _r = _x + (d_limb & _xh); /* addback */ \
213 ASSERT (_r < d_limb); \
214 ASSERT (d_limb * _q + _r == _n); \
215 (r) = _r; \

Completed in 746 milliseconds

12345