/src/common/include/ppath/ |
ppath_impl.h | 8 #define ppath_assert(__x) KASSERT(__x) 14 #define ppath_assert(__x) assert(__x)
|
/src/sys/arch/vax/include/ |
math.h | 15 static __inline int __isinf(double __x __unused) { return 0; } 16 static __inline int __isnan(double __x __unused) { return 0; }
|
/src/sys/crypto/arch/arm/ |
arm_neon.h | 125 vdupq_n_s32(int32_t __x) 127 return (int32x4_t) { __x, __x, __x, __x }; 132 vdupq_n_u32(uint32_t __x) 134 return (uint32x4_t) { __x, __x, __x, __x }; [all...] |
/src/sys/dev/pci/ |
if_mskvar.h | 144 int __x, __n; \ 146 __x = (x); \ 150 if ((__x + __n) > MSK_TX_RING_CNT) { \ 152 (sc)->sk_ring_map, MSK_CDTXOFF(__x), \ 153 sizeof(struct msk_tx_desc) * (MSK_TX_RING_CNT - __x), \ 155 __n -= (MSK_TX_RING_CNT - __x); \ 156 __x = 0; \ 161 MSK_CDTXOFF((__x)), sizeof(struct msk_tx_desc) * __n, (ops)); \
|
if_skvar.h | 147 int __x, __n; \ 149 __x = (x); \ 153 if ((__x + __n) > SK_TX_RING_CNT) { \ 155 (sc)->sk_ring_map, SK_CDTXOFF(__x), \ 156 sizeof(struct sk_tx_desc) * (SK_TX_RING_CNT - __x),\ 158 __n -= (SK_TX_RING_CNT - __x); \ 159 __x = 0; \ 164 SK_CDTXOFF((__x)), sizeof(struct sk_tx_desc) * __n, (ops)); \
|
if_casvar.h | 230 int __x, __n; \ 232 __x = (x); \ 236 if ((__x + __n) > CAS_NTXDESC) { \ 238 CAS_CDTXOFF(__x), sizeof(struct cas_desc) * \ 239 (CAS_NTXDESC - __x), (ops)); \ 240 __n -= (CAS_NTXDESC - __x); \ 241 __x = 0; \ 246 CAS_CDTXOFF(__x), sizeof(struct cas_desc) * __n, (ops)); \
|
if_tireg.h | 1180 int __x, __n; \ 1182 __x = (x); \ 1186 if ((__x + __n) > TI_TX_RING_CNT) { \ 1188 TI_CDTXOFF(__x), sizeof(struct ti_tx_desc) * \ 1189 (TI_TX_RING_CNT - __x), (ops)); \ 1190 __n -= (TI_TX_RING_CNT - __x); \ 1191 __x = 0; \ 1196 TI_CDTXOFF(__x), sizeof(struct ti_tx_desc) * (__n), (ops)); \
|
/src/include/ |
math.h | 308 #define fpclassify(__x) __fpmacro_unary_floating(fpclassify, __x) 311 #define isfinite(__x) __fpmacro_unary_floating(isfinite, __x) 314 #define isnormal(__x) (fpclassify(__x) == FP_NORMAL) 317 #define signbit(__x) __fpmacro_unary_floating(signbit, __x) 503 #define isinf(__x) __isinf(__x) [all...] |
/src/sys/arch/sgimips/hpc/ |
sqvar.h | 166 SQ_CDTXSYNC(struct sq_softc *sc, int __x, int __n, int ops) 169 if ((__x + __n) > SQ_NTXDESC) { 171 SQ_CDTXOFF(__x), sizeof(struct hpc_dma_desc) * 172 (SQ_NTXDESC - __x), (ops)); 173 __n -= (SQ_NTXDESC - __x); 174 __x = 0; 179 SQ_CDTXOFF(__x), sizeof(struct hpc_dma_desc) * __n, (ops));
|
/src/sys/arch/i386/pci/ |
geode.c | 82 #define GEODE_DPRINTF(__x) printf __x 84 #define GEODE_DPRINTF(__x) /* nothing */
|
geodewdg.c | 81 #define GEODE_DPRINTF(__x) printf __x 83 #define GEODE_DPRINTF(__x) /* nothing */
|
/src/sys/arch/mips/atheros/dev/ |
aevar.h | 213 int __x, __n; \ 215 __x = (x); \ 219 if ((__x + __n) > AE_NTXDESC) { \ 221 AE_CDTXOFF(__x), sizeof(struct ae_desc) * \ 222 (AE_NTXDESC - __x), (ops)); \ 223 __n -= (AE_NTXDESC - __x); \ 224 __x = 0; \ 229 AE_CDTXOFF(__x), sizeof(struct ae_desc) * __n, (ops)); \
|
/src/sys/dev/ic/ |
gemvar.h | 252 int __x, __n; \ 254 __x = (x); \ 258 if ((__x + __n) > GEM_NTXDESC) { \ 260 GEM_CDTXOFF(__x), sizeof(struct gem_desc) * \ 261 (GEM_NTXDESC - __x), (ops)); \ 262 __n -= (GEM_NTXDESC - __x); \ 263 __x = 0; \ 268 GEM_CDTXOFF(__x), sizeof(struct gem_desc) * __n, (ops)); \
|
atwvar.h | 372 int __x, __n; \ 374 __x = (x); \ 378 if ((__x + __n) > ATW_NTXDESC) { \ 380 ATW_CDTXOFF(__x), sizeof(struct atw_txdesc) * \ 381 (ATW_NTXDESC - __x), (ops)); \ 382 __n -= (ATW_NTXDESC - __x); \ 383 __x = 0; \ 388 ATW_CDTXOFF(__x), sizeof(struct atw_txdesc) * __n, (ops)); \
|
tulipvar.h | 492 int __x, __n; \ 494 __x = (x); \ 498 if ((__x + __n) > TULIP_NTXDESC) { \ 500 TULIP_CDTXOFF(__x), sizeof(struct tulip_desc) * \ 501 (TULIP_NTXDESC - __x), (ops)); \ 502 __n -= (TULIP_NTXDESC - __x); \ 503 __x = 0; \ 508 TULIP_CDTXOFF(__x), sizeof(struct tulip_desc) * __n, (ops)); \
|
rtwvar.h | 66 #define RTW_DPRINTF(__flags, __x) \ 67 if ((rtw_debug & (__flags)) != 0) printf __x 68 #define DPRINTF(__sc, __flags, __x) \ 70 RTW_DPRINTF(__flags, __x) 74 #define RTW_DPRINTF(__flags, __x) 75 #define DPRINTF(__sc, __flags, __x)
|
/src/sys/sys/ |
cdefs.h | 644 #define __alignof(__t) (sizeof(struct { char __x; __t __y; }) - sizeof(__t)) 649 * __x. 651 #define __arraycount(__x) (sizeof(__x) / sizeof(__x[0])) 683 #define __SHIFTOUT(__x, __mask) (((__x) & (__mask)) / __LOWEST_SET_BIT(__mask)) 684 #define __SHIFTIN(__x, __mask) ((__x) * __LOWEST_SET_BIT(__mask))
|
/src/sys/arch/macppc/stand/bootxx/ |
bootxx.c | 309 #define putc(x) do { char __x = (x) ; putstrn(&__x, 1); } while (0)
|
/src/sys/arch/arm/include/ |
asm.h | 86 #define __SHIFTOUT(__x, __mask) (((__x) & (__mask)) / __LOWEST_SET_BIT(__mask)) 87 #define __SHIFTIN(__x, __mask) ((__x) * __LOWEST_SET_BIT(__mask))
|
/src/usr.sbin/makefs/ |
cd9660.h | 62 #define INODE_WARNX(__x) warnx __x 64 #define INODE_WARNX(__x)
|
/src/sys/external/bsd/drm2/dist/drm/i915/gt/ |
intel_gtt.h | 197 ({ type __x = (type)__UNCONST(x); expr; }), \ 201 __px_choose_expr(px, struct i915_page_dma *, __x, \ 202 __px_choose_expr(px, struct i915_page_scratch *, &__x->base, \ 203 __px_choose_expr(px, struct i915_page_table *, &__x->base, \ 204 __px_choose_expr(px, struct i915_page_directory *, &__x->pt.base, \ 213 __px_choose_expr(px, struct i915_page_table *, __x, \ 214 __px_choose_expr(px, struct i915_page_directory *, &__x->pt, \
|
/src/sys/dev/cardbus/ |
if_atw_cardbus.c | 167 #define FUNCREG(__x) {#__x, (__x)}
|
/src/sys/arch/ews4800mips/sbd/ |
kbms_sbdio.c | 497 static int k, __x, __y; local in function:mouse_debug_print 501 __x = MINMAX(__x + x, 0, FB_WIDTH); 503 *(uint8_t *)(fb.fb_addr + __x + __y * FB_LINEBYTES) = 0xff;
|
/src/usr.bin/mkubootimage/ |
mkubootimage.c | 57 #define __arraycount(__x) (sizeof(__x) / sizeof(__x[0]))
|
/src/sys/arch/mips/include/ |
asm.h | 70 #define __SHIFTOUT(__x, __mask) (((__x) & (__mask)) / __LOWEST_SET_BIT(__mask)) 71 #define __SHIFTIN(__x, __mask) ((__x) * __LOWEST_SET_BIT(__mask))
|