Searched refs:ex (Results 1 - 25 of 239) sorted by relevance

12345678910

/haiku-buildtools/gcc/gcc/testsuite/g++.dg/warn/
H A Dsentinel.C3 extern void ex (int i, ...) __attribute__ ((__sentinel__(0)));
7 ex (1, 0); /* { dg-warning "missing sentinel in function call" "" } */
8 ex (1, 0L); /* { dg-warning "missing sentinel in function call" "" } */
9 ex (1, (void *)0);
10 ex (1, __null); /* { dg-bogus "sentinel" } */
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dnested-func-5.c6 void ex(int (*)(void));
13 ex(bar);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/
H A Dauto19.C6 } ex; variable in typeref:struct:Explicit
8 auto ex2(ex); // Line 6
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/init/
H A Dref9.C3 struct ex;
6 ex eval() const;
10 struct ex { struct
12 ex() : bp(0) { } function in struct:ex
13 ex(const basic &);
14 virtual ~ex();
18 ex basic::eval() const {
22 inline ex::ex(const basic &b) { construct_from_basic (b); } function in class:ex
23 inline ex
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/parse/
H A Derror54.C3 class ex {}; class
7 class ex2 : public ex {};
10 class ex2 : public ex {};
/haiku-buildtools/binutils/gas/testsuite/gas/z80/
H A Dmisc.s4 ex af,af'
6 ex de,hl
7 ex (sp),hl
8 ex (sp),ix
9 ex (sp),iy
H A Dmisc.d9 [ ]+[0-9a-f]+:[ ]+08[ ]+ex af,af'
11 [ ]+[0-9a-f]+:[ ]+eb[ ]+ex de,hl
12 [ ]+[0-9a-f]+:[ ]+e3[ ]+ex \(sp\),hl
13 [ ]+[0-9a-f]+:[ ]+dd e3[ ]+ex \(sp\),ix
14 [ ]+[0-9a-f]+:[ ]+fd e3[ ]+ex \(sp\),iy
H A Dquotes.s8 ex af,af'
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/template/
H A Dcrash28.C11 a ex; local
12 g(ex.what); // { dg-error "" }
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dlarge_unit_1.f907 logical ex,op variable
8 INQUIRE(unit=k, exist=ex,opened=op)
9 print *, ex, op
10 IF (ex) THEN
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Deh3.C20 e ex; local
21 throw ex;
/haiku-buildtools/legacy/gcc/libchill/
H A Dexh.c105 __cause_exception (ex, file, lineno, user_arg)
106 char *ex;
114 cause_exception (ex, file, lineno, user_arg);
121 if (list->ex == __ch_else_except || EX_EQ(list->ex, ex)) /* found */
130 unhandled_exception (ex, file, lineno, user_arg);
154 __cause_ex1 (ex, file, lineno)
155 char *ex;
159 __cause_exception (ex, fil
[all...]
H A Dunhex1.c35 extern void cause_exception (char *ex, char *file, int lineno, int arg);
36 extern void unhandled_exception (char *ex, char *file, int lineno, int arg);
H A Dallgmem.c32 extern void __cause_ex1 (char *ex, char *filename, int lineno);
/haiku-buildtools/gcc/libcilkrts/runtime/
H A Dbug.h72 #define CILK_ASSERT(ex) \
73 (__builtin_expect((ex) != 0, 1) ? (void)0 : \
74 __cilkrts_bug(__cilkrts_assertion_failed, __FILE__, __LINE__, #ex))
76 #define CILK_ASSERT_MSG(ex, msg) \
77 (__builtin_expect((ex) != 0, 1) ? (void)0 : \
79 #ex "\n " msg))
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/graphite/
H A Did-8.f3 dimension ex(mxgtot),cs(mxgtot)
5 u = ex(ig)+ex(jg)
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/opt/
H A Dpr23714.C13 catch (int *ex)
/haiku-buildtools/gcc/mpc/src/
H A Dasin.c149 mpfr_exp_t ex, ey, err; local
160 ex = mpfr_get_exp (mpc_realref(z1));
163 ex = ex - mpfr_get_exp (mpc_realref(z1));
164 ex = (ex <= 0) ? 0 : ex;
165 /* err(x) <= 2^ex * ulp(x) */
166 ex = ex
[all...]
/haiku-buildtools/gcc/libquadmath/math/
H A Dcoshq.c63 int32_t ex; local
67 ex = u.words32.w0 & 0x7fffffff;
70 u.words32.w0 = ex;
73 if (ex >= 0x7fff0000)
77 if (ex < 0x3ffd62e4) /* 0.3465728759765625 */
81 if (ex < 0x3fb80000) /* |x| < 2^-116 */
88 if (ex < 0x40044000)
95 if (ex <= 0x400c62e3) /* 11356.375 */
/haiku-buildtools/gcc/libstdc++-v3/testsuite/28_regex/basic_regex/ctors/basic/
H A Dstring_range_01_02_03.cc38 catch (std::regex_error& ex)
40 VERIFY( ex.code() == std::regex_constants::error_brace );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/28_regex/basic_regex/ctors/extended/
H A Dstring_range_01_02_03.cc38 catch (std::regex_error& ex)
40 VERIFY( ex.code() == std::regex_constants::error_brace );
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/z80/
H A Dquotes.s8 ex af,af'
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/tree-ssa/
H A Dpr50622.C26 Value ex, et; variable
28 LorentzVector v1; v1.theX =ex; v1.theY =ex+et; v1.theZ =ex-et; v1.theT =et;
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Deh42.C15 } catch (int ex) {
/haiku-buildtools/gcc/libstdc++-v3/testsuite/30_threads/shared_lock/locking/
H A D2.cc45 catch (const std::system_error& ex)
47 VERIFY( ex.code() == std::make_error_code
82 catch (const std::system_error& ex)
84 VERIFY( ex.code() == std::make_error_code

Completed in 231 milliseconds

12345678910