Home
last modified time | relevance | path

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

1234

/freebsd-14-stable/contrib/bmake/mk/
HDmkopt.sh46 _v=${_mov:-${_wov:+no}}
47 _v=${_v:-${_wiv:+yes}}
48 _v=${_v:-$_d}
50 case "$_v" in
52 0|[NnFf]*) _v=no;; # they mean no
53 1|[YyTt]*) _v=yes;; # they mean yes
54 *) _v=$_d;; # ignore bogus value
56 eval "$_mo=$_v"
HDdirdeps-options.mk71 .undef _v$o
77 _v$o ?= ${MK_$o.$x}
80 _v$o ?= ${MK_$o}
82 …${DEP_TARGET_SPEC:U${TARGET_SPEC}}: o=$o ${_o$o:UMK_$o}=${_v$o:U} DIRDEPS += ${DIRDEPS.$o.${_v$o:U…
84 DIRDEPS += ${DIRDEPS.$o.${_v$o:U}:U}
95 .undef _v$o
HDcompiler.mk25 _v != (${CC} --version) 2> /dev/null | \
28 .if ${_v:Mclang} != ""
30 .elif ${_v:M[Gg][Cc][Cc]} != "" || ${_v:MFoundation*} != "" || ${CC:T:M*gcc*} != ""
38 .undef _v
/freebsd-14-stable/lib/clang/liblldb/
HDLLDBWrapLua.cpp3934 int _v = 0; in _wrap_new_string() local
3936 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_new_string()
3938 if (_v) { in _wrap_new_string()
4258 int _v = 0; in _wrap_new_SBAddress() local
4262 _v = 0; in _wrap_new_SBAddress()
4264 _v = 1; in _wrap_new_SBAddress()
4267 if (_v) { in _wrap_new_SBAddress()
4272 int _v = 0; in _wrap_new_SBAddress() local
4276 _v = 0; in _wrap_new_SBAddress()
4278 _v = 1; in _wrap_new_SBAddress()
[all …]
/freebsd-14-stable/share/mk/
HDbsd.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
HDdirdeps-options.mk71 .undef _v$o
77 _v$o ?= ${MK_$o.$x}
80 _v$o ?= ${MK_$o}
82 …${DEP_TARGET_SPEC:U${TARGET_SPEC}}: o=$o ${_o$o:UMK_$o}=${_v$o:U} DIRDEPS += ${DIRDEPS.$o.${_v$o:U…
84 DIRDEPS += ${DIRDEPS.$o.${_v$o:U}:U}
95 .undef _v$o
HDbsd.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-14-stable/sys/sys/
HDsmr_types.h88 __typeof((p)->__ptr) _v = (v); \
89 atomic_store_rel_ptr((uintptr_t *)&(p)->__ptr, (uintptr_t)_v); \
101 __typeof((p)->__ptr) _v = (v); \
105 (uintptr_t *)&(p)->__ptr, (uintptr_t)_v); \
125 __typeof((p)->__ptr) _v = (v); \
126 atomic_store_ptr((uintptr_t *)&(p)->__ptr, (uintptr_t)_v); \
HDmutex.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)); \
HDrwlock.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-14-stable/sys/dev/ath/ath_hal/
HDah_internal.h475 #define ath_hal_enable_rfkill(_ah, _v) \ argument
476 ath_hal_setcapability(_ah, HAL_CAP_RFSILENT, 1, _v, AH_NULL)
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)
[all …]
/freebsd-14-stable/tools/tools/ath/athalq/
HDar5210_ds.c35 #define MS(_v, _f) ( ((_v) & (_f)) >> _f##_S ) argument
36 #define MF(_v, _f) ( !! ((_v) & (_f))) argument
HDar5211_ds.c35 #define MS(_v, _f) ( ((_v) & (_f)) >> _f##_S ) argument
36 #define MF(_v, _f) ( !! ((_v) & (_f))) argument
HDar5212_ds.c35 #define MS(_v, _f) ( ((_v) & (_f)) >> _f##_S ) argument
36 #define MF(_v, _f) ( !! ((_v) & (_f))) argument
HDar5416_ds.c35 #define MS(_v, _f) ( ((_v) & (_f)) >> _f##_S ) argument
36 #define MF(_v, _f) ( !! ((_v) & (_f))) argument
/freebsd-14-stable/sys/dev/ath/
HDif_athvar.h1209 #define ath_hal_setcapability(_ah, _cap, _param, _v, _status) \ argument
1210 ((*(_ah)->ah_setCapability)((_ah), (_cap), (_param), (_v), (_status)))
1221 #define ath_hal_settkipmic(_ah, _v) \ argument
1222 ath_hal_setcapability(_ah, HAL_CAP_TKIP_MIC, 1, _v, NULL)
1227 #define ath_hal_settkipsplit(_ah, _v) \ argument
1228 ath_hal_setcapability(_ah, HAL_CAP_TKIP_SPLIT, 1, _v, NULL)
1237 #define ath_hal_setdiversity(_ah, _v) \ argument
1238 ath_hal_setcapability(_ah, HAL_CAP_DIVERSITY, 1, _v, NULL)
1241 #define ath_hal_setantennaswitch(_ah, _v) \ argument
1242 ((*(_ah)->ah_setAntennaSwitch)((_ah), (_v)))
[all …]
/freebsd-14-stable/sys/netpfil/ipfilter/netinet/
HDip_rules.c35 #define VNET_DEFINE(_t, _v) _t _v argument
36 #define VNET_DECLARE(_t, _v) extern _t _v argument
/freebsd-14-stable/sys/dev/bhnd/
HDbhnd_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-14-stable/sys/compat/linuxkpi/common/include/asm/
HDbarrier.h62 #define smp_load_acquire(p) ({ typeof(*p) _v = READ_ONCE(*p); smp_mb(); _v; })
/freebsd-14-stable/sys/dev/etherswitch/ar40xx/
HDar40xx_reg.h24 #define SM(_v, _f) (((_v) << _f##_S) & (_f)) argument
25 #define MS(_v, _f) (((_v) & (_f)) >> _f##_S) argument
/freebsd-14-stable/sys/contrib/dev/iwlwifi/
HDiwl-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-14-stable/usr.sbin/fwget/pci/
HDpci62 local _c _v
64 _v=$2
68 case ${_v} in
73 case ${_v} in
/freebsd-14-stable/sys/dev/etherswitch/arswitch/
HDarswitchreg.h38 #define SM(_v, _f) (((_v) << _f##_S) & (_f)) argument
39 #define MS(_v, _f) (((_v) & (_f)) >> _f##_S) argument
/freebsd-14-stable/sys/arm/allwinner/
HDaw_ts.c46 #define WRITE(_sc, _r, _v) bus_write_4((_sc)->res[0], (_r), (_v)) argument
/freebsd-14-stable/sys/dev/uart/
HDuart_dev_imx.h199 #define FLD(_r, _v) IMXUART_ ## _r ## _ ## _v argument

1234