Home
last modified time | relevance | path

Searched refs:e4 (Results 1 – 25 of 69) sorted by relevance

123

/llvm-project-15.0.7/polly/lib/External/isl/test_inputs/codegen/
H A Dredundant.st2e4: o1 <= 1 and o1 >= 0 and o2 <= 12 and o2 >= 1 and o3 <= 14 and o3 >= 1 and 8e0 <= 4 + o2 and 8e…
H A Dstride6.in1e4 = [(-31i + o5)/32], e5 = [(-i - o4 + o6)/32], e6 = [(-o4 + o7)/32], e7 = [(-1 + niter - o4)/32]…
H A Dseparate2.in2 …, e3 = [(-2o5 + o6)/32], e4 = [(j - o5)/32]: tsteps = 2 and 32e0 = o2 and 32e1 = o3 and 32e2 = o4 …
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/modernize/
H A Duse-default-member-init.cpp280 ExistingChar(short) : e1(), e2{}, e3(), e4() {} in ExistingChar()
285 ExistingChar(int) : e1(0), e2{0}, e3(0), e4(0) {} in ExistingChar()
301 char e4 = 'a'; member
324 int e4{5}; member
348 double e4{-5.0}; member
381 ExistingPointer(short) : e1(), e2{}, e3(), e4() {} in ExistingPointer()
386 ExistingPointer(int) : e1(0), e2{0}, e3(0), e4(&e1) {} in ExistingPointer()
399 int **e4 = &e1; member
403 ExistingString(short) : e1(), e2{}, e3(), e4() {} in ExistingString()
407 ExistingString(int) : e1(0), e2{0}, e3(0), e4(0) {} in ExistingString()
[all …]
/llvm-project-15.0.7/libc/test/src/fenv/
H A Dfeenableexcept_test.cpp65 for (int e4 : excepts) { in TEST() local
66 __llvm_libc::feenableexcept(e1 | e2 | e3 | e4); in TEST()
67 ASSERT_EQ(e1 | e2 | e3 | e4, __llvm_libc::fegetexcept()); in TEST()
68 __llvm_libc::fedisableexcept(e1 | e2 | e3 | e4); in TEST()
77 for (int e4 : excepts) { in TEST() local
79 __llvm_libc::feenableexcept(e1 | e2 | e3 | e4 | e5); in TEST()
80 ASSERT_EQ(e1 | e2 | e3 | e4 | e5, __llvm_libc::fegetexcept()); in TEST()
81 __llvm_libc::fedisableexcept(e1 | e2 | e3 | e4 | e5); in TEST()
H A Dfeclearexcept_test.cpp31 for (uint16_t e4 : excepts) { in TEST() local
34 __llvm_libc::feclearexcept(e1 | e2 | e3 | e4 | e5); in TEST()
35 ASSERT_EQ(__llvm_libc::fputil::test_except(e1 | e2 | e3 | e4 | e5), in TEST()
38 __llvm_libc::fputil::raise_except(e1 | e2 | e3 | e4 | e5); in TEST()
H A Dexception_status_test.cpp78 for (int e4 : excepts) { in TEST() local
79 int e = e1 | e2 | e3 | e4; in TEST()
97 for (int e4 : excepts) { in TEST() local
99 int e = e1 | e2 | e3 | e4 | e5; in TEST()
/llvm-project-15.0.7/llvm/test/MC/Mips/mips1/
H A Dsd.s8 # MIPS1-EB: 0: e4 c1 00 00 swc1 $f1, 0($6)
9 # MIPS1-EB: 4: e4 c0 00 04 swc1 $f0, 4($6)
11 # MIPS1-EL: 0: 00 00 c0 e4 swc1 $f0, 0($6)
12 # MIPS1-EL: 4: 04 00 c1 e4 swc1 $f1, 4($6)
/llvm-project-15.0.7/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp7-cxx20.cpp83 enum class E4 { e4 }; enumerator
88 using S::E4::e4;
96 auto a = e4;
126 enum class E4 { e4 }; enumerator
141 using E4::e4;
/llvm-project-15.0.7/clang/test/Sema/
H A Dno-documentation-warn-tagdecl-specifier.c65 enum e4* g4(void);
66 enum e4 { one }; enum
85 enum e4 *g8(enum e8 *p);
/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Dpr12251.cpp37 enum e4 { e4_a = -16}; enum
38 e4 g4(e4 *x) { in g4()
/llvm-project-15.0.7/llvm/test/TableGen/
H A DSetTheory.td140 def e4;
146 def E : Set<(add e0, e1, e2, e3, e4, e5, e6, e7, e8, e9)>;
156 // CHECK: S8e = [ e0 e2 e4 e6 e8 e1 e3 e5 e7 e9 ]
165 // CHECK: S9a = [ e3 e4 e5 e6 e7 ]
166 // CHECK: S9b = [ e7 e6 e5 e4 e3 ]
168 // CHECK: S9d = [ a b c d e0 e3 e6 e9 e4 e5 e7 ]
175 // CHECK: T0a = [ e3 e7 e4 e6 e5 ]
176 // CHECK: T0b = [ e0 e1 e2 e3 e4 e5 e6 e7 e8 e9 ]
/llvm-project-15.0.7/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.enum/
H A Dp1.cpp54 template<> enum A<long long>::E : long long { e3, e4 }; // expected-error {{explicit specialization… enumerator
56 template<> enum class B<long long>::E { e3, e4 }; enumerator
57 B<long long>::E b4 = B<long long>::E::e4;
69 template<> enum class C<long long>::E : long long { e3, e4 }; enumerator
/llvm-project-15.0.7/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest_pred_impl.h244 const char* e4, in AssertPred4Helper() argument
253 << pred_text << "(" << e1 << ", " << e2 << ", " << e3 << ", " << e4 in AssertPred4Helper()
259 << e4 << " evaluates to " << ::testing::PrintToString(v4); in AssertPred4Helper()
306 const char* e4, in AssertPred5Helper() argument
317 << pred_text << "(" << e1 << ", " << e2 << ", " << e3 << ", " << e4 in AssertPred5Helper()
323 << e4 << " evaluates to " << ::testing::PrintToString(v4) << "\n" in AssertPred5Helper()
/llvm-project-15.0.7/clang/test/SemaTemplate/
H A Dtemp_arg_enum_printing_more.cpp23 namespace nsp_2 { enum class E4 { e4 }; } enumerator
26 tmpl_4<nsp_2::E4::e4> TMPL_4; // Name must be 'nsp_2::E4::e4'.
/llvm-project-15.0.7/compiler-rt/test/ubsan/TestCases/Misc/
H A Denum.cpp16 EEmpty e4 = static_cast<EEmpty>(1); in main() local
27 ((int)e3 != -1) & ((int)e4 == 1) & in main()
/llvm-project-15.0.7/clang/test/Analysis/
H A Dqt_malloc.cpp13 QEvent *e4 = new QEvent(QEvent::None); in send() local
14 QApplication::postEvent(obj, e4); in send()
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dearly-ifcvt-remarks.ll26 define i32 @mm2(i1 %pred, i32 %val, i32 %e1, i32 %e2, i32 %e3, i32 %e4, i32 %e5) {
34 %v4 = add i32 %e4, %v3
47 define i32 @mm3(i1 %pred, i32 %val, i32 %e1, i128 %e2, i128 %e3, i128 %e4, i128 %e5) {
59 %f7 = xor i128 %e4, %f6
/llvm-project-15.0.7/clang/test/Parser/
H A Dpragma-fenv_access.c43 e1 = (int)one, e3 = (int)three, e4 = (int)four, e_four_quarters = (int)(frac_ok * 4) in main() enumerator
45 static_assert(e1 == 1 && e3 == 3 && e4 == 4 && e_four_quarters == 1, ""); in main()
H A Dcxx-ambig-init-templ.cpp12 int k4 = b < c, x, y = d > ::val, e4;
17 int k9 = T3 < a < b, c >> (d), e5 = 1 > (e4);
20 , a > (e4);
/llvm-project-15.0.7/llvm/test/CodeGen/SystemZ/
H A Dla-01.ll6 @e4 = external dso_local global i32
23 ; CHECK: larl %r2, e4
25 ret i32 *@e4
/llvm-project-15.0.7/flang/test/Semantics/
H A Dallocate01.f9050 real , target :: e4, ed5(:) local
88 allocate(e4)
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/
H A Darm64-fml-combines.ll26 %e4 = insertelement <2 x double> %e3, double %mul, i32 1
32 %subx = fsub fast <2 x double> %e4, %mulx
69 %e4 = insertelement <2 x float> %e3, float %mul, i32 1
75 %addx = fsub fast <2 x float> %e4, %mulx
111 %e4 = insertelement <4 x float> %e3, float %mul, i32 1
117 %addx = fsub fast <4 x float> %e4, %mulx
/llvm-project-15.0.7/llvm/test/Instrumentation/
H A Dcgprofile.ll36 …tinct !{![[e0:[0-9]+]], ![[e1:[0-9]+]], ![[e2:[0-9]+]], ![[e3:[0-9]+]], ![[e4:[0-9]+]], ![[e5:[0-9…
41 ; CHECK: ![[e4]] = !{void (i1)* @freq, i32 ()* @func1, i64 10}
/llvm-project-15.0.7/llvm/test/Analysis/CostModel/ARM/
H A Dfparith.ll71 ; CHECK-MVE-NEXT: Cost Model: Found an estimated cost of 8 for instruction: %e4 = fmul <4 x float>…
83 ; CHECK-MVEFP-NEXT: Cost Model: Found an estimated cost of 2 for instruction: %e4 = fmul <4 x floa…
94 %e4 = fmul <4 x float> undef, undef
108 ; CHECK-MVE-NEXT: Cost Model: Found an estimated cost of 8 for instruction: %e4 = fmul <4 x half> …
120 ; CHECK-MVEFP-NEXT: Cost Model: Found an estimated cost of 2 for instruction: %e4 = fmul <4 x half…
131 %e4 = fmul <4 x half> undef, undef
145 ; CHECK-MVE-NEXT: Cost Model: Found an estimated cost of 8 for instruction: %e4 = fmul <4 x double…
157 ; CHECK-MVEFP-NEXT: Cost Model: Found an estimated cost of 8 for instruction: %e4 = fmul <4 x doub…
168 %e4 = fmul <4 x double> undef, undef

123