Home
last modified time | relevance | path

Searched refs:_x (Results 1 – 25 of 71) sorted by relevance

123

/openbsd/sys/sys/
H A D_endian.h108 #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 Dtest-utils.h153 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 Dtest.h83 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 Ddwc2_hw.h127 #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 Dendian.h14 __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 Dnested1.C11 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 Dbgplgsh.c63 #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 Dbgplg.c114 #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 Doverload7.C17 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 Dop-2.h334 _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 Dintel_guc_log.h29 typeof(x) _x = (x); \
30 GUC_LOG_LEVEL_IS_VERBOSE(_x) ? _x - 2 : 0; \
/openbsd/lib/libelf/
H A Dlibelf_convert.m4539 _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 Dintel_gsc.h19 #define GSC_IRQ_INTF(_x) BIT(15 - (_x)) argument
/openbsd/regress/lib/libpthread/barrier/
H A Dbarrier.c31 _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 Deap2mschap_local.h172 #define nitems(_x) (sizeof((_x)) / sizeof((_x)[0])) argument
H A Dradiusd_local.h157 #define nitems(_x) (sizeof((_x)) / sizeof((_x)[0])) argument
/openbsd/usr.sbin/mrouted/
H A Dprune.h132 u_int32_t _x = ntohl(x); \
134 while ((_x) <<= 1) \
/openbsd/sys/scsi/
H A Dscsi_all.h506 #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 Defifb.c234 #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 Dsilireg.h85 #define SILI_PREG_PCS_ACTIVE(_x) (((_x)>>16) & 0x1f) /* Active Slot */ argument
/openbsd/usr.sbin/sysmerge/
H A Dsysmerge.sh63 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 Dcond4.C8 double _x, _y;
/openbsd/gnu/gcc/libgomp/
H A Domp.h.in39 unsigned char _x[@OMP_LOCK_SIZE@] member
45 unsigned char _x[@OMP_NEST_LOCK_SIZE@] member
/openbsd/regress/lib/libpthread/spinlock/
H A Dspinlock.c37 strerror(_x)); in main()
/openbsd/usr.sbin/iscsid/
H A Dpdu.c39 #define PDU_MIN(_x, _y) ((_x) < (_y) ? (_x) : (_y)) argument

123