Searched refs:_c (Results 1 - 25 of 30) sorted by relevance

12

/illumos-gate/usr/src/uts/common/sys/
H A Dcondvar_impl.h76 #define CVW_INIT(_c) { \
77 mutex_init(&(_c)->cvw_lock, NULL, MUTEX_DRIVER, NULL); \
78 cv_init(&(_c)->cvw_waiter, NULL, CV_DRIVER, NULL); \
79 (_c)->cvw_refcnt = 0; \
82 #define CVW_ENTER_READ(_c) { \
83 mutex_enter(&(_c)->cvw_lock); \
84 while ((_c)->cvw_refcnt < 0) \
85 cv_wait(&((_c)->cvw_waiter), &(_c)->cvw_lock); \
86 (_c)
[all...]
H A Dctype.h38 #define ISDIGIT(_c) \
39 ((_c) >= '0' && (_c) <= '9')
41 #define ISXDIGIT(_c) \
42 (ISDIGIT(_c) || \
43 ((_c) >= 'a' && (_c) <= 'f') || \
44 ((_c) >= 'A' && (_c) <= 'F'))
46 #define ISLOWER(_c) \
[all...]
H A Dsysmacros.h338 #define DECL_BITFIELD3(_a, _b, _c) \
339 uint8_t _a, _b, _c
340 #define DECL_BITFIELD4(_a, _b, _c, _d) \
341 uint8_t _a, _b, _c, _d
342 #define DECL_BITFIELD5(_a, _b, _c, _d, _e) \
343 uint8_t _a, _b, _c, _d, _e
344 #define DECL_BITFIELD6(_a, _b, _c, _d, _e, _f) \
345 uint8_t _a, _b, _c, _d, _e, _f
346 #define DECL_BITFIELD7(_a, _b, _c, _d, _e, _f, _g) \
347 uint8_t _a, _b, _c, _
[all...]
H A Dnet80211.h198 #define IEEE80211_IS_CHAN_2GHZ(_c) \
199 (((_c)->ich_flags & IEEE80211_CHAN_2GHZ) != 0)
200 #define IEEE80211_IS_CHAN_5GHZ(_c) \
201 (((_c)->ich_flags & IEEE80211_CHAN_5GHZ) != 0)
H A Dtnf_writer.h47 #define TNF_ALIGN(type) TNF_OFFSETOF(struct { char _c; type _t; }, _t)
/illumos-gate/usr/src/boot/include/
H A D_ctype.h98 __maskrune(__ct_rune_t _c, unsigned long _f) argument
100 return ((_c < 0 || _c >= _CACHED_RUNES) ? ___runetype(_c) :
101 _CurrentRuneLocale->__runetype[_c]) & _f;
105 __sbmaskrune(__ct_rune_t _c, unsigned long _f) argument
107 return (_c < 0 || _c >= __mb_sb_limit) ? 0 :
108 _CurrentRuneLocale->__runetype[_c] & _f;
112 __istype(__ct_rune_t _c, unsigne argument
118 __sbistype(__ct_rune_t _c, unsigned long _f) argument
124 __isctype(__ct_rune_t _c, unsigned long _f) argument
131 __toupper(__ct_rune_t _c) argument
138 __sbtoupper(__ct_rune_t _c) argument
145 __tolower(__ct_rune_t _c) argument
152 __sbtolower(__ct_rune_t _c) argument
159 __wcwidth(__ct_rune_t _c) argument
[all...]
H A Dstdio.h463 static __inline int __sputc(int _c, FILE *_p) { argument
464 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n'))
465 return (*_p->_p++ = _c);
467 return (__swbuf(_c, _p));
/illumos-gate/usr/src/uts/common/io/bnxe/
H A Dbnxe_debug.h71 #define DbgMessageXX(_c, _m, _s, ...) \
72 DbgMessageFunc(_c, _m, "!%s <0x%08x> %s(%d): " _s, \
73 BnxeDevName((void *)_c), \
99 #define DbgBreakIfFastPath(_c) DbgBreakIf(_c)
101 #define dbg_out(_c, _m, _s, _d1) DbgMessageXX(_c, _m, _s, _d1)
110 #define BnxeDbgBreak(_c) cmn_err(CE_PANIC, "%s: %s(%d): DbgBreak!", \
111 BnxeDevName(_c), \
115 #define BnxeDbgBreakMsg(_c, _
[all...]
/illumos-gate/usr/src/uts/common/io/net80211/
H A Dnet80211_impl.h146 #define IEEE80211_IS_CHAN_FHSS(_c) \
147 (((_c)->ich_flags & IEEE80211_CHAN_FHSS) == IEEE80211_CHAN_FHSS)
148 #define IEEE80211_IS_CHAN_A(_c) \
149 (((_c)->ich_flags & IEEE80211_CHAN_A) == IEEE80211_CHAN_A)
150 #define IEEE80211_IS_CHAN_B(_c) \
151 (((_c)->ich_flags & IEEE80211_CHAN_B) == IEEE80211_CHAN_B)
152 #define IEEE80211_IS_CHAN_PUREG(_c) \
153 (((_c)->ich_flags & IEEE80211_CHAN_PUREG) == IEEE80211_CHAN_PUREG)
154 #define IEEE80211_IS_CHAN_G(_c) \
155 (((_c)
[all...]
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A D_crypt.c143 #define C (_c->_C)
144 #define D (_c->_D)
145 #define KS (_c->_KS)
146 #define E (_c->_E)
147 #define L (_c->_L)
148 #define R (_c->_R)
149 #define tempL (_c->_tempL)
150 #define f (_c->_f)
151 #define preS (_c->_preS)
152 #define ablock (_c
169 struct _crypt *_c = __crypt; local
300 struct _crypt *_c = __crypt; local
395 struct _crypt *_c = __crypt; local
459 struct _crypt *_c = __crypt; local
[all...]
/illumos-gate/usr/src/uts/common/io/sfxge/common/
H A Defx_hash.c67 #define EFX_HASH_MIX(_a, _b, _c) \
69 _a -= _c; \
70 _a ^= EFX_HASH_ROTATE(_c, 4); \
71 _c += _b; \
74 _a += _c; \
75 _c -= _b; \
76 _c ^= EFX_HASH_ROTATE(_b, 8); \
78 _a -= _c; \
79 _a ^= EFX_HASH_ROTATE(_c, 16); \
80 _c
[all...]
/illumos-gate/usr/src/uts/common/io/uath/
H A Duath_var.h57 #define UATH_IS_CHAN_A(_c) \
58 (((_c)->ich_flags & UATH_CHAN_A) == UATH_CHAN_A)
59 #define UATH_IS_CHAN_B(_c) \
60 (((_c)->ich_flags & UATH_CHAN_B) == UATH_CHAN_B)
61 #define UATH_IS_CHAN_PUREG(_c) \
62 (((_c)->ich_flags & UATH_CHAN_PUREG) == UATH_CHAN_PUREG)
63 #define UATH_IS_CHAN_G(_c) \
64 (((_c)->ich_flags & UATH_CHAN_G) == UATH_CHAN_G)
65 #define UATH_IS_CHAN_ANYG(_c) \
66 (UATH_IS_CHAN_PUREG(_c) || UATH_IS_CHAN_
[all...]
/illumos-gate/usr/src/uts/common/io/mwl/
H A Dmwl_var.h124 #define IEEE80211_IS_CHAN_2GHZ_F(_c) \
125 (((_c)->ic_flags & IEEE80211_CHAN_2GHZ) != 0)
126 #define IEEE80211_IS_CHAN_5GHZ_F(_c) \
127 (((_c)->ic_flags & IEEE80211_CHAN_5GHZ) != 0)
129 #define IEEE80211_IS_CHAN_FHSS(_c) \
130 (((_c)->ic_flags & IEEE80211_CHAN_FHSS) == IEEE80211_CHAN_FHSS)
131 #define IEEE80211_IS_CHAN_A(_c) \
132 (((_c)->ic_flags & IEEE80211_CHAN_A) == IEEE80211_CHAN_A)
133 #define IEEE80211_IS_CHAN_B(_c) \
134 (((_c)
[all...]
/illumos-gate/usr/src/lib/libresolv2/include/
H A Dconfig.h64 extern __inline int __sputaux(int _c, struct __sFILE *_p);
/illumos-gate/usr/src/uts/common/io/arn/
H A Darn_ath9k.h496 #define IS_CHAN_A(_c) ((((_c)->channelFlags & CHANNEL_A) == CHANNEL_A) || \
497 (((_c)->channelFlags & CHANNEL_A_HT20) == CHANNEL_A_HT20) || \
498 (((_c)->channelFlags & CHANNEL_A_HT40PLUS) == CHANNEL_A_HT40PLUS) || \
499 (((_c)->channelFlags & CHANNEL_A_HT40MINUS) == CHANNEL_A_HT40MINUS))
500 #define IS_CHAN_G(_c) ((((_c)->channelFlags & (CHANNEL_G)) == CHANNEL_G) || \
501 (((_c)->channelFlags & CHANNEL_G_HT20) == CHANNEL_G_HT20) || \
502 (((_c)->channelFlags & CHANNEL_G_HT40PLUS) == CHANNEL_G_HT40PLUS) || \
503 (((_c)
[all...]
H A Darn_core.h166 #define IEEE80211_IS_CHAN_HTA(_c) \
167 (IEEE80211_IS_CHAN_5GHZ(_c) && \
168 ((_c)->ich_flags & IEEE80211_CHAN_HT))
170 #define IEEE80211_IS_CHAN_HTG(_c) \
171 (IEEE80211_IS_CHAN_2GHZ(_c) && \
172 ((_c)->ich_flags & IEEE80211_CHAN_HT))
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/include/
H A Ddebug.h309 #define DbgBreakIfAll(_c) \
311 if (_c) \
319 #define DbgBreakIfAll(_c) \
321 if (_c) \
323 cmn_err(CE_PANIC, "<%d> %s(%4d): Condition Failed! - if ("#_c")", \
405 //#define DbgBreak(_c)
478 #define dbg_out(_c, _m, _s, _d1) debug_msgx((WARN), "TrLv<%d>, %s (%4d): %p"##_s" %s\n", ((WARN) & LV_MASK), __FILE_STRIPPED__, __LINE__, _c, _d1 )
526 #define DbgMessage(_c, _m, _s, ...) \
528 MessageHdr((_c), (_
[all...]
/illumos-gate/usr/src/lib/libnisdb/
H A DMakefile83 DERIVED_HEADERS= $(X_FILES:%_c.x=%_c.h) $(X_FILES:%_c.x=%.h)
84 DERIVED_SOURCES= $(X_FILES:%_c.x=%_c_xdr.c)
219 %_c.h: %_c.x
223 %.h: %_c.x
227 %_c_xdr.c: %_c.x
/illumos-gate/usr/src/lib/libzpool/common/sys/
H A Dzfs_context.h327 #define kmem_cache_create(_a, _b, _c, _d, _e, _f, _g, _h, _i) \
328 umem_cache_create(_a, _b, _c, _d, _e, _f, _g, _h, _i)
329 #define kmem_cache_destroy(_c) umem_cache_destroy(_c)
330 #define kmem_cache_alloc(_c, _f) umem_cache_alloc(_c, _f)
331 #define kmem_cache_free(_c, _b) umem_cache_free(_c, _b)
333 #define kmem_cache_reap_now(_c) /* nothing */
334 #define kmem_cache_set_move(_c, _c
[all...]
/illumos-gate/usr/src/boot/include/xlocale/
H A D_ctype.h162 __wcwidth_l(__ct_rune_t _c, locale_t __l) argument
166 if (_c == 0)
168 _x = (unsigned int)__maskrune_l(_c, _CTYPE_SWM|_CTYPE_R, __l);
/illumos-gate/usr/src/uts/common/sys/fibre-channel/fca/emlxs/
H A Demlxs_fc.h2201 #define SWAP32_BUFFER(_b, _c) emlxs_swap32_buffer(_b, _c)
2202 #define SWAP32_BCOPY(_s, _d, _c) emlxs_swap32_bcopy(_s, _d, _c)
2231 #define LE_SWAP32_BUFFER(_b, _c) SWAP32_BUFFER(_b, _c)
2232 #define LE_SWAP32_BCOPY(_s, _d, _c) SWAP32_BCOPY(_s, _d, _c)
2247 #define LE_SWAP32_BUFFER(_b, _c)
2248 #define LE_SWAP32_BCOPY(_s, _d, _c) bcop
[all...]
/illumos-gate/usr/src/uts/common/io/
H A Dstrplumb.c83 #define DBG3(_f, _a, _b, _c) \
85 printf("strplumb: " _f, (_a), (_b), (_c))
/illumos-gate/usr/src/uts/common/io/ath/
H A Dath_hal.h1287 #define ATH_HAL_GETCHANNOISE(_ah, _c) (-96)
1291 #define ATH_HAL_GETCHANNOISE(_ah, _c) \
1292 ((*(_ah)->ah_getChanNoise)((_ah), (_c)))
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dnl7curi.c256 char _c; \
259 if ((_c = *_s) == '%') { \
260 H2A(_s, (ep), _c); \
262 CHASH(hv, _c); \
/illumos-gate/usr/src/lib/libshell/common/edit/
H A Dvi.c81 static genchar _c; variable
85 # define isalph(v) ((_c=virtual[v])=='_'||isalnum(_c))

Completed in 196 milliseconds

12