Home
last modified time | relevance | path

Searched defs:y (Results 1 – 25 of 1007) sorted by relevance

12345678910>>...41

/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/include/
H A Dcyclic_oper.h58 #define CYCLIC_LT_8(x, y) (_cyclic_lt(x, y, 128)) argument
59 #define CYCLIC_LT_16(x, y) (_cyclic_lt(x, y, 32768)) argument
63 #define CYCLIC_LE_8(x, y) (_cyclic_le(x, y, 128)) argument
68 #define CYCLIC_GT_8(x, y) (!(CYCLIC_LE_8(x, y))) argument
69 #define CYCLIC_GT_16(x, y) (!(CYCLIC_LE_16(x, y))) argument
70 #define CYCLIC_GT_24(x, y) (!(CYCLIC_LE_24(x, y))) argument
71 #define CYCLIC_GT_32(x, y) (!(CYCLIC_LE_32(x, y))) argument
73 #define CYCLIC_GE_8(x, y) (!(CYCLIC_LT_8(x, y))) argument
74 #define CYCLIC_GE_16(x, y) (!(CYCLIC_LT_16(x, y))) argument
75 #define CYCLIC_GE_24(x, y) (!(CYCLIC_LT_24(x, y))) argument
[all …]
/illumos-gate/usr/src/tools/smatch/src/validation/backend/
H A Dcmp-ops.c1 static int sete(int x, int y) in sete()
6 static int setne(int x, int y) in setne()
11 static int setl(int x, int y) in setl()
16 static int setg(int x, int y) in setg()
21 static int setle(int x, int y) in setle()
26 static int setge(int x, int y) in setge()
51 static int setfe(float x, float y) in setfe()
56 static int setfne(float x, float y) in setfne()
61 static int setfl(float x, float y) in setfl()
66 static int setfg(float x, float y) in setfg()
[all …]
H A Darithmetic-ops.c1 static int add(int x, int y) in add()
11 static float fadd(float x, float y) in fadd()
16 static double dadd(double x, double y) in dadd()
21 static int sub(int x, int y) in sub()
31 static float fsub(float x, float y) in fsub()
36 static double dsub(double x, double y) in dsub()
41 static int mul(int x, int y) in mul()
51 static float fmul(float x, float y) in fmul()
61 static int div(int x, int y) in div()
71 static float fdiv(float x, float y) in fdiv()
[all …]
H A Dbitwise-ops.c1 static int shl(int x, int y) in shl()
6 static unsigned int ushl(unsigned int x, unsigned int y) in ushl()
11 static int shr(int x, int y) in shr()
16 static unsigned int ushr(unsigned int x, unsigned int y) in ushr()
21 static int and(int x, int y) in and()
26 static unsigned int uand(unsigned int x, unsigned int y) in uand()
31 static int or(int x, int y) in or()
36 static unsigned int uor(unsigned int x, unsigned int y) in uor()
41 static int xor(int x, int y) in xor()
46 static unsigned int uxor(unsigned int x, unsigned int y) in uxor()
H A Dpointer-cmp.c1 int cmpint( int x, int y) { return x == y; } in cmpint()
2 int cmpflt( float x, float y) { return x == y; } in cmpflt()
3 int cmpvptr(void *x, void *y) { return x == y; } in cmpvptr()
4 int cmpiptr(int *x, int *y) { return x == y; } in cmpiptr()
6 int cmpmptr(long x, int *y) { return (int*)x == y; } in cmpmptr()
7 int cmpnptr(int *x, long y) { return x == (int*)y; } in cmpnptr()
H A Dlogical-ops.c1 static int and_bool(int x, int y) in and_bool()
6 static unsigned int uand_bool(unsigned int x, unsigned int y) in uand_bool()
11 static int or_bool(int x, int y) in or_bool()
16 static unsigned int uor_bool(unsigned int x, unsigned int y) in uor_bool()
/illumos-gate/usr/src/tools/smatch/src/validation/optim/
H A Dcanonical-add.c1 int xpc_add_ypc(int x, int y) in xpc_add_ypc()
6 int xmc_add_ypc(int x, int y) in xmc_add_ypc()
11 int xpc_add_ymc(int x, int y) in xpc_add_ymc()
16 int xmc_add_ymc(int x, int y) in xmc_add_ymc()
21 int xpc_sub_ypc(int x, int y) in xpc_sub_ypc()
26 int xmc_sub_ypc(int x, int y) in xmc_sub_ypc()
31 int xpc_sub_ymc(int x, int y) in xpc_sub_ymc()
36 int xmc_sub_ymc(int x, int y) in xmc_sub_ymc()
/illumos-gate/usr/src/uts/common/sys/
H A Dioccom.h63 #define _IO(x, y) (IOC_VOID|(x<<8)|y) argument
64 #define _IOR(x, y, t) \ argument
68 #define _IORN(x, y, t) ((int)((uint32_t)(IOC_OUT|(((t)&IOCPARM_MASK)<<16)| \ argument
71 #define _IOW(x, y, t) \ argument
75 #define _IOWN(x, y, t) ((int32_t)(uint32_t)(IOC_IN|(((t)&IOCPARM_MASK)<<16)| \ argument
78 #define _IOWR(x, y, t) \ argument
82 #define _IOWRN(x, y, t) \ argument
H A Ddebug.h113 #define VERIFY3B(x, y, z) VERIFY3_IMPL(x, y, z, boolean_t) argument
114 #define VERIFY3S(x, y, z) VERIFY3_IMPL(x, y, z, int64_t) argument
115 #define VERIFY3U(x, y, z) VERIFY3_IMPL(x, y, z, uint64_t) argument
116 #define VERIFY3P(x, y, z) VERIFY3_IMPL(x, y, z, uintptr_t) argument
120 #define ASSERT3B(x, y, z) VERIFY3_IMPL(x, y, z, boolean_t) argument
121 #define ASSERT3S(x, y, z) VERIFY3_IMPL(x, y, z, int64_t) argument
122 #define ASSERT3U(x, y, z) VERIFY3_IMPL(x, y, z, uint64_t) argument
126 #define ASSERT3B(x, y, z) ((void)0) argument
127 #define ASSERT3S(x, y, z) ((void)0) argument
128 #define ASSERT3U(x, y, z) ((void)0) argument
[all …]
/illumos-gate/usr/src/lib/libxcurses2/h/
H A Dcurses.h782 #define mvaddstr(y, x, s) \ argument
797 #define mvaddwstr(y, x, wcs) \ argument
862 #define mvwdelch(w, y, x) \ argument
883 #define mvwgetch(w, y, x) \ argument
887 #define mvget_wch(y, x, wcp) \ argument
898 #define mvgetstr(y, x, s) \ argument
937 #define mvhline(y, x, ch, n) \ argument
965 #define mvwinch(w, y, x) \ argument
969 #define mvin_wch(y, x, cp) \ argument
1011 #define mvinstr(y, x, s) \ argument
[all …]
/illumos-gate/usr/src/lib/libxcurses/h/
H A Dcurses.h833 #define mvaddch(y,x,ch) (move(y,x)?ERR:addch(ch)) argument
859 #define mvaddstr(y,x,s) (move(y,x)?ERR:addstr(s)) argument
914 #define mvdelch(y,x) (move(y,x)?ERR:delch()) argument
934 #define mvgetch(y,x) (move(y,x)?ERR:getch()) argument
944 #define mvgetstr(y,x,s) (move(y,x)?ERR:getstr(s)) argument
986 #define mvinch(y,x) (move(y,x)?ERR:inch()) argument
1012 #define mvinstr(y,x,s) (move(y,x)?ERR:instr(s)) argument
1026 #define mvinsch(y,x,ch) (move(y,x)?ERR:insch(ch)) argument
1049 #define is_linetouched(w, y) (0 <= (w)->_last[y]) argument
1053 #define move(y, x) wmove(stdscr, y, x) argument
[all …]
/illumos-gate/usr/src/boot/include/
H A Dmath.h118 #define isgreater(x, y) __builtin_isgreater((x), (y)) argument
119 #define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y)) argument
120 #define isless(x, y) __builtin_isless((x), (y)) argument
121 #define islessequal(x, y) __builtin_islessequal((x), (y)) argument
122 #define islessgreater(x, y) __builtin_islessgreater((x), (y)) argument
123 #define isunordered(x, y) __builtin_isunordered((x), (y)) argument
125 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) argument
127 #define isless(x, y) (!isunordered((x), (y)) && (x) < (y)) argument
128 #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y)) argument
129 #define islessgreater(x, y) (!isunordered((x), (y)) && \ argument
[all …]
/illumos-gate/usr/src/lib/libc/sparc/fp/
H A D_Q_fcc.c44 _Q_feq(const union longdouble *x, const union longdouble *y) in _Q_feq()
75 _Q_fne(const union longdouble *x, const union longdouble *y) in _Q_fne()
105 _Q_flt(const union longdouble *x, const union longdouble *y) in _Q_flt()
148 _Q_fle(const union longdouble *x, const union longdouble *y) in _Q_fle()
192 _Q_fgt(const union longdouble *x, const union longdouble *y) in _Q_fgt()
235 _Q_fge(const union longdouble *x, const union longdouble *y) in _Q_fge()
/illumos-gate/usr/src/ucbhead/
H A Dcurses.h110 #define move(y, x) VOID(wmove(stdscr, y, x)) argument
135 #define mvwdelch(win, y, x) VOID(wmove(win, y, x) == ERR ? \ argument
137 #define mvwinsch(win, y, x, c) VOID(wmove(win, y, x) == ERR ? \ argument
139 #define mvaddch(y, x, ch) mvwaddch(stdscr, y, x, ch) argument
140 #define mvgetch(y, x) mvwgetch(stdscr, y, x) argument
141 #define mvaddstr(y, x, str) mvwaddstr(stdscr, y, x, str) argument
142 #define mvgetstr(y, x, str) mvwgetstr(stdscr, y, x, str) argument
143 #define mvinch(y, x) mvwinch(stdscr, y, x) argument
144 #define mvdelch(y, x) mvwdelch(stdscr, y, x) argument
145 #define mvinsch(y, x, c) mvwinsch(stdscr, y, x, c) argument
[all …]
/illumos-gate/usr/src/tools/smatch/src/validation/
H A Dfp-ops.c1 double fadd(double x, double y) { return x + y; } in fadd()
2 double fsub(double x, double y) { return x - y; } in fsub()
3 double fmul(double x, double y) { return x * y; } in fmul()
4 double fdiv(double x, double y) { return x / y; } in fdiv()
/illumos-gate/usr/src/head/
H A Dtgmath.h69 #define pow(x, y) __tgmath_pow(x, y) argument
79 #define atan2(y, x) __tgmath_atan2(y, x) argument
85 #define copysign(x, y) __tgmath_copysign(x, y) argument
95 #define fdim(x, y) __tgmath_fdim(x, y) argument
99 #define fma(x, y, z) __tgmath_fma(x, y, z) argument
101 #define fmax(x, y) __tgmath_fmax(x, y) argument
103 #define fmin(x, y) __tgmath_fmin(x, y) argument
105 #define fmod(x, y) __tgmath_fmod(x, y) argument
109 #define hypot(x, y) __tgmath_hypot(x, y) argument
135 #define nextafter(x, y) __tgmath_nextafter(x, y) argument
[all …]
/illumos-gate/usr/src/common/ficl/
H A Ddouble.c51 ficl2UnsignedDivide(ficl2Unsigned q, ficlUnsigned y) in ficl2UnsignedDivide()
127 ficl2IntegerMultiply(ficlInteger x, ficlInteger y) in ficl2IntegerMultiply()
163 ficl2UnsignedAdd(ficl2Unsigned x, ficl2Unsigned y) in ficl2UnsignedAdd()
182 ficl2UnsignedMultiply(ficlUnsigned x, ficlUnsigned y) in ficl2UnsignedMultiply()
204 ficl2UnsignedSubtract(ficl2Unsigned x, ficl2Unsigned y) in ficl2UnsignedSubtract()
260 ficl2UnsignedOr(ficl2Unsigned x, ficl2Unsigned y) in ficl2UnsignedOr()
275 ficl2UnsignedCompare(ficl2Unsigned x, ficl2Unsigned y) in ficl2UnsignedCompare()
299 ficl2UnsignedDivide(ficl2Unsigned q, ficlUnsigned y) in ficl2UnsignedDivide()
/illumos-gate/usr/src/head/iso/
H A Dmath_c99.h124 #define isgreater(x, y) __builtin_isgreater(x, y) argument
126 #define isgreaterequal(x, y) __builtin_isgreaterequal(x, y) argument
128 #define isless(x, y) __builtin_isless(x, y) argument
130 #define islessequal(x, y) __builtin_islessequal(x, y) argument
132 #define islessgreater(x, y) __builtin_islessgreater(x, y) argument
134 #define isunordered(x, y) __builtin_isunordered(x, y) argument
/illumos-gate/usr/src/cmd/sendmail/include/sm/
H A Dcdefs.h49 # define __CONCAT(x,y) x ## y argument
53 # define __CONCAT(x,y) x/**/y argument
133 # define PRINTFLIKE(x,y) __attribute__ ((__format__ (__printf__, x, y))) argument
135 # define PRINTFLIKE(x,y) argument
141 # define SCANFLIKE(x,y) __attribute__ ((__format__ (__scanf__, x, y))) argument
143 # define SCANFLIKE(x,y) argument
/illumos-gate/usr/src/compat/bhyve/sys/
H A Dcdefs.h72 #define _Static_assert(x, y) static_assert(x, y) argument
76 #define _Static_assert(x, y) __Static_assert(x, __COUNTER__) argument
77 #define __Static_assert(x, y) ___Static_assert(x, y) argument
78 #define ___Static_assert(x, y) typedef char __assert_ ## y[(x) ? 1 : -1] \ argument
81 #define _Static_assert(x, y) struct __hack argument
84 #define static_assert(x, y) _Static_assert(x, y) argument
H A Dparam.h42 #define rounddown(x,y) (((x)/(y))*(y)) argument
43 #define rounddown2(x, y) ((x)&(~((y)-1))) /* if y is power of two */ argument
44 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) /* to any y */ argument
45 #define roundup2(x,y) (((x)+((y)-1))&(~((y)-1))) /* if y is powers of two */ argument
/illumos-gate/usr/src/cmd/audio/include/
H A DAudioTypes.h154 inline double min(const Double& x, const Double& y) { in min()
158 inline double min(const Double& x, double y) { in min()
161 inline double min(double x, const Double& y) { in min()
165 inline double max(const Double& x, const Double& y) { in max()
168 inline double max(const Double& x, double y) { in max()
171 inline double max(double x, const Double& y) { in max()
/illumos-gate/usr/src/lib/libm1/common/
H A Dlibmv1.c138 __atan2(double y, double x) { in __atan2()
162 __copysign(double x, double y) { in __copysign()
216 __fmod(double x, double y) { in __fmod()
234 __hypot(double x, double y) { in __hypot()
264 __jn(int n, double y) { in __jn()
306 __nextafter(double x, double y) { in __nextafter()
312 __pow(double x, double y) { in __pow()
330 __scalb(double x, double y) { in __scalb()
420 __atan2f(float y, float x) { in __atan2f()
462 __fmodf(float x, float y) { in __fmodf()
[all …]
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dhln.c63 mvhline(int y, int x, chtype h, int n) in mvhline()
80 mvwhline(WINDOW *w, int y, int x, chtype h, int n) in mvwhline()
113 mvvline(int y, int x, chtype v, int n) in mvvline()
130 mvwvline(WINDOW *w, int y, int x, chtype v, int n) in mvwvline()
H A Dhln_st.c63 mvhline_set(int y, int x, const cchar_t *h, int n) in mvhline_set()
80 mvwhline_set(WINDOW *w, int y, int x, const cchar_t *h, int n) in mvwhline_set()
113 mvvline_set(int y, int x, const cchar_t *v, int n) in mvvline_set()
130 mvwvline_set(WINDOW *w, int y, int x, const cchar_t *v, int n) in mvwvline_set()

12345678910>>...41