Home
last modified time | relevance | path

Searched refs:E2 (Results 1 – 25 of 165) sorted by relevance

1234567

/external/vulkan-validation-layers/libs/glm/detail/
D_swizzle.hpp51 template <typename T, precision P, typename V, int E0, int E1, int E2, int E3, int N>
62 template <typename T, precision P, typename V, int E0, int E1, int E2>
63 struct _swizzle_base1<T, P, V,E0,E1,E2,-1,3> : public _swizzle_base0<T, 3>
65 …FUNC_QUALIFIER V operator ()() const { return V(this->elem(E0), this->elem(E1), this->elem(E2)); } in operator ()()
68 template <typename T, precision P, typename V, int E0, int E1, int E2, int E3>
69 struct _swizzle_base1<T, P, V,E0,E1,E2,E3,4> : public _swizzle_base0<T, 4>
71 … operator ()() const { return V(this->elem(E0), this->elem(E1), this->elem(E2), this->elem(E3)); } in operator ()()
86 …template <typename ValueType, precision P, typename VecType, int N, int E0, int E1, int E2, int E3…
87 struct _swizzle_base2 : public _swizzle_base1<ValueType, P, VecType,E0,E1,E2,E3,N>
145 const int offset_dst[4] = { E0, E1, E2, E3 }; in operator []()
[all …]
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
Dp2.cpp69 struct E2 { struct
70E2() noexcept(false) = default; // expected-error {{exception specification of explicitly defaulte…
71E2(const E2&) noexcept(false) = default; // expected-error {{exception specification of explicitly…
72E2(E2&&) noexcept(false) = default; // expected-error {{exception specification of explicitly defa…
73E2 &operator=(const E2&) noexcept(false) = default; // expected-error {{exception specification of…
74E2 &operator=(E2&&) noexcept(false) = default; // expected-error {{exception specification of expl…
75 …~E2() noexcept(false) = default; // expected-error {{exception specification of explicitly default…
/external/clang/test/SemaCXX/
Dref-init-ambiguous.cpp3 enum E2 { }; enum
6 operator E2&(); // expected-note 3 {{candidate function}}
10 operator E2&(); // expected-note 3 {{candidate function}}
17 …const E2 &e2 = c; // expected-error {{reference initialization of type 'const E2 &' with initializ… in test()
20 void foo(const E2 &);// expected-note{{passing argument to parameter here}}
22 const E2 & re(C c) { in re()
Dmember-name-lookup.cpp21 enum E2 { enumerator2 }; enum
48 D::E2 e2 = D::enumerator2; // okay in test_lookup()
64 E2 e2 = enumerator2; // okay in test_lookup()
72 enum E2 { enumerator2 }; enum
104 D2::E2 e2 = D2::enumerator2; // okay in test_virtual_lookup()
123 E2 e2 = enumerator2; // okay in test_virtual_lookup()
Dderived-to-base-ambig.cpp17 class E2 : public D2, public C2, public virtual A2 { }; // expected-warning{{direct base 'C2' is in… class
18 class F2 : public E2, public A2 { }; // expected-warning{{direct base 'A2' is inaccessible due to a…
20 void g(E2* e2, F2* f2) { in g()
29 void overload_okay(E2*);
Denum-scoped.cpp7 enum struct E2 { enum
16 static_assert(sizeof(E2) == sizeof(int), "bad size");
17 static_assert(sizeof(E2::Val1) == sizeof(int), "bad size");
19 E1 v3 = E2::Val1; // expected-error{{cannot initialize a variable}}
260 enum class E2 : T; member
307 typedef E E2; typedef
308 E2 f1() { return E::a; } in f1()
Doverloaded-builtin-operators.cpp21 enum E2 { }; enum
23 operator E2();
84 operator E2&();
99 E2 e2r2; in g()
Dclass-names.cpp52 enum E2 { E2 }; enum
Doverloaded-operator.cpp66 struct E2 { struct
67 E2(Enum2);
71 float& operator==(E1, E2); // expected-note{{candidate function}}
73 void enum_test(Enum1 enum1, Enum2 enum2, E1 e1, E2 e2, Enum1 next_enum1) { in enum_test()
/external/clang/INPUTS/
Dc99-intconst-1.c41 #define first_of2p(T1, E1, T2, E2) type_comb2(type_if(T1, (E1)), \ argument
42 type_if(T2, (!(E1) && (E2))))
44 #define first_of3p(T1, E1, T2, E2, T3, E3) \ argument
46 type_if(T2, (!(E1) && (E2))), \
47 type_if(T3, (!(E1) && !(E2) && (E3))))
50 #define first_of4p(T1, E1, T2, E2, T3, E3, T4, E4) \ argument
52 type_if(T2, (!(E1) && (E2))), \
53 type_if(T3, (!(E1) && !(E2) && (E3))), \
54 type_if(T4, (!(E1) && !(E2) && !(E3) && (E4))))
57 #define first_of6p(T1, E1, T2, E2, T3, E3, T4, E4, T5, E5, T6, E6) \ argument
[all …]
/external/opencv3/modules/calib3d/src/
Dpolynom_solver.cpp126 double D2, E2; in solve_deg4() local
130 D2 = E2 = -1; in solve_deg4()
134 E2 = D2 - 4 * sqrt_temp; in solve_deg4()
141 E2 = u - v; in solve_deg4()
154 if (E2 >= 0) { in solve_deg4()
155 double E = sqrt(E2); in solve_deg4()
/external/clang/test/CXX/over/over.match/over.match.funcs/over.match.oper/
Dp3.cpp32 enum E2 { two }; enum
37 A operator >= (E1, const E2);
40 E2 b;
/external/clang/test/CXX/special/class.copy/
Dp23-cxx11.cpp146 struct E2 : AmbiguousMoveAssign { // expected-note {{base class 'AmbiguousMoveAssign' has multiple … struct
147 E2 &operator=(E2 &&) = default; // expected-note {{here}}
158 template struct MoveAssign<E2>; // expected-note {{here}}
/external/llvm/test/CodeGen/X86/
Davx512vl-nontemporal.ll10 %E2 = add <4 x i64> %E, %EE
11 store <4 x i64> %E2, <4 x i64>* %cast1, align 64, !nontemporal !0
26 %E2 = add <2 x i64> %E, %EE
27 store <2 x i64> %E2, <2 x i64>* %cast1, align 64, !nontemporal !0
Davx512-nontemporal.ll10 %E2 = add <8 x i64> %E, %EE
11 store <8 x i64> %E2, <8 x i64>* %cast1, align 64, !nontemporal !0
Davx2-nontemporal.ll10 %E2 = add <4 x i64> %E, <i64 1, i64 2, i64 3, i64 4>
11 store <4 x i64> %E2, <4 x i64>* %cast1, align 32, !nontemporal !0
Dnontemporal.ll10 %E2 = add <2 x i64> %E, <i64 1, i64 2>
11 store <2 x i64> %E2, <2 x i64>* %cast1, align 16, !nontemporal !0
/external/clang/test/Modules/
Dmacro-hiding.cpp96 #ifdef E2
100 #if defined(A1) || defined(B2) || defined(C1) || defined(D1) || defined(E1) || defined(E2)
/external/clang/include/clang/Analysis/Analyses/
DThreadSafetyCommon.h43 inline bool equals(const til::SExpr *E1, const til::SExpr *E2) { in equals() argument
44 return til::EqualsComparator::compareExprs(E1, E2); in equals()
47 inline bool matches(const til::SExpr *E1, const til::SExpr *E2) { in matches() argument
52 return isa<til::Wildcard>(E2); in matches()
53 if (isa<til::Wildcard>(E2)) in matches()
56 return til::MatchComparator::compareExprs(E1, E2); in matches()
59 inline bool partiallyMatches(const til::SExpr *E1, const til::SExpr *E2) { in partiallyMatches() argument
63 const auto *PE2 = dyn_cast_or_null<til::Project>(E2); in partiallyMatches()
DThreadSafetyTraverse.h289 bool compareByCase(const SExpr *E1, const SExpr* E2) { in compareByCase() argument
293 return cast<X>(E1)->compare(cast<X>(E2), *self()); in compareByCase()
316 bool compare(const SExpr *E1, const SExpr* E2) { in compare() argument
317 if (E1->opcode() != E2->opcode()) in compare()
319 return compareByCase(E1, E2); in compare()
330 static bool compareExprs(const SExpr *E1, const SExpr* E2) { in compareExprs() argument
332 return Eq.compare(E1, E2); in compareExprs()
352 bool compare(const SExpr *E1, const SExpr* E2) { in compare() argument
354 if (E1->opcode() == COP_Wildcard || E2->opcode() == COP_Wildcard) in compare()
357 if (E1->opcode() != E2->opcode()) in compare()
[all …]
/external/clang/test/SemaTemplate/
Dinstantiate-non-type-template-parameter.cpp40 enum E { E1, E2, E3 }; enumerator
42 template<typename T, E e = E2>
/external/clang/test/Sema/
Dwarn-duplicate-enum.c31 E2 = E1, enumerator
32 E3 = E2
/external/caliper/examples/src/main/java/examples/
DEnumSetContainsBenchmark.java39 return new Object[] { RegularSize.E1, RegularSize.E2, RegularSize.E20, in testValues()
58 E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12, E13, E14, E15, E16, E17, enumConstant
64 E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12, E13, E14, E15, E16, E17, enumConstant
/external/compiler-rt/test/cfi/
Dsimple-pass.cpp71 struct E2 : virtual E { struct
117 e = new E2; in main()
/external/clang/lib/StaticAnalyzer/Checkers/
DUndefBranchChecker.cpp42 if (const Expr *E2 = FindExpr(ExI)) in FindExpr() local
43 return E2; in FindExpr()

1234567