/openbsd/sys/sys/ |
H A D | _endian.h | 108 #define __bemtoh16(_x) __mswap16(_x) argument 109 #define __bemtoh32(_x) __mswap32(_x) argument 110 #define __bemtoh64(_x) __mswap64(_x) argument 112 #define __htobem16(_x, _v) __swapm16((_x), (_v)) argument 113 #define __htobem32(_x, _v) __swapm32((_x), (_v)) argument 114 #define __htobem64(_x, _v) __swapm64((_x), (_v)) argument 135 #define __lemtoh16(_x) __mswap16(_x) argument 136 #define __lemtoh32(_x) __mswap32(_x) argument 137 #define __lemtoh64(_x) __mswap64(_x) argument 139 #define __htolem16(_x, _v) __swapm16((_x), (_v)) argument [all …]
|
/openbsd/regress/lib/libm/msun/ |
H A D | test-utils.h | 153 long double _x = x; \ 155 ATF_CHECK_MSG(fpequal_cs(_x, _y, checksign), \ 160 long double _x = x; \ 162 bool eq = fpequal_tol(_x, _y, tol, flags); \ 163 long double _diff = eq ? 0.0L : fabsl(_x - _y); \ 165 #x, _x, #y, _y, _diff, fabsl(_y * tol)); \ 180 long double _x = x; in cfpequal_cs() local 189 long double _x = x; \ 195 #x, creall(_x), cimagl(_x), #y, creall(_y), cimagl(_y)); \ 199 long double _x = x; \ [all …]
|
/openbsd/regress/lib/libpthread/include/ |
H A D | test.h | 83 int _x; \ 84 _x = (x); \ 85 if (!(_x rhs)) { \ 86 if (_x > 0) \ 91 "%s [=%d] %s", #x, _x, #rhs); \ 98 typeof(x) _x; \ 99 _x = (x); \ 100 if (!(_x rhs)) \ 102 ((_T(0) == _T(_x) )? "failed check %s (=%d) %s " : \ 106 , #x, _x, #rhs); \ [all …]
|
/openbsd/sys/dev/usb/dwc2/ |
H A D | dwc2_hw.h | 127 #define GUSBCFG_TOUTCAL(_x) ((_x) << 0) argument 136 #define GRSTCTL_TXFNUM(_x) ((_x) << 6) argument 455 #define DCFG_EPMISCNT(_x) ((_x) << 18) argument 460 #define DCFG_PERFRINT(_x) ((_x) << 11) argument 464 #define DCFG_DEVADDR(_x) ((_x) << 4) argument 491 #define DSTS_SOFFN(_x) ((_x) << 8) argument 528 #define DAINT_INEP(_x) (1 << (_x)) argument 568 #define DXEPCTL_TXFNUM(_x) ((_x) << 22) argument 584 #define DXEPCTL_NEXTEP(_x) ((_x) << 11) argument 588 #define DXEPCTL_MPS(_x) ((_x) << 0) argument [all …]
|
/openbsd/sys/arch/sh/include/ |
H A D | endian.h | 14 __swap16md(__uint16_t _x) in __swap16md() argument 18 __asm volatile ("swap.b %1,%0" : "=r"(_rv) : "r"(_x)); in __swap16md() 24 __swap32md(__uint32_t _x) in __swap32md() argument 29 : "=r"(_rv) : "r"(_x)); in __swap32md() 35 __swap64md(__uint64_t _x) in __swap64md() argument 39 _rv = (__uint64_t)__swap32md((__uint32_t)(_x >> 32)) | in __swap64md() 40 (__uint64_t)__swap32md((__uint32_t)_x) << 32; in __swap64md()
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/ |
H A D | nested1.C | 11 Y (T2 _x) { x=_x; } in Y() 24 Y (int _x) { x=_x; } 37 Y (int _x) { x=_x; }
|
/openbsd/usr.bin/bgplg/ |
H A D | bgplgsh.c | 63 #define allowed_in_string(_x) \ in lg_checkarg() argument 64 ((isalnum((unsigned char)_x) || isprint((unsigned char)_x)) && \ in lg_checkarg() 65 (_x != '%' && _x != '\\' && _x != ';' && _x != '&' && _x != '|')) in lg_checkarg()
|
H A D | bgplg.c | 114 #define allowed_in_string(_x) \ in lg_getenv() argument 115 (isalnum((unsigned char)_x) || strchr("-_.:/= ", _x)) in lg_getenv()
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/ |
H A D | overload7.C | 17 Casted ( int _x , double _y ): y(_y) in Casted() argument 19 x.first = _x; in Casted() 20 x.second = _x*2; in Casted()
|
/openbsd/gnu/gcc/gcc/config/soft-fp/ |
H A D | op-2.h | 334 _FP_W_TYPE _x[2], _y[2]; \ 335 _x[0] = X##_f0; _x[1] = X##_f1; \ 338 mpn_mul_n(_z_f, _x, _y, 2); \ 518 _FP_W_TYPE _x[4], _y[2], _z[4]; \ 520 _x[0] = _x[3] = 0; \ 524 _x[1] = (X##_f0 << (_FP_WFRACBITS_##fs-1 - _FP_W_TYPE_SIZE) | \ 527 _x[2] = X##_f1 << (_FP_WFRACBITS_##fs-1 - _FP_W_TYPE_SIZE); \ 531 _x[1] = (X##_f0 << (_FP_WFRACBITS_##fs - _FP_W_TYPE_SIZE) | \ 534 _x[2] = X##_f1 << (_FP_WFRACBITS_##fs - _FP_W_TYPE_SIZE); \ 537 (void) mpn_divrem (_z, 0, _x, 4, _y, 2); \ [all …]
|
/openbsd/sys/dev/pci/drm/i915/gt/uc/ |
H A D | intel_guc_log.h | 29 typeof(x) _x = (x); \ 30 GUC_LOG_LEVEL_IS_VERBOSE(_x) ? _x - 2 : 0; \
|
/openbsd/lib/libelf/ |
H A D | libelf_convert.m4 | 539 _t <<= 8U; _x >>= 8U; _t |= _x & 0xFFU; \ 545 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \ 546 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \ 547 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \ 557 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \ 558 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \ 559 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \ 560 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \ 561 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \ 562 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \ [all …]
|
/openbsd/sys/dev/pci/drm/i915/gt/ |
H A D | intel_gsc.h | 19 #define GSC_IRQ_INTF(_x) BIT(15 - (_x)) argument
|
/openbsd/regress/lib/libpthread/barrier/ |
H A D | barrier.c | 31 _CHECK(i, == PTHREAD_PROCESS_PRIVATE, strerror(_x)); in main() 33 _CHECK(pthread_barrierattr_setpshared(&attr, PTHREAD_PROCESS_SHARED), == ENOTSUP, strerror(_x)); in main()
|
/openbsd/usr.sbin/radiusd/ |
H A D | eap2mschap_local.h | 172 #define nitems(_x) (sizeof((_x)) / sizeof((_x)[0])) argument
|
H A D | radiusd_local.h | 157 #define nitems(_x) (sizeof((_x)) / sizeof((_x)[0])) argument
|
/openbsd/usr.sbin/mrouted/ |
H A D | prune.h | 132 u_int32_t _x = ntohl(x); \ 134 while ((_x) <<= 1) \
|
/openbsd/sys/scsi/ |
H A D | scsi_all.h | 506 #define VALID_MODE_HDR(_x) ((_x)->data_length >= 3) argument 517 #define VALID_MODE_HDR_BIG(_x) (_2btol((_x)->data_length) >= 6) argument
|
/openbsd/sys/arch/amd64/amd64/ |
H A D | efifb.c | 234 #define bmnum(_x) (fls(_x) - ffs(_x) + 1) in efifb_rasops_init() argument 235 #define bmpos(_x) (ffs(_x) - 1) in efifb_rasops_init() argument
|
/openbsd/sys/dev/ic/ |
H A D | silireg.h | 85 #define SILI_PREG_PCS_ACTIVE(_x) (((_x)>>16) & 0x1f) /* Active Slot */ argument
|
/openbsd/usr.sbin/sysmerge/ |
H A D | sysmerge.sh | 63 local _e _x _set 66 [[ -f /var/sysmerge/xetc.tgz ]] && _x=xetc 67 [[ -z ${_e}${_x} ]] && sm_error "cannot find sets to extract" 69 for _set in ${_e} ${_x}; do
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/ |
H A D | cond4.C | 8 double _x, _y;
|
/openbsd/gnu/gcc/libgomp/ |
H A D | omp.h.in | 39 unsigned char _x[@OMP_LOCK_SIZE@] member 45 unsigned char _x[@OMP_NEST_LOCK_SIZE@] member
|
/openbsd/regress/lib/libpthread/spinlock/ |
H A D | spinlock.c | 37 strerror(_x)); in main()
|
/openbsd/usr.sbin/iscsid/ |
H A D | pdu.c | 39 #define PDU_MIN(_x, _y) ((_x) < (_y) ? (_x) : (_y)) argument
|