Home
last modified time | relevance | path

Searched refs:_exp (Results 1 – 11 of 11) sorted by relevance

/freebsd/sys/dev/vmware/vmci/
H A Dvmci_kernel_defs.h20 #define LIKELY(_exp) __predict_true(_exp) argument
21 #define UNLIKELY(_exp) __predict_false(_exp) argument
/freebsd/sys/sys/
H A Dkassert.h81 const char *_exp = #exp; \
83 _exp, __FILE__, __LINE__, __func__)); \
86 const char *_exp = #exp; \
88 _exp, __FILE__, __LINE__, __func__)); \
H A Dtime.h106 bintime_shift(struct bintime *_bt, int _exp) in bintime_shift() argument
109 if (_exp > 0) { in bintime_shift()
110 _bt->sec <<= _exp; in bintime_shift()
111 _bt->sec |= _bt->frac >> (64 - _exp); in bintime_shift()
112 _bt->frac <<= _exp; in bintime_shift()
113 } else if (_exp < 0) { in bintime_shift()
114 _bt->frac >>= -_exp; in bintime_shift()
115 _bt->frac |= (uint64_t)_bt->sec << (64 + _exp); in bintime_shift()
116 _bt->sec >>= -_exp; in bintime_shift()
/freebsd/crypto/openssh/regress/
H A Dservcfginclude.sh85 _exp="$2"
88 trace "$_desc host=$_host expect=$_exp"
91 fatal "ssh config parse failed: $_desc host=$_host expect=$_exp"
93 if test "x$_exp" != "x$_got" ; then
94 fail "$desc_ host $_host include fail: expected $_exp got $_got"
H A Dcfginclude.sh88 _exp="$2"
92 if test "x$_exp" != "x$_got" ; then
93 fail "host $_host include fail: expected $_exp got $_got"
229 _exp="$2"
233 if test "x$_exp" != "x$_got" ; then
234 fail "host $_host include fail: expected $_exp got $_got"
/freebsd/tools/test/netfibs/
H A Dreflector.sh77 local _rc _exp _testno _testname _msg _r
79 _exp=$2
85 if test ${_rc} -eq ${_exp}; then
H A Dinitiator.sh68 local _rc _exp _testno _testname _msg _r
70 _exp=$2
76 if test ${_rc} -eq ${_exp}; then
79 echo "${_r} ${_testno} ${_testname} # ${_msg} ${_rc} ${_exp}"
H A Dforwarding.sh98 local _rc _exp _testno _testname _msg _r
100 _exp=$2
106 if test ${_rc} -eq ${_exp}; then
109 echo "${_r} ${_testno} ${_testname} # ${_msg} ${_rc} ${_exp}"
/freebsd/sys/dev/sfxge/common/
H A Defsys.h1135 #define EFSYS_ASSERT(_exp) do { \ argument
1136 if (!(_exp)) \
1137 panic("%s", #_exp); \
/freebsd/sys/dev/virtio/
H A Dvirtqueue.c107 #define VQASSERT(_vq, _exp, _msg, ...) \ argument
108 KASSERT((_exp),("%s: %s - "_msg, __func__, (_vq)->vq_name, \
/freebsd/lib/libc/gen/
H A D_pthread_stubs.c147 #define FUNC_EXP(name) __CONCAT(name, _exp)