/openbsd-src/gnu/usr.bin/binutils-2.17/opcodes/ |
H A D | cgen-ops.h | 38 #define ANDIF(x, y) ((x) && (y)) argument 39 #define ORIF(x, y) ((x) || (y)) argument 41 #define SUBBI(x, y) ((x) - (y)) argument 42 #define ANDBI(x, y) ((x) & (y)) argument 43 #define ORBI(x, y) ((x) | (y)) argument 44 #define XORBI(x, y) ((x) ^ (y)) argument 48 #define EQBI(x, y) ((BI) (x) == (BI) (y)) argument 49 #define NEBI(x, y) ((BI) (x) != (BI) (y)) argument 50 #define LTBI(x, y) ((BI) (x) < (BI) (y)) argument 51 #define LEBI(x, y) ((BI) (x) <= (BI) (y)) argument [all …]
|
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/ |
H A D | 990326-1.c | 9 static struct a x = { 1, 2, ~1 }, y = { 65, 2, ~2 }; in a1() local 17 static struct a x = { 1, 66, ~1 }, y = { 1, 2, ~2 }; in a2() local 25 static struct a x = { 9, 66, ~1 }, y = { 33, 18, ~2 }; in a3() local 38 static struct b x = { ~1, 2, 1 }, y = { ~2, 2, 65 }; in b1() local 46 static struct b x = { ~1, 66, 1 }, y = { ~2, 2, 1 }; in b2() local 54 static struct b x = { ~1, 66, 9 }, y = { ~2, 18, 33 }; in b3() local 66 static struct c x = { ~1, 2, 1 }, y = { ~2, 2, 65 }; in c1() local 74 static struct c x = { ~1, 66, 1 }, y = { ~2, 2, 1 }; in c2() local 82 static struct c x = { ~1, 66, 9 }, y = { ~2, 18, 33 }; in c3() local 94 static struct d x = { 1, 2, ~1 }, y = { 65, 2, ~2 }; in d1() local [all …]
|
H A D | cmpdi-1.c | 4 feq (x, y) in feq() argument 14 fne (x, y) in fne() argument 24 flt (x, y) in flt() argument 34 fge (x, y) in fge() argument 44 fgt (x, y) in fgt() argument 54 fle (x, y) in fle() argument 64 fltu (x, y) in fltu() argument 74 fgeu (x, y) in fgeu() argument 84 fgtu (x, y) in fgtu() argument 94 fleu (x, y) in fleu() argument
|
H A D | compare-3.c | 11 test1 (int x, int y) in test1() 18 test2 (int x, int y) in test2() 25 test3 (int x, int y) in test3() 32 test4 (int x, int y) in test4() 42 test5 (int x, int y) in test5() 52 test6 (int x, int y) in test6() 62 all_tests (int x, int y) in all_tests()
|
H A D | 20010904-2.c | 2 typedef struct y { X x; X y[31]; int c; } Y; struct 4 Y y[2]; variable
|
H A D | compare-1.c | 9 int ieq (int x, int y, int ok) in ieq() 40 int ine (int x, int y, int ok) in ine() 50 int ilt (int x, int y, int ok) in ilt() 60 int ile (int x, int y, int ok) in ile() 70 int igt (int x, int y, int ok) in igt() 80 int ige (int x, int y, int ok) in ige()
|
H A D | divmod-1.c | 11 div3 (signed char x, signed char y) in div3() 16 div4 (signed short x, signed short y) in div4() 31 mod3 (signed char x, signed char y) in mod3() 36 mod4 (signed short x, signed short y) in mod4() 42 mod5 (signed long x, signed long y) in mod5() 48 mod6 (unsigned long x, unsigned long y) in mod6()
|
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/ieee/ |
H A D | fp-cmp-5.c | 4 test_isunordered(double x, double y) in test_isunordered() 10 test_not_isunordered(double x, double y) in test_not_isunordered() 16 test_isless(double x, double y) in test_isless() 22 test_not_isless(double x, double y) in test_not_isless() 28 test_islessequal(double x, double y) in test_islessequal() 34 test_not_islessequal(double x, double y) in test_not_islessequal() 40 test_isgreater(double x, double y) in test_isgreater() 46 test_not_isgreater(double x, double y) in test_not_isgreater() 52 test_isgreaterequal(double x, double y) in test_isgreaterequal() 58 test_not_isgreaterequal(double x, double y) in test_not_isgreaterequal() [all …]
|
/openbsd-src/sys/dev/pci/drm/include/linux/ |
H A D | math64.h | 10 div_u64(uint64_t x, uint32_t y) in div_u64() 16 div_s64(int64_t x, int64_t y) in div_s64() 22 div64_u64(uint64_t x, uint64_t y) in div64_u64() 28 div64_u64_rem(uint64_t x, uint64_t y, uint64_t *rem) in div64_u64_rem() 35 div_u64_rem(uint64_t x, uint32_t y, uint32_t *rem) in div_u64_rem() 42 div64_s64(int64_t x, int64_t y) in div64_s64() 48 mul_u32_u32(uint32_t x, uint32_t y) in mul_u32_u32() 54 mul_u64_u32_div(uint64_t x, uint32_t y, uint32_t div) in mul_u64_u32_div() 59 #define DIV64_U64_ROUND_UP(x, y) \ argument 66 mul_u64_u32_shr(uint64_t x, uint32_t y, unsigned int shift) in mul_u64_u32_shr()
|
H A D | math.h | 8 #define round_up(x, y) ((((x) + ((y) - 1)) / (y)) * (y)) argument 9 #define round_down(x, y) (((x) / (y)) * (y)) /* y is power of two */ argument 10 #define rounddown(x, y) (((x) / (y)) * (y)) /* arbitrary y */ argument 11 #define DIV_ROUND_UP(x, y) (((x) + ((y) - 1)) / (y)) argument 12 #define DIV_ROUND_UP_ULL(x, y) DIV_ROUND_UP(x, y) argument 13 #define DIV_ROUND_DOWN(x, y) ((x) / (y)) argument 14 #define DIV_ROUND_DOWN_ULL(x, y) DIV_ROUND_DOWN(x, y) argument 15 #define DIV_ROUND_CLOSEST(x, y) (((x) + ((y) / 2)) / (y)) argument 16 #define DIV_ROUND_CLOSEST_ULL(x, y) DIV_ROUND_CLOSEST(x, y) argument
|
H A D | sysfs.h | 24 #define sysfs_create_link(x, y, z) 0 argument 25 #define sysfs_remove_link(x, y) argument 26 #define sysfs_create_group(x, y) 0 argument 27 #define sysfs_remove_group(x, y) argument 28 #define sysfs_remove_file(x, y) argument 29 #define sysfs_create_bin_file(x, y) 0 argument 30 #define sysfs_remove_bin_file(x, y) argument 31 #define sysfs_remove_file_from_group(x, y, z) argument 32 #define sysfs_create_files(x, y) 0 argument 33 #define sysfs_remove_files(x, y) argument
|
H A D | align.h | 8 #define roundup2(x, y) (((x) + ((y) - 1)) & (~((__typeof(x))(y) - 1))) argument 9 #define rounddown2(x, y) ((x) & ~((__typeof(x))(y) - 1)) argument 12 #define ALIGN(x, y) roundup2((x), (y)) argument 14 #define IS_ALIGNED(x, y) (((x) & ((y) - 1)) == 0) argument 15 #define PTR_ALIGN(x, y) ((__typeof(x))roundup2((unsigned long)(x), (y))) argument 16 #define ALIGN_DOWN(x, y) ((__typeof(x))rounddown2((unsigned long)(x), (y))) argument
|
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/trad/ |
H A D | redef2.c | 19 #define bar(x, y) x+y /* { dg-warning "previous def" "bar prev def" } */ argument 20 #define bar(x, y) x+x /* { dg-warning "redefined" "bar redefined" } */ argument 22 #define bat(x, y) x+y /* { dg-warning "previous def" "bat prev def" } */ argument 23 #define bat(x, y) x+ y /* { dg-warning "redefined" "bat redefined" } */ argument 25 #define baz(x, y) x+y /* { dg-warning "previous def" "baz prev def" } */ argument 26 #define baz(x, y) x +y /* { dg-warning "redefined" "baz redefined" } */ argument 28 #define f(x, y) "x y" /* { dg-warning "previous def" "f prev def" } */ argument 29 #define f(x, y) "x y" /* { dg-warning "redefined" "f redefined" } */ argument 31 #define g(x, y) 'x' /* { dg-warning "previous def" "g prev def" } */ argument 32 #define g(x, y) ' x' /* { dg-warning "redefined" "g redefined" } */ argument
|
/openbsd-src/lib/libc/arch/sh/ |
H A D | SYS.h | 57 #define _HIDDEN_ALIAS(x,y) \ argument 60 #define _HIDDEN_FALIAS(x,y) \ argument 129 #define _SYSCALL_NOERROR(x,y) \ argument 132 #define _SYSCALL_HIDDEN_NOERROR(x,y) \ argument 136 #define SET_ERRNO_AND_RETURN(y) \ argument 143 #define _SYSCALL(x,y) \ argument 148 #define _SYSCALL_HIDDEN(x,y) \ argument 154 #define __END_HIDDEN(x,y) \ argument 159 #define __END(x,y) \ argument 168 #define PSEUDO_NOERROR(x,y) \ argument [all …]
|
/openbsd-src/sys/arch/arm/include/ |
H A D | asm.h | 45 # define __CONCAT(x,y) x ## y argument 48 # define __CONCAT(x,y) x/**/y argument 77 #define ENTRY(y) _ENTRY(y); _PROF_PROLOGUE argument 78 #define ENTRY_NP(y) _ENTRY(y) argument 79 #define ENTRY_NB(y) _ENTRY_NB(y); _PROF_PROLOGUE argument 80 #define ASENTRY(y) _ENTRY(y); _PROF_PROLOGUE argument 81 #define ASENTRY_NP(y) _ENTRY(y) argument 82 #define END(y) .size y, . - y argument 85 #define PIC_SYM(x,y) x(y) argument 87 #define PIC_SYM(x,y) x argument
|
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/ |
H A D | 20011130-1.c | 4 #define WORK(x, y) __asm__ ("" : "=r" (x) : "0" (x)); y += x + 26 argument 5 #define SOME_WORK(x, y) WORK(x, y); WORK(x, y); WORK(x, y); WORK(x, y) argument 6 #define MORE_WORK(x, y) SOME_WORK(x, y); SOME_WORK(x, y); SOME_WORK(x, y) argument 7 #define EVEN_MORE_WORK(x, y) MORE_WORK(x, y); MORE_WORK(x, y); MORE_WORK(x, y) argument 8 #define LOTS_OF_WORK(x, y) EVEN_MORE_WORK(x, y); EVEN_MORE_WORK(x, y) argument 14 int y; in foo() local
|
/openbsd-src/games/hack/ |
H A D | hack.pri.c | 124 atl(int x, int y, int ch) in atl() 139 on_scr(int x, int y) in on_scr() 154 tmp_at(schar x, schar y) in tmp_at() 185 Tmp_at(schar x, schar y) in Tmp_at() 231 at(xchar x, xchar y, char ch) in at() 263 int x,y; in docrt() local 303 int x,y; in docorner() local 374 prl(int x, int y) in prl() 416 news0(xchar x, xchar y) in news0() 465 newsym(int x, int y) in newsym() [all …]
|
/openbsd-src/gnu/llvm/compiler-rt/lib/builtins/ |
H A D | int_math.h | 61 #define crt_copysign(x, y) copysign((x), (y)) argument 62 #define crt_copysignf(x, y) copysignf((x), (y)) argument 63 #define crt_copysignl(x, y) copysignl((x), (y)) argument 65 #define crt_copysign(x, y) __builtin_copysign((x), (y)) argument 66 #define crt_copysignf(x, y) __builtin_copysignf((x), (y)) argument 67 #define crt_copysignl(x, y) __builtin_copysignl((x), (y)) argument 81 #define crt_fmaxl(x, y) __max((x), (y)) argument 83 #define crt_fmaxl(x, y) __builtin_fmaxl((x), (y)) argument 93 #define crt_scalbnl(x, y) scalbnl((x), (y)) argument 95 #define crt_scalbnl(x, y) __builtin_scalbnl((x), (y)) argument
|
/openbsd-src/include/ |
H A D | tgmath.h | 72 #define __tg_impl_simple(x, y, z, fn, fnf, fnl, ...) \ argument 78 #define __tg_impl_full(x, y, z, fn, fnf, fnl, cfn, cfnf, cfnl, ...) \ argument 90 #define __tg_simple2(x, y, fn) \ argument 113 #define pow(x, y) __tg_impl_full(x, x, y, pow, powf, powl, \ argument 122 #define atan2(x, y) __tg_simple2(x, y, atan2) argument 125 #define copysign(x, y) __tg_simple2(x, y, copysign) argument 130 #define fdim(x, y) __tg_simple2(x, y, fdim) argument 132 #define fma(x, y, z) __tg_impl_simple(x, y, z, fma, fmaf, fmal, x, y, z) argument 133 #define fmax(x, y) __tg_simple2(x, y, fmax) argument 134 #define fmin(x, y) __tg_simple2(x, y, fmin) argument [all …]
|
/openbsd-src/gnu/gcc/gcc/config/ |
H A D | darwin-64.c | 63 word_type __cmpdi2 (DI x, DI y) { return x < y ? 0 : x == y ? 1 : 2; } in __cmpdi2() 65 DI __divdi3 (DI x, DI y) { return x / y; } in __divdi3() 67 DI __moddi3 (DI x, DI y) { return x % y; } in __moddi3() 68 DI __muldi3 (DI x, DI y) { return x * y; } in __muldi3() 72 word_type __ucmpdi2 (uDI x, uDI y) { return x < y ? 0 : x == y ? 1 : 2; } in __ucmpdi2() 73 uDI __udivdi3 (uDI x, uDI y) { return x / y; } in __udivdi3() 74 uDI __udivmoddi4 (uDI x, uDI y, uDI *r) { *r = x % y; return x / y; } in __udivmoddi4() 75 uDI __umoddi3 (uDI x, uDI y) { return x % y; } in __umoddi3()
|
/openbsd-src/sys/arch/riscv64/include/ |
H A D | asm.h | 45 # define __CONCAT(x,y) x ## y argument 48 # define __CONCAT(x,y) x/**/y argument 89 #define ENTRY(y) _ENTRY(y); _PROF_PROLOGUE argument 90 #define ENTRY_NP(y) _ENTRY(y) argument 91 #define ENTRY_NB(y) _ENTRY_NB(y); _PROF_PROLOGUE argument 92 #define ASENTRY(y) _ENTRY(y); _PROF_PROLOGUE argument 93 #define ASENTRY_NP(y) _ENTRY(y) argument 94 #define END(y) .size y, . - y argument 99 #define PIC_SYM(x,y) x(y) argument 101 #define PIC_SYM(x,y) x argument
|
/openbsd-src/distrib/special/more/ |
H A D | curses.h | 160 #define move(y, x) wmove(stdscr, y, x) argument 168 #define mvaddbytes(y, x, s, n) mvwaddbytes(stdscr, y, x, s, n) argument 169 #define mvaddch(y, x, ch) mvwaddch(stdscr, y, x, ch) argument 170 #define mvaddnstr(y, x, s, n) mvwaddnstr(stdscr, y, x, s, n) argument 171 #define mvaddstr(y, x, s) mvwaddstr(stdscr, y, x, s) argument 172 #define mvdelch(y, x) mvwdelch(stdscr, y, x) argument 173 #define mvgetch(y, x) mvwgetch(stdscr, y, x) argument 174 #define mvgetstr(y, x, s) mvwgetstr(stdscr, y, x, s) argument 175 #define mvinch(y, x) mvwinch(stdscr, y, x) argument 176 #define mvinsch(y, x, c) mvwinsch(stdscr, y, x, c) argument [all …]
|
/openbsd-src/sys/arch/i386/include/ |
H A D | asm.h | 64 #define CVAROFF(x, y) x + y argument 67 # define __CONCAT(x,y) x ## y argument 70 # define __CONCAT(x,y) x/**/y argument 116 #define ENTRY(y) _ENTRY(y); _PROF_PROLOGUE argument 117 #define ENTRY_NB(y) _ENTRY_NB(y); _PROF_PROLOGUE argument 118 #define NENTRY(y) _ENTRY(y) argument 119 #define ASENTRY(y) _ENTRY(y); _PROF_PROLOGUE argument 120 #define NASENTRY(y) _ENTRY(y) argument 121 #define END(y) .size y, . - y argument
|
/openbsd-src/regress/lib/libm/msun/ |
H A D | test-utils.h | 85 CMPLXL(long double x, long double y) in CMPLXL() 109 fpequal_cs(long double x, long double y, bool checksign) in fpequal_cs() 120 fpequal_tol(long double x, long double y, long double tol, in fpequal_tol() 150 #define CHECK_FPEQUAL(x, y) CHECK_FPEQUAL_CS(x, y, true) argument 152 #define CHECK_FPEQUAL_CS(x, y, checksign) do { \ argument 159 #define CHECK_FPEQUAL_TOL(x, y, tol, flags) do { \ argument 178 cfpequal_cs(x, y, checksign) in cfpequal_cs() argument 188 #define CHECK_CFPEQUAL_CS(x, y, checksign) do { \ argument 198 #define CHECK_CFPEQUAL_TOL(x, y, tol, flags) do { \ argument
|
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/template/ |
H A D | anon1.C | 11 struct y { struct 12 typedef struct { argument 16 vector<s> array; argument 21 int i = y<x>().foo (); argument
|