Home
last modified time | relevance | path

Searched refs:_c (Results 1 – 25 of 59) sorted by relevance

123

/freebsd/sys/net80211/
H A D_ieee80211.h241 #define IEEE80211_IS_CHAN_FHSS(_c) \ argument
242 (((_c)->ic_flags & IEEE80211_CHAN_FHSS) == IEEE80211_CHAN_FHSS)
243 #define IEEE80211_IS_CHAN_A(_c) \ argument
244 (((_c)->ic_flags & IEEE80211_CHAN_A) == IEEE80211_CHAN_A)
245 #define IEEE80211_IS_CHAN_B(_c) \ argument
246 (((_c)->ic_flags & IEEE80211_CHAN_B) == IEEE80211_CHAN_B)
247 #define IEEE80211_IS_CHAN_PUREG(_c) \ argument
248 (((_c)->ic_flags & IEEE80211_CHAN_PUREG) == IEEE80211_CHAN_PUREG)
249 #define IEEE80211_IS_CHAN_G(_c) \ argument
250 (((_c)->ic_flags & IEEE80211_CHAN_G) == IEEE80211_CHAN_G)
[all …]
/freebsd/include/
H A D_ctype.h97 __maskrune(__ct_rune_t _c, unsigned long _f) in __maskrune() argument
99 return ((_c < 0 || _c >= _CACHED_RUNES) ? ___runetype(_c) : in __maskrune()
100 _CurrentRuneLocale->__runetype[_c]) & _f; in __maskrune()
104 __sbmaskrune(__ct_rune_t _c, unsigned long _f) in __sbmaskrune() argument
106 return (_c < 0 || _c >= __mb_sb_limit) ? 0 : in __sbmaskrune()
107 _CurrentRuneLocale->__runetype[_c] & _f; in __sbmaskrune()
111 __istype(__ct_rune_t _c, unsigned long _f) in __istype() argument
113 return (!!__maskrune(_c, _f)); in __istype()
117 __sbistype(__ct_rune_t _c, unsigned long _f) in __sbistype() argument
119 return (!!__sbmaskrune(_c, _f)); in __sbistype()
[all …]
H A Dstdio.h472 static __inline int __sputc(int _c, FILE *_p) { in __sputc() argument
473 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')) in __sputc()
474 return (*_p->_p++ = _c); in __sputc()
476 return (__swbuf(_c, _p)); in __sputc()
/freebsd/contrib/ntp/sntp/libopts/
H A Dag-char-map.h116 #define IS_NEWLINE_CHAR( _c) is_ag_char_map_char((char)(_c), 0x00000001) argument
121 #define IS_NUL_BYTE_CHAR( _c) is_ag_char_map_char((char)(_c), 0x00000002) argument
126 #define IS_DIR_SEP_CHAR( _c) is_ag_char_map_char((char)(_c), 0x00000004) argument
131 #define IS_PERCENT_CHAR( _c) is_ag_char_map_char((char)(_c), 0x00000008) argument
136 #define IS_COMMA_CHAR( _c) is_ag_char_map_char((char)(_c), 0x00000010) argument
141 #define IS_COLON_CHAR( _c) is_ag_char_map_char((char)(_c), 0x00000020) argument
146 #define IS_UNDERSCORE_CHAR( _c) is_ag_char_map_char((char)(_c), 0x00000040) argument
151 #define IS_PLUS_CHAR( _c) is_ag_char_map_char((char)(_c), 0x00000080) argument
156 #define IS_DOLLAR_CHAR( _c) is_ag_char_map_char((char)(_c), 0x00000100) argument
161 #define IS_OPTION_MARKER_CHAR( _c) is_ag_char_map_char((char)(_c), 0x00000200) argument
[all …]
H A Dautoopts.c57 # define strrchr(_s, _c) option_strrchr(_s, _c) argument
58 # define strchr(_s, _c) option_strchr(_s, _c) argument
H A Dautoopts.h262 #define AGALOC(_c, _w) ao_malloc((size_t)_c) argument
263 #define AGREALOC(_p, _c, _w) ao_realloc(VOIDP(_p), (size_t)_c) argument
/freebsd/sys/dev/sfxge/common/
H A Defx_hash.c68 #define EFX_HASH_MIX(_a, _b, _c) \ argument
70 _a -= _c; \
71 _a ^= EFX_HASH_ROTATE(_c, 4); \
72 _c += _b; \
75 _a += _c; \
76 _c -= _b; \
77 _c ^= EFX_HASH_ROTATE(_b, 8); \
79 _a -= _c; \
80 _a ^= EFX_HASH_ROTATE(_c, 16); \
81 _c += _b; \
[all …]
/freebsd/sys/arm/ti/
H A Dti_spireg.h59 #define MCSPI_CONF_CH(_c) (0x12c + 0x14 * (_c)) argument
80 #define MCSPI_STAT_CH(_c) (0x130 + 0x14 * (_c)) argument
84 #define MCSPI_CTRL_CH(_c) (0x134 + 0x14 * (_c)) argument
89 #define MCSPI_TX_CH(_c) (0x138 + 0x14 * (_c)) argument
90 #define MCSPI_RX_CH(_c) (0x13c + 0x14 * (_c)) argument
/freebsd/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Dsysmacros.h349 #define DECL_BITFIELD3(_a, _b, _c) \ argument
350 uint8_t _a, _b, _c
351 #define DECL_BITFIELD4(_a, _b, _c, _d) \ argument
352 uint8_t _a, _b, _c, _d
353 #define DECL_BITFIELD5(_a, _b, _c, _d, _e) \ argument
354 uint8_t _a, _b, _c, _d, _e
355 #define DECL_BITFIELD6(_a, _b, _c, _d, _e, _f) \ argument
356 uint8_t _a, _b, _c, _d, _e, _f
357 #define DECL_BITFIELD7(_a, _b, _c, _d, _e, _f, _g) \ argument
358 uint8_t _a, _b, _c, _d, _e, _f, _g
[all …]
/freebsd/contrib/libdivsufsort/include/
H A Ddivsufsort_private.h154 #define STACK_PUSH(_a, _b, _c, _d)\ argument
158 stack[ssize].c = (_c), stack[ssize++].d = (_d);\
160 #define STACK_PUSH5(_a, _b, _c, _d, _e)\ argument
164 stack[ssize].c = (_c), stack[ssize].d = (_d), stack[ssize++].e = (_e);\
166 #define STACK_POP(_a, _b, _c, _d)\ argument
171 (_c) = stack[ssize].c, (_d) = stack[ssize].d;\
173 #define STACK_POP5(_a, _b, _c, _d, _e)\ argument
178 (_c) = stack[ssize].c, (_d) = stack[ssize].d, (_e) = stack[ssize].e;\
/freebsd/sys/dev/ixgbe/
H A Dixgbe_sriov.h86 #define ixgbe_add_vf(_a,_b,_c) argument
87 #define ixgbe_init_iov(_a,_b,_c) argument
95 #define ixgbe_vf_que_index(_a, _b, _c) (_c) argument
/freebsd/sys/kern/
H A Dsubr_terminal.c137 teken_color_t _c; \
139 _c = (color); \
140 TCOLOR_FG(_c & 7) | ((_c & 8) << 18); \
145 teken_color_t _c; \
147 _c = (color); \
148 TCOLOR_BG(_c & 7) | ((_c & 8) << 20); \
152 teken_color_t _c; \
154 _c = (color); \
155 if (_c >= 16) \
156 _c = teken_256to16(_c); \
[all …]
/freebsd/sys/net/
H A Dnetmap_legacy.h203 #define _IO(_c, _n) CTL_CODE(_WIN_NM_IOCTL_TYPE, ((_n) + 0x800) , \ argument
205 #define _IO_direct(_c, _n) CTL_CODE(_WIN_NM_IOCTL_TYPE, ((_n) + 0x800) , \ argument
208 #define _IOWR(_c, _n, _s) _IO(_c, _n) argument
/freebsd/sys/contrib/openzfs/include/sys/
H A Dzfs_context.h423 #define kmem_cache_create(_a, _b, _c, _d, _e, _f, _g, _h, _i) \
424 umem_cache_create(_a, _b, _c, _d, _e, _f, _g, _h, _i)
425 #define kmem_cache_destroy(_c) umem_cache_destroy(_c)
426 #define kmem_cache_alloc(_c, _f) umem_cache_alloc(_c, _f)
427 #define kmem_cache_free(_c, _b) umem_cache_free(_c, _b)
429 #define kmem_cache_reap_now(_c) umem_cache_reap_now(_c);
430 #define kmem_cache_set_move(_c, _cb) /* nothing */
760 #define ddi_log_sysevent(_a, _b, _c, _d, _e, _f, _g) \
761 sysevent_post_event(_c, _d, _b, "libzpool", _e, _f)
/freebsd/sys/contrib/dev/iwlwifi/mvm/
H A Drs.h75 #define RS_DRV_DATA_PACK(_c, _f) ((void *)(uintptr_t)(_c | (uintptr_t)(_f) << sizeof(_c))) /* XXX T… argument
/freebsd/sys/dev/ath/ath_hal/
H A Dah_internal.h462 #define ath_hal_getNfAdjust(_ah, _c) \ argument
463 AH_PRIVATE(_ah)->ah_getNfAdjust(_ah, _c)
552 #define IS_CHAN_5GHZ(_c) ((_c)->channel > 4900) argument
553 #define IS_CHAN_2GHZ(_c) (!IS_CHAN_5GHZ(_c)) argument
555 #define IS_CHAN_IN_PUBLIC_SAFETY_BAND(_c) ((_c) > 4940 && (_c) < 4990) argument
913 #define HAL_INI_VAL(_ia, _r, _c) \ argument
914 ((_ia)->data[((_r)*(_ia)->cols) + (_c)])
994 #define IS_5GHZ_FAST_CLOCK_EN(_ah, _c) \ argument
995 (IEEE80211_IS_CHAN_5GHZ(_c) && \
/freebsd/sys/arm/arm/
H A Dstdatomic.c192 __sync_lock_test_and_set_##N##_c(uintN_t *mem, uintN_t val) \
224 __sync_val_compare_and_swap_##N##_c(uintN_t *mem, uintN_t expected, \
265 __sync_##name##_##N##_c(uintN_t *mem, uintN_t val) \
303 __sync_##name##_##N##_c(uintN_t *mem, uintN_t val) \
378 __sync_##name##_4##_c(uint32_t *mem, uint32_t val) \
/freebsd/sys/netpfil/ipfilter/netinet/
H A Dip_compat.h1211 # define DT2(_n,_a,_b,_c,_d) DTRACE_PROBE2(_n,_a,_b,_c,_d) argument
1212 # define DT3(_n,_a,_b,_c,_d,_e,_f) \ argument
1213 DTRACE_PROBE3(_n,_a,_b,_c,_d,_e,_f)
1214 # define DT4(_n,_a,_b,_c,_d,_e,_f,_g,_h) \ argument
1215 DTRACE_PROBE4(_n,_a,_b,_c,_d,_e,_f,_g,_h)
1216 # define DT5(_n,_a,_b,_c,_d,_e,_f,_g,_h,_i,_j) \ argument
1217 DTRACE_PROBE5(_n,_a,_b,_c,_d,_e,_f,_g,_h,_i,_j)
1221 # define DT2(_n,_a,_b,_c,_d) argument
1222 # define DT3(_n,_a,_b,_c,_d,_e,_f) argument
1223 # define DT4(_n,_a,_b,_c,_d,_e,_f,_g,_h) argument
[all …]
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dstring.h291 int _c = (int)(bytepat); \
293 memset(_ptr + _o, _c, sizeof(*(ptr)) - _o); \
299 int _c = (int)(bytepat); \
301 memset(_ptr + _o, _c, sizeof(*(ptr)) - _o); \
/freebsd/sys/contrib/dev/iwlwifi/fw/api/
H A Drs.h659 #define LQ_FLAGS_COLOR_INC(_c) ((((_c) + 1) << LQ_FLAG_COLOR_POS) &\ argument
661 #define LQ_FLAG_COLOR_SET(_f, _c) ((_c) | ((_f) & ~LQ_FLAG_COLOR_MSK)) argument
/freebsd/sys/dev/rtwn/rtl8192c/
H A Dr92c_var.h69 #define rtwn_r92c_get_txpower(_sc, _chain, _c, _power) \ argument
70 ((R92C_SOFTC(_sc)->rs_get_txpower)((_sc), (_chain), (_c), (_power)))
/freebsd/sys/dev/bhnd/bhndb/
H A Dbhndb_pcivar.h107 #define BHNDB_PCI_IS_CORE_END(_c) BHND_MATCH_IS_ANY(&(_c)->match) argument
/freebsd/libexec/rc/
H A Dnetwork.subr813 local _retstr _c
854 for _c in $@; do
855 case $_range:$_c in
857 _range=$_c
860 _iphead="${_iphead}${_iphead:+.}${_c}"
863 _iptail="${_iptail}${_iptail:+.}${_c}"
890 for _c in $_retstr; do
891 ifalias_expand_addr_inet $_action $_c $_exargs
903 local _retstr _c
981 for _c in $_retstr; do
[all …]
/freebsd/include/xlocale/
H A D_ctype.h161 __wcwidth_l(__ct_rune_t _c, locale_t __l) in __wcwidth_l() argument
165 if (_c == 0) in __wcwidth_l()
167 _x = (unsigned int)__maskrune_l(_c, _CTYPE_SWM|_CTYPE_R, __l); in __wcwidth_l()
/freebsd/sys/dev/rtwn/rtl8812a/
H A Dr12a_var.h105 #define rtwn_r12a_fix_spur(_sc, _c) \ argument
106 ((R12A_SOFTC(_sc)->rs_fix_spur)((_sc), (_c)))

123