Searched refs:_x (Results 1 - 25 of 51) sorted by relevance

123

/freebsd-10.0-release/sys/ofed/include/linux/
H A Duaccess.h31 #define get_user(_x, _p) -copyin((_p), &(_x), sizeof(*(_p)))
32 #define put_user(_x, _p) -copyout(&(_x), (_p), sizeof(*(_p)))
H A Dkernel.h139 #define min_t(type, _x, _y) (type)(_x) < (type)(_y) ? (type)(_x) : (_y)
140 #define max_t(type, _x, _y) (type)(_x) > (type)(_y) ? (type)(_x) : (_y)
/freebsd-10.0-release/sys/xen/interface/hvm/
H A Dsave.h65 # define DECLARE_HVM_SAVE_TYPE_COMPAT(_x, _code, _type, _ctype, _fix) \
66 static inline int __HVM_SAVE_FIX_COMPAT_##_x(void *h) { return _fix(h); } \
67 struct __HVM_SAVE_TYPE_##_x { _type t; char c[_code]; char cpt[2];}; \
68 struct __HVM_SAVE_TYPE_COMPAT_##_x { _ctype t; }
71 # define DECLARE_HVM_SAVE_TYPE(_x, _code, _type) \
72 static inline int __HVM_SAVE_FIX_COMPAT_##_x(void *h) { BUG(); return -1; } \
73 struct __HVM_SAVE_TYPE_##_x { _type t; char c[_code]; char cpt[1];}; \
74 struct __HVM_SAVE_TYPE_COMPAT_##_x { _type t; }
76 # define DECLARE_HVM_SAVE_TYPE_COMPAT(_x, _code, _type, _ctype, _fix) \
77 struct __HVM_SAVE_TYPE_##_x { _typ
[all...]
/freebsd-10.0-release/sys/sparc64/include/
H A Dendian.h88 __bswap16_var(__uint16_t _x) argument
91 return ((_x >> 8) | ((_x << 8) & 0xff00));
95 __bswap32_var(__uint32_t _x) argument
98 return ((_x >> 24) | ((_x >> 8) & 0xff00) | ((_x << 8) & 0xff0000) |
99 ((_x << 24) & 0xff000000));
103 __bswap64_var(__uint64_t _x) argument
106 return ((_x >> 5
[all...]
/freebsd-10.0-release/sys/mips/include/
H A Dendian.h87 __bswap16_var(__uint16_t _x) argument
90 return ((_x >> 8) | ((_x << 8) & 0xff00));
94 __bswap32_var(__uint32_t _x) argument
97 return ((_x >> 24) | ((_x >> 8) & 0xff00) | ((_x << 8) & 0xff0000) |
98 ((_x << 24) & 0xff000000));
102 __bswap64_var(__uint64_t _x) argument
105 return ((_x >> 5
[all...]
/freebsd-10.0-release/sys/powerpc/include/
H A Dendian.h103 __bswap16_var(__uint16_t _x) argument
106 return ((_x >> 8) | ((_x << 8) & 0xff00));
110 __bswap32_var(__uint32_t _x) argument
113 return ((_x >> 24) | ((_x >> 8) & 0xff00) | ((_x << 8) & 0xff0000) |
114 ((_x << 24) & 0xff000000));
118 __bswap64_var(__uint64_t _x) argument
121 return ((_x >> 5
[all...]
/freebsd-10.0-release/sys/ia64/include/
H A Dendian.h70 __bswap64(__uint64_t _x) argument
75 : "=r" (__r) : "r"(_x));
80 __bswap32(__uint32_t _x) argument
83 return (__bswap64(_x) >> 32);
87 __bswap16(__uint16_t _x) argument
90 return (__bswap64(_x) >> 48);
/freebsd-10.0-release/sys/x86/include/
H A Dendian.h92 __bswap16_var(__uint16_t _x) argument
95 return (__bswap16_gen(_x));
99 __bswap32_var(__uint32_t _x) argument
103 __asm("bswap %0" : "+r" (_x));
104 return (_x);
106 return (__bswap32_gen(_x));
111 __bswap64_var(__uint64_t _x) argument
115 __asm("bswap %0" : "+r" (_x));
116 return (_x);
122 return (__bswap64_gen(_x));
[all...]
/freebsd-10.0-release/sys/arm/include/
H A Dendian.h76 __bswap64(__uint64_t _x) argument
79 return ((_x >> 56) | ((_x >> 40) & 0xff00) | ((_x >> 24) & 0xff0000) |
80 ((_x >> 8) & 0xff000000) | ((_x << 8) & ((__uint64_t)0xff << 32)) |
81 ((_x << 24) & ((__uint64_t)0xff << 40)) |
82 ((_x << 40) & ((__uint64_t)0xff << 48)) | ((_x << 56)));
/freebsd-10.0-release/etc/rc.d/
H A Drfcomm_pppd_server23 local _bdaddr _channel _x
52 eval _x=\$rfcomm_pppd_server_${_profile_cleaned}_register_sp
53 if [ -n "${_x}" ]; then
61 eval _x=\$rfcomm_pppd_server_${_profile_cleaned}_register_dun
62 if [ -n "${_x}" ]; then
H A Djail171 eval _x=\"\$jail_${_j}_ip_multi${alias}\"
172 [ -z "$_x" ] && break
174 jail_handle_ips_option $_x $_interface
334 local _x _type _i _defif
335 _x=$1
338 if [ -z "${_x}" ]; then
346 while [ ${#_x} -gt 0 ]; do
347 case "${_x}" in
349 _i=`expr "${_x}" : '^\([^,]*\)'`
350 _x
[all...]
/freebsd-10.0-release/sys/xen/interface/io/
H A Dring.h41 #define __RD2(_x) (((_x) & 0x00000002) ? 0x2 : ((_x) & 0x1))
42 #define __RD4(_x) (((_x) & 0x0000000c) ? __RD2((_x)>>2)<<2 : __RD2(_x))
43 #define __RD8(_x) (((_x) & 0x000000f0) ? __RD4((_x)>>
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A Dsystem_error.h719 inline bool operator<(const error_condition& _x, const error_condition& _y) { argument
720 return _x.category() < _y.category()
721 || (_x.category() == _y.category() && _x.value() < _y.value());
786 inline bool operator<(const error_code& _x, const error_code& _y) { argument
787 return _x.category() < _y.category()
788 || (_x.category() == _y.category() && _x.value() < _y.value());
791 inline bool operator==(const error_code& _x, const error_code& _y) { argument
792 return _x
795 operator ==(const error_code& _x, const error_condition& _y) argument
800 operator ==(const error_condition& _x, const error_code& _y) argument
804 operator ==(const error_condition& _x, const error_condition& _y) argument
808 operator !=(const error_code& _x, const error_code& _y) argument
812 operator !=(const error_code& _x, const error_condition& _y) argument
816 operator !=(const error_condition& _x, const error_code& _y) argument
820 operator !=(const error_condition& _x, const error_condition& _y) argument
[all...]
/freebsd-10.0-release/lib/libelf/
H A Dlibelf_convert.m448 uint16_t _x = (uint16_t) (X); \
49 uint16_t _t = _x & 0xFF; \
50 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \
54 uint32_t _x = (uint32_t) (X); \
55 uint32_t _t = _x & 0xFF; \
56 _t <<= 8; _x >>= 8; _t |= _x & 0xFF; \
57 _t <<= 8; _x >>= 8; _t |= _x
[all...]
/freebsd-10.0-release/sys/dev/usb/
H A Dusb_core.h47 #define USB_XFER_LOCK(_x) mtx_lock((_x)->xroot->xfer_mtx)
48 #define USB_XFER_UNLOCK(_x) mtx_unlock((_x)->xroot->xfer_mtx)
49 #define USB_XFER_LOCK_ASSERT(_x, _t) mtx_assert((_x)->xroot->xfer_mtx, _t)
/freebsd-10.0-release/contrib/ntp/scripts/monitoring/
H A Dlr.pl58 my($_x, $_y) = @_;
61 $self->{sx} += $_x;
63 $self->{sxy} += $_x * $_y;
64 $self->{sx2} += $_x**2;
/freebsd-10.0-release/include/
H A D_ctype.h160 unsigned int _x; local
164 _x = (unsigned int)__maskrune(_c, _CTYPE_SWM|_CTYPE_R);
165 if ((_x & _CTYPE_SWM) != 0)
166 return ((_x & _CTYPE_SWM) >> _CTYPE_SWS);
167 return ((_x & _CTYPE_R) != 0 ? 1 : -1);
/freebsd-10.0-release/contrib/gcclibs/libgomp/
H A Domp.h.in39 unsigned char _x[@OMP_LOCK_SIZE@]
45 unsigned char _x[@OMP_NEST_LOCK_SIZE@]
/freebsd-10.0-release/sys/dev/sfxge/common/
H A Defx_types.h242 #define __SWAP16(_x) \
243 ((((_x) & 0xff) << 8) | \
244 (((_x) >> 8) & 0xff))
246 #define __SWAP32(_x) \
247 ((__SWAP16((_x) & 0xffff) << 16) | \
248 __SWAP16(((_x) >> 16) & 0xffff))
250 #define __SWAP64(_x) \
251 ((__SWAP32((_x) & 0xffffffff) << 32) | \
252 __SWAP32(((_x) >> 32) & 0xffffffff))
254 #define __NOSWAP16(_x) (_
[all...]
/freebsd-10.0-release/contrib/ntp/libopts/compat/
H A Dwindows-config.h104 #define fchmod( _x, _y );
/freebsd-10.0-release/contrib/ntp/sntp/libopts/compat/
H A Dwindows-config.h104 #define fchmod( _x, _y );
/freebsd-10.0-release/sys/boot/i386/libi386/
H A Dspinconsole.c45 extern void curs_move(int *_x, int *_y, int x, int y);
/freebsd-10.0-release/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300eep.h413 #define SWAP16(_x) ( (u_int16_t)( (((const u_int8_t *)(&_x))[0] ) |\
414 ( ( (const u_int8_t *)( &_x ) )[1]<< 8) ) )
416 #define SWAP32(_x) ((u_int32_t)( \
417 (((const u_int8_t *)(&_x))[0]) | \
418 (((const u_int8_t *)(&_x))[1]<< 8) | \
419 (((const u_int8_t *)(&_x))[2]<<16) | \
420 (((const u_int8_t *)(&_x))[3]<<24)))
425 #define SWAP16(_x) ( (u_int16_t)( (((const u_int8_t *)(&_x))[
[all...]
/freebsd-10.0-release/sys/netinet/
H A Dsctp_uio.h1105 #define SCTP_STAT_INCR(_x) SCTP_STAT_INCR_BY(_x,1)
1106 #define SCTP_STAT_DECR(_x) SCTP_STAT_DECR_BY(_x,1)
1108 #define SCTP_STAT_INCR_BY(_x,_d) (SCTP_BASE_STATS[PCPU_GET(cpuid)]._x += _d)
1109 #define SCTP_STAT_DECR_BY(_x,_d) (SCTP_BASE_STATS[PCPU_GET(cpuid)]._x -= _d)
1111 #define SCTP_STAT_INCR_BY(_x,_d) atomic_add_int(&SCTP_BASE_STAT(_x), _
[all...]
/freebsd-10.0-release/include/xlocale/
H A D_ctype.h164 unsigned int _x; local
168 _x = (unsigned int)__maskrune_l(_c, _CTYPE_SWM|_CTYPE_R, __l);
169 if ((_x & _CTYPE_SWM) != 0)
170 return ((_x & _CTYPE_SWM) >> _CTYPE_SWS);
171 return ((_x & _CTYPE_R) != 0 ? 1 : -1);

Completed in 304 milliseconds

123