Home
last modified time | relevance | path

Searched defs:a (Results 226 – 250 of 1968) sorted by relevance

12345678910>>...79

/illumos-gate/usr/src/lib/libsaveargs/tests/functional/
H A Dbig-struct-ret.c20 long a; member
26 test(long a, long b, long c, long d) in test()
H A Dsmall-struct-ret-and-spill.c20 long a; member
25 test(long a, long b, long c, long d, long e, long f, long g, long h) in test()
/illumos-gate/usr/src/uts/sun4/sys/
H A Dprom_debug.h54 #define PRM_INFO1(str, a) if (prom_debug) \ argument
58 #define PRM_INFO2(str, a, b) if (prom_debug) \ argument
/illumos-gate/usr/src/tools/smatch/src/validation/
H A Dsm_deref_check_deref.c2 int a; member
13 int *a = &(x->a); in func() local
H A Dtypediff-enum.c17 void baz(num a) { } in baz()
20 void qux(int a) { } in qux()
H A Dcast-bad-00.c5 u32 a; member
10 u32 a; member
H A Dconstexpr-addr-of-static-member.c2 int a; member
11 static struct B a= {1, {1, {1, 1}}}; variable
/illumos-gate/usr/src/lib/pam_modules/authtok_check/
H A Dfascist.c409 char *a; in FascistLook() local
423 char *a; in FascistLook() local
/illumos-gate/usr/src/lib/nsswitch/nis/common/
H A Dether_addr.c47 getbyhost(be, a) in getbyhost() argument
58 getbyether(be, a) in getbyether() argument
/illumos-gate/usr/src/ucblib/libcurses/
H A Dtoucholap.c24 #define min(a, b) ((a) < (b) ? (a) : (b)) argument
25 #define max(a, b) ((a) > (b) ? (a) : (b)) argument
H A Doverwrite.c26 #define min(a, b) ((a) < (b) ? (a) : (b)) argument
27 #define max(a, b) ((a) > (b) ? (a) : (b)) argument
/illumos-gate/usr/src/uts/common/inet/ipf/netinet/
H A Dip_compat.h81 # define bzero(a,b) memset(a,0,b) argument
83 # define bcopy(a,b,c) memmove(b,a,c) argument
284 # define UIOMOVE(a,b,c,d) uiomove((caddr_t)a,b,c,d) argument
1124 # define UIOMOVE(a,b,c,d) uiomove(a,b,c,d) argument
1180 # define bcmp(a,b,z) memcmp(a, b, z) argument
1480 # define KMALLOCS(a,b,c) (a) = (b)malloc(c) argument
1484 # define COPYIN(a,b,c) (bcopy((a), (b), (c)), 0) argument
1493 # define UIOMOVE(a,b,c,d) ipfuiomove(a,b,c,d) argument
1579 # define MAX(a,b) (((a) > (b)) ? (a) : (b)) argument
1629 # define UIOMOVE(a,b,c,d) uiomove(a,b,d) argument
[all …]
/illumos-gate/usr/src/boot/sys/sys/
H A Dparam.h282 #define setbit(a,i) (((unsigned char *)(a))[(i)/NBBY] |= 1<<((i)%NBBY)) argument
283 #define clrbit(a,i) (((unsigned char *)(a))[(i)/NBBY] &= ~(1<<((i)%NBBY))) argument
284 #define isset(a,i) \ argument
286 #define isclr(a,i) \ argument
301 #define MIN(a,b) (((a)<(b))?(a):(b)) argument
302 #define MAX(a,b) (((a)>(b))?(a):(b)) argument
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/crypto/md4/
H A Dmd4.c71 #define FF(a, b, c, d, x, s) \ argument
75 #define GG(a, b, c, d, x, s) \ argument
79 #define HH(a, b, c, d, x, s) \ argument
174 register krb5_ui_4 a = buf[0], b = buf[1], c = buf[2], d = buf[3]; in Transform() local
/illumos-gate/usr/src/uts/common/sys/
H A Dethernet.h123 #define ether_cmp(a, b) (((short *)b)[2] != ((short *)a)[2] || \ argument
127 #define ether_cmp(a, b) (bcmp((caddr_t)a, (caddr_t)b, 6)) argument
137 #define ether_copy(a, b) { ((short *)b)[0] = ((short *)a)[0]; \ argument
140 #define ether_copy(a, b) (bcopy((caddr_t)a, (caddr_t)b, 6)) argument
/illumos-gate/usr/src/uts/sun4u/sys/
H A Drmc_comm_lproto.h87 #define NEXT_SEQID(a) (((a) + 1) % 0x100) argument
90 #define PREV_SEQID(a) (((a) == 0) ? 0xff : (a)-1) argument
93 #define IS_NEXT_SEQID(a, b) ((b) == NEXT_SEQID(a)) argument
/illumos-gate/usr/src/contrib/ast/src/lib/libast/vmalloc/
H A Dvmopen.c42 Vmuchar_t a[ROUND(sizeof(Vmdata_t),ALIGN)]; member
46 Vmuchar_t a[ROUND(sizeof(Vmalloc_t),ALIGN)]; member
50 Vmuchar_t a[ROUND(sizeof(Seg_t),ALIGN)]; member
/illumos-gate/usr/src/tools/smatch/src/validation/optim/
H A Dbitfield-size.c2 unsigned int a:4; member
13 signed int a:4; member
24 int a:4; member
/illumos-gate/usr/src/contrib/ast/src/lib/libast/path/
H A Dpathpath.c41 pathpath(char* path, const char* p, const char* a, int mode) in pathpath()
51 pathpath_20100601(const char* p, const char* a, int mode, register char* path, size_t size) in pathpath_20100601()
H A Dpathaccess.c40 pathaccess(char* path, const char* dirs, const char* a, const char* b, int mode) in pathaccess()
50 pathaccess_20100601(register const char* dirs, const char* a, const char* b, register int mode, reg… in pathaccess_20100601()
H A Dpathcat.c46 pathcat(char* path, const char* dirs, int sep, const char* a, const char* b) in pathcat()
58 pathcat_20100601(register const char* dirs, int sep, const char* a, register const char* b, char* p… in pathcat_20100601()
/illumos-gate/usr/src/uts/sun4u/io/pci/
H A Dsimba.c72 #define DEBUG1(f, s, a) if ((f)& simba_debug_flags) \ argument
75 #define DEBUG2(f, s, a, b) if ((f)& simba_debug_flags) \ argument
78 #define DEBUG3(f, s, a, b, c) if ((f)& simba_debug_flags) \ argument
81 #define DEBUG4(f, s, a, b, c, d) if ((f)& simba_debug_flags) \ argument
84 #define DEBUG5(f, s, a, b, c, d, e) if ((f)& simba_debug_flags) \ argument
93 #define DEBUG1(f, s, a) argument
94 #define DEBUG2(f, s, a, b) argument
95 #define DEBUG3(f, s, a, b, c) argument
96 #define DEBUG4(f, s, a, b, c, d) argument
97 #define DEBUG5(f, s, a, b, c, d, e) argument
[all …]
/illumos-gate/usr/src/lib/libmp/common/
H A Dmdiv.c33 mp_mdiv(MINT *a, MINT *b, MINT *q, MINT *r) in mp_mdiv()
62 m_dsb(int qx, int n, short *a, short *b) in m_dsb()
148 m_div(MINT *a, MINT *b, MINT *q, MINT *r) in m_div()
/illumos-gate/usr/src/boot/libsa/
H A Dstand.h377 static __inline int imax(int a, int b) { return (a > b ? a : b); } in imax()
378 static __inline int imin(int a, int b) { return (a < b ? a : b); } in imin()
379 static __inline long lmax(long a, long b) { return (a > b ? a : b); } in lmax()
380 static __inline long lmin(long a, long b) { return (a < b ? a : b); } in lmin()
381 static __inline uint_t max(uint_t a, uint_t b) { return (a > b ? a : b); } in max()
382 static __inline uint_t min(uint_t a, uint_t b) { return (a < b ? a : b); } in min()
383 static __inline quad_t qmax(quad_t a, quad_t b) { return (a > b ? a : b); } in qmax()
384 static __inline quad_t qmin(quad_t a, quad_t b) { return (a < b ? a : b); } in qmin()
385 static __inline ulong_t ulmax(ulong_t a, ulong_t b) { return (a > b ? a : b); } in ulmax()
386 static __inline ulong_t ulmin(ulong_t a, ulong_t b) { return (a < b ? a : b); } in ulmin()
/illumos-gate/usr/src/lib/libzpool/common/sys/
H A Dzfs_context.h127 #define DTRACE_PROBE(a) \ argument
133 #define DTRACE_PROBE1(a, b, c) \ argument
139 #define DTRACE_PROBE2(a, b, c, d, e) \ argument
145 #define DTRACE_PROBE3(a, b, c, d, e, f, g) \ argument
151 #define DTRACE_PROBE4(a, b, c, d, e, f, g, h, i) \ argument
168 #define newproc(f, a, cid, pri, ctp, pid) (ENOSYS) argument
255 #define VOP_SPACE(vp, cmd, a, f, o, cr, ct) 0 argument
336 #define TREE_ISIGN(a) (((a) > 0) - ((a) < 0)) argument
337 #define TREE_CMP(a, b) (((a) > (b)) - ((a) < (b))) argument
338 #define TREE_PCMP(a, b) \ argument

12345678910>>...79