Home
last modified time | relevance | path

Searched refs:_a (Results 1 – 25 of 28) sorted by relevance

12

/illumos-gate/usr/src/uts/common/io/sfxge/common/
H A Defx_hash.c69 _a -= _c; \
72 _b -= _a; \
74 _a += _c; \
77 _b += _a; \
78 _a -= _c; \
81 _b -= _a; \
83 _a += _c; \
86 _b += _a; \
95 _a ^= _c; \
97 _b ^= _a; \
[all …]
/illumos-gate/usr/src/uts/common/sys/
H A Dsysmacros.h343 #define DECL_BITFIELD2(_a, _b) \ argument
344 uint8_t _a, _b
346 uint8_t _a, _b, _c
348 uint8_t _a, _b, _c, _d
350 uint8_t _a, _b, _c, _d, _e
352 uint8_t _a, _b, _c, _d, _e, _f
359 uint8_t _b, _a
361 uint8_t _c, _b, _a
363 uint8_t _d, _c, _b, _a
365 uint8_t _e, _d, _c, _b, _a
[all …]
H A Dasy.h350 } _a; member
353 #define async_overrun async_uover._a.uover_overrun
354 #define async_hw_overrun async_uover._a._hw
355 #define async_sw_overrun async_uover._a._sw
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/include/
H A Dbcmtype.h284 #define S64_SUB(_a, _b) ((s64_t) ((s64_t) (_a) - (s64_t) (_b))) argument
285 #define u64_SUB(_a, _b) ((u64_t) ((s64_t) (_a) - (s64_t) (_b))) argument
286 #define S32_SUB(_a, _b) ((s32_t) ((s32_t) (_a) - (s32_t) (_b))) argument
287 #define uS32_SUB(_a, _b) ((u32_t) ((s32_t) (_a) - (s32_t) (_b))) argument
288 #define S16_SUB(_a, _b) ((s16_t) ((s16_t) (_a) - (s16_t) (_b))) argument
289 #define u16_SUB(_a, _b) ((u16_t) ((s16_t) (_a) - (s16_t) (_b))) argument
290 #define PTR_SUB(_a, _b) ((u8_t *) (_a) - (u8_t *) (_b)) argument
H A Dlm_defs.h80 #define ALIGN_DELTA_TO_BOUNDARY(_p, _a) \ argument
81 (((((u8_t *) (_p) - (u8_t *) 0) + ((_a) - 1)) & ~((_a) - 1)) - \
86 #define ALIGN_PTR_TO_BOUNDARY(_p, _a) \ argument
87 ((u8_t *) (_p) + ALIGN_DELTA_TO_BOUNDARY(_p, _a))
/illumos-gate/usr/src/uts/common/io/bnx/include/
H A Dbcmtype.h266 #define S64_SUB(_a, _b) ((s64_t) ((s64_t) (_a) - (s64_t) (_b))) argument
267 #define u64_SUB(_a, _b) ((u64_t) ((s64_t) (_a) - (s64_t) (_b))) argument
268 #define S32_SUB(_a, _b) ((s32_t) ((s32_t) (_a) - (s32_t) (_b))) argument
269 #define uS32_SUB(_a, _b) ((u32_t) ((s32_t) (_a) - (s32_t) (_b))) argument
270 #define S16_SUB(_a, _b) ((s16_t) ((s16_t) (_a) - (s16_t) (_b))) argument
271 #define u16_SUB(_a, _b) ((u16_t) ((s16_t) (_a) - (s16_t) (_b))) argument
272 #define PTR_SUB(_a, _b) ((u8_t *) (_a) - (u8_t *) (_b)) argument
H A Dlm_defs.h66 #define ALIGN_DELTA_TO_BOUNDARY(_p, _a) \ argument
67 (((((u8_t *)(_p) - (u8_t *)0) + ((_a) - 1)) & ~((_a) - 1)) - \
74 #define ALIGN_PTR_TO_BOUNDARY(_p, _a) \ argument
75 ((u8_t *)(_p) + ALIGN_DELTA_TO_BOUNDARY(_p, _a))
/illumos-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/include/
H A Ddb-int.h284 #define MAX(_a,_b) ((_a)<(_b)?(_b):(_a)) argument
287 #define MIN(_a,_b) ((_a)<(_b)?(_a):(_b)) argument
/illumos-gate/usr/src/cmd/sgs/demo_rdb/common/
H A Dlex.l37 symbol [_a-zA-Z][_a-zA-Z0-9]*
38 varstring \$[_a-zA-Z][_a-zA-Z0-9]* /* $<name> */
/illumos-gate/usr/src/uts/common/xen/io/
H A Dxencons.h166 } _a; member
169 #define async_overrun async_uover._a.uover_overrun
170 #define async_hw_overrun async_uover._a._hw
171 #define async_sw_overrun async_uover._a._sw
/illumos-gate/usr/src/cmd/fs.d/nfs/showmount/
H A Dshowmount.c212 sorthost(const void *_a, const void *_b) in sorthost() argument
214 struct mountbody **a = (struct mountbody **)_a; in sorthost()
221 sortpath(const void *_a, const void *_b) in sortpath() argument
223 struct mountbody **a = (struct mountbody **)_a; in sortpath()
/illumos-gate/usr/src/cmd/sgs/libld/common/
H A Doutfile.c60 Xword _r, _a, _b; in ld_lcm() local
62 if ((_a = a) == 0) in ld_lcm()
67 if (_a > _b) in ld_lcm()
68 _a = b, _b = a; in ld_lcm()
69 while ((_r = _b % _a) != 0) in ld_lcm()
70 _b = _a, _a = _r; in ld_lcm()
71 return ((a / _a) * b); in ld_lcm()
/illumos-gate/usr/src/tools/smatch/src/
H A Dtest-sort.c7 int_cmp (const void *_a, const void *_b) in int_cmp() argument
9 const int *a = _a; in int_cmp()
H A Dstorage.c31 static int hash_list_cmp(const void *_a, const void *_b) in hash_list_cmp() argument
33 const struct storage_hash *a = _a; in hash_list_cmp()
113 static int storage_hash_cmp(const void *_a, const void *_b) in storage_hash_cmp() argument
115 const struct storage_hash *a = _a; in storage_hash_cmp()
/illumos-gate/usr/src/uts/common/io/bnx/570x/driver/common/lmdev/
H A Dlm5706.h209 #define S64_SUB(_a, _b) ((s64_t) ((s64_t) (_a) - (s64_t) (_b)))
210 #define u64_SUB(_a, _b) ((u64_t) ((s64_t) (_a) - (s64_t) (_b)))
211 #define S32_SUB(_a, _b) ((s32_t) ((s32_t) (_a) - (s32_t) (_b)))
212 #define uS32_SUB(_a, _b) ((u32_t) ((s32_t) (_a) - (s32_t) (_b)))
213 #define S16_SUB(_a, _b) ((s16_t) ((s16_t) (_a) - (s16_t) (_b)))
214 #define u16_SUB(_a, _b) ((u16_t) ((s16_t) (_a) - (s16_t) (_b)))
215 #define PTR_SUB(_a, _b) ((u8_t *) (_a) - (u8_t *) (_b))
/illumos-gate/usr/src/uts/sun4/sys/
H A Dsudev.h317 } _a; member
320 #define async_overrun async_uover._a.uover_overrun
321 #define async_hw_overrun async_uover._a._hw
322 #define async_sw_overrun async_uover._a._sw
/illumos-gate/usr/src/uts/common/io/arn/
H A Darn_ath9k.h620 #define REG_RMW(_a, _r, _set, _clr) \ argument
621 REG_WRITE(_a, _r, (REG_READ(_a, _r) & ~(_clr)) | (_set))
622 #define REG_RMW_FIELD(_a, _r, _f, _v) \ argument
623 REG_WRITE(_a, _r, \
624 (REG_READ(_a, _r) & ~_f) | (((_v) << _f##_S) & _f))
625 #define REG_SET_BIT(_a, _r, _f) \ argument
626 REG_WRITE(_a, _r, REG_READ(_a, _r) | _f)
627 #define REG_CLR_BIT(_a, _r, _f) \ argument
628 REG_WRITE(_a, _r, REG_READ(_a, _r) & ~_f)
H A Darn_regd.h137 #define swap(_a, _b, _size) { \ argument
141 uint8_t tmp = *_a; \
142 *_a++ = *s; \
145 _a -= _size; \
/illumos-gate/usr/src/uts/common/io/
H A Dstrplumb.c75 #define DBG1(_f, _a) \ argument
77 printf("strplumb: " _f, (_a))
79 #define DBG2(_f, _a, _b) \ argument
81 printf("strplumb: " _f, (_a), (_b))
83 #define DBG3(_f, _a, _b, _c) \ argument
85 printf("strplumb: " _f, (_a), (_b), (_c))
/illumos-gate/usr/src/uts/common/io/cxgbe/t4nex/
H A Dcudbg_lib.h42 #define min_t(type, _a, _b) (((type)(_a) < (type)(_b)) ? (type)(_a) : (type)(_b)) argument
H A Dcudbg_entity.h126 #define ARRAY_SIZE(_a) (sizeof((_a)) / sizeof((_a)[0])) argument
/illumos-gate/usr/src/boot/efi/include/Uefi/
H A DUefiBaseType.h156 #define EFIERR(_a) ENCODE_ERROR(_a) argument
/illumos-gate/usr/src/lib/libilb/common/
H A Dlibilb_impl.h99 #define GET_AF(_a) IN6_IS_ADDR_V4MAPPED(_a)?AF_INET:AF_INET6 argument
/illumos-gate/usr/src/lib/libfru/libfru/
H A DnameSyntaxLex.l59 [_a-zA-Z0-9]+ { yylval.name = strdup(yytext); return NAME; }
/illumos-gate/usr/src/uts/common/io/bpf/
H A Dbpf_filter.c54 #define mtod(_a, _t) ((_t)((_a)->b_rptr)) argument

12