Home
last modified time | relevance | path

Searched refs:_v (Results 1 – 25 of 90) sorted by relevance

1234

/freebsd/contrib/bmake/mk/
H A Dmkopt.sh48 _v=${_mov:-${_wov:+no}}
49 _v=${_v:-${_wiv:+yes}}
50 _v=${_v:-$_d}
52 case "$_v" in
54 0|[NnFf]*) _v=no;; # they mean no
55 1|[YyTt]*) _v=yes;; # they mean yes
56 *) _v=$_d;; # ignore bogus value
58 eval "$_mo=$_v"
H A Ddirdeps-options.mk73 .undef _v$o
79 _v$o ?= ${MK_$o.$x}
82 _v$o ?= ${MK_$o}
84 …${DEP_TARGET_SPEC:U${TARGET_SPEC}}: o=$o ${_o$o:UMK_$o}=${_v$o:U} DIRDEPS += ${DIRDEPS.$o.${_v$o:U…
86 DIRDEPS += ${DIRDEPS.$o.${_v$o:U}:U}
97 .undef _v$o
H A Dcompiler.mk27 _v != (${CC} --version) 2> /dev/null | \
30 .if ${_v:Mclang} != ""
32 .elif ${_v:M[Gg][Cc][Cc]} != "" || ${_v:MFoundation*} != "" || ${CC:Ucc:T:M*gcc*} != ""
40 .undef _v
/freebsd/lib/clang/liblldb/
H A DLLDBWrapLua.cpp3879 if (_v) { in _wrap_new_string()
4208 if (_v) { in _wrap_new_SBAddress()
4222 if (_v) { in _wrap_new_SBAddress()
4236 if (_v) { in _wrap_new_SBAddress()
4952 if (_v) { in _wrap_new_SBAttachInfo()
4961 if (_v) { in _wrap_new_SBAttachInfo()
4970 if (_v) { in _wrap_new_SBAttachInfo()
4984 if (_v) { in _wrap_new_SBAttachInfo()
5135 if (_v) { in _wrap_SBAttachInfo_SetExecutable()
5159 if (_v) { in _wrap_SBAttachInfo_SetExecutable()
[all …]
/freebsd/share/mk/
H A Dbsd.linker.mk70 _v= ${_ld_version:M[1-9]*.[0-9]*:[1]}
75 _v= ${_ld_version:[2]}
84 _v= ${_ld_version:[2]:C/PROJECT:(ld64|dyld)-//}
86 .if empty(_v:M[1-9]*.[0-9]*.[0-9]*) && !empty(_v:M[1-9]*.[0-9]*)
87 _v:=${_v}.0
90 _v:=${_v}.0.0
95 _v= 2.17.50
100 .undef _v
H A Ddirdeps-options.mk73 .undef _v$o
79 _v$o ?= ${MK_$o.$x}
82 _v$o ?= ${MK_$o}
84 …${DEP_TARGET_SPEC:U${TARGET_SPEC}}: o=$o ${_o$o:UMK_$o}=${_v$o:U} DIRDEPS += ${DIRDEPS.$o.${_v$o:U…
86 DIRDEPS += ${DIRDEPS.$o.${_v$o:U}:U}
97 .undef _v$o
H A Dbsd.compiler.mk183 _v!= ${${cc}:N${CCACHE_BIN}} --version || echo 0.0.0
190 . elif ${_v:Mgcc}
192 . elif ${_v:M\(GCC\)} || ${_v:M*GNU}
194 . elif ${_v:Mclang} || ${_v:M(clang-*.*.*)}
213 .if !defined(${X_}COMPILER_FEATURES) && ${_v:[*]:M*Apple clang version*}
216 .undef _v
/freebsd/sys/sys/
H A Dsmr_types.h86 __typeof((p)->__ptr) _v = (v); \
87 atomic_store_rel_ptr((uintptr_t *)&(p)->__ptr, (uintptr_t)_v); \
99 __typeof((p)->__ptr) _v = (v); \
103 (uintptr_t *)&(p)->__ptr, (uintptr_t)_v); \
123 __typeof((p)->__ptr) _v = (v); \
124 atomic_store_ptr((uintptr_t *)&(p)->__ptr, (uintptr_t)_v); \
H A Dmutex.h240 uintptr_t _v = MTX_UNOWNED; \
243 !_mtx_obtain_lock_fetch((mp), &_v, _tid))) \
244 _mtx_lock_sleep((mp), _v, (opts), (file), (line)); \
257 uintptr_t _v = MTX_UNOWNED; \
261 !_mtx_obtain_lock_fetch((mp), &_v, _tid))) \
262 _mtx_lock_spin((mp), _v, (opts), (file), (line)); \
311 uintptr_t _v = (uintptr_t)(tid); \
314 !_mtx_release_lock_fetch((mp), &_v))) \
315 _mtx_unlock_sleep((mp), _v, (opts), (file), (line)); \
H A Drwlock.h106 uintptr_t _v = RW_UNLOCKED; \
109 !_rw_write_lock_fetch((rw), &_v, _tid))) \
110 _rw_wlock_hard((rw), _v, (file), (line)); \
116 uintptr_t _v = (uintptr_t)(tid); \
119 !_rw_write_unlock_fetch((rw), &_v))) \
120 _rw_wunlock_hard((rw), _v, (file), (line)); \
/freebsd/sys/dev/ath/ath_hal/
H A Dah_internal.h475 #define ath_hal_enable_rfkill(_ah, _v) \ argument
585 #define SM(_v, _f) (((_v) << _f##_S) & (_f)) argument
586 #define MS(_v, _f) (((_v) & (_f)) >> _f##_S) argument
589 #define OS_REG_RMW_FIELD(_a, _r, _f, _v) \ argument
591 (OS_REG_READ(_a, _r) &~ (_f)) | (((_v) << _f##_S) & (_f)))
598 #define OS_REG_RMW_FIELD_ALT(_a, _r, _f, _v) \ argument
601 (((_v) << _f##_S) & (_f<<_f##_S)))
608 #define OS_A_REG_RMW_FIELD(_a, _r, _f, _v) \ argument
610 (((_v) << _f##_S) & (_f))) ; OS_DELAY(100); } while (0)
611 #define OS_A_REG_WRITE(_a, _r, _v) \ argument
[all …]
/freebsd/tools/tools/ath/athalq/
H A Dar5210_ds.c35 #define MS(_v, _f) ( ((_v) & (_f)) >> _f##_S ) argument
36 #define MF(_v, _f) ( !! ((_v) & (_f))) argument
H A Dar5211_ds.c35 #define MS(_v, _f) ( ((_v) & (_f)) >> _f##_S ) argument
36 #define MF(_v, _f) ( !! ((_v) & (_f))) argument
H A Dar5212_ds.c35 #define MS(_v, _f) ( ((_v) & (_f)) >> _f##_S ) argument
36 #define MF(_v, _f) ( !! ((_v) & (_f))) argument
H A Dar5416_ds.c35 #define MS(_v, _f) ( ((_v) & (_f)) >> _f##_S ) argument
36 #define MF(_v, _f) ( !! ((_v) & (_f))) argument
/freebsd/sys/dev/ath/
H A Dif_athvar.h1221 #define ath_hal_settkipmic(_ah, _v) \ argument
1227 #define ath_hal_settkipsplit(_ah, _v) \ argument
1237 #define ath_hal_setdiversity(_ah, _v) \ argument
1241 #define ath_hal_setantennaswitch(_ah, _v) \ argument
1245 #define ath_hal_setdiag(_ah, _v) \ argument
1261 #define ath_hal_settpscale(_ah, _v) \ argument
1267 #define ath_hal_settpc(_ah, _v) \ argument
1271 #define ath_hal_setmcastkeysearch(_ah, _v) \ argument
1313 #define ath_hal_setintmit(_ah, _v) \ argument
1315 HAL_CAP_INTMIT_ENABLE, _v, NULL)
[all …]
/freebsd/sys/netpfil/ipfilter/netinet/
H A Dip_rules.c35 #define VNET_DEFINE(_t, _v) _t _v argument
36 #define VNET_DECLARE(_t, _v) extern _t _v argument
/freebsd/sys/dev/bhnd/
H A Dbhnd_match.h131 #define BHND_MATCH_CORE_VENDOR(_v) _BHND_SET_MATCH_FIELD(core_vendor, _v) argument
241 #define BHND_MATCH_BOARD_VENDOR(_v) _BHND_SET_MATCH_FIELD(board_vendor, _v) argument
/freebsd/sys/dev/etherswitch/ar40xx/
H A Dar40xx_reg.h24 #define SM(_v, _f) (((_v) << _f##_S) & (_f)) argument
25 #define MS(_v, _f) (((_v) & (_f)) >> _f##_S) argument
/freebsd/sys/contrib/dev/iwlwifi/
H A Diwl-prph.h193 #define SCD_QUEUE_CTX_REG1_VAL(_n, _v) FIELD_PREP(SCD_QUEUE_CTX_REG1_ ## _n, _v) argument
197 #define SCD_QUEUE_CTX_REG2_VAL(_n, _v) FIELD_PREP(SCD_QUEUE_CTX_REG2_ ## _n, _v) argument
/freebsd/usr.sbin/fwget/pci/
H A Dpci62 local _c _v
64 _v=$2
68 case ${_v} in
73 case ${_v} in
/freebsd/sys/dev/etherswitch/arswitch/
H A Darswitchreg.h38 #define SM(_v, _f) (((_v) << _f##_S) & (_f)) argument
39 #define MS(_v, _f) (((_v) & (_f)) >> _f##_S) argument
/freebsd/sys/arm/allwinner/
H A Daw_ts.c45 #define WRITE(_sc, _r, _v) bus_write_4((_sc)->res[0], (_r), (_v)) argument
/freebsd/sys/dev/uart/
H A Duart_dev_imx.h199 #define FLD(_r, _v) IMXUART_ ## _r ## _ ## _v argument
/freebsd/sbin/ifconfig/
H A Difieee80211.c142 #define _IEEE80211_MASKSHIFT(_v, _f) (((_v) & _f) >> _f##_S) argument
145 #define _IEEE80211_SHIFTMASK(_v, _f) (((_v) << _f##_S) & _f) argument
1549 #define _APPLY(_flags, _base, _param, _v) do { \ argument
1571 _base.params[IEEE80211_MODE_11A]._param = _v; \
1573 _base.params[IEEE80211_MODE_11G]._param = _v; \
1575 _base.params[IEEE80211_MODE_11B]._param = _v; \
1581 #define _APPLY1(_flags, _base, _param, _v) do { \ argument
1606 (_v) = (_v / 2) | IEEE80211_RATE_MCS; \
1608 _APPLY(_flags, _base, _param, _v); \
1612 (_v) = (_v / 2) | IEEE80211_RATE_MCS; \
[all …]

1234