| /llvm-project-15.0.7/libc/AOR_v20.02/math/ |
| H A D | v_logf.c | 13 static const float Poly[] = { variable 18 #define P7 v_f32 (Poly[0]) 19 #define P6 v_f32 (Poly[1]) 20 #define P5 v_f32 (Poly[2]) 21 #define P4 v_f32 (Poly[3]) 22 #define P3 v_f32 (Poly[4]) 23 #define P2 v_f32 (Poly[5]) 24 #define P1 v_f32 (Poly[6])
|
| H A D | v_sin.c | 13 static const double Poly[] = { variable 25 #define C7 v_f64 (Poly[0]) 26 #define C6 v_f64 (Poly[1]) 27 #define C5 v_f64 (Poly[2]) 28 #define C4 v_f64 (Poly[3]) 29 #define C3 v_f64 (Poly[4]) 30 #define C2 v_f64 (Poly[5]) 31 #define C1 v_f64 (Poly[6])
|
| H A D | v_cos.c | 13 static const double Poly[] = { variable 25 #define C7 v_f64 (Poly[0]) 26 #define C6 v_f64 (Poly[1]) 27 #define C5 v_f64 (Poly[2]) 28 #define C4 v_f64 (Poly[3]) 29 #define C3 v_f64 (Poly[4]) 30 #define C2 v_f64 (Poly[5]) 31 #define C1 v_f64 (Poly[6])
|
| H A D | v_exp2f_1u.c | 13 static const float Poly[] = { variable 17 #define C0 v_f32 (Poly[0]) 18 #define C1 v_f32 (Poly[1]) 19 #define C2 v_f32 (Poly[2]) 20 #define C3 v_f32 (Poly[3]) 21 #define C4 v_f32 (Poly[4]) 22 #define C5 v_f32 (Poly[5])
|
| H A D | v_exp2f.c | 13 static const float Poly[] = { variable 21 #define C0 v_f32 (Poly[0]) 22 #define C1 v_f32 (Poly[1]) 23 #define C2 v_f32 (Poly[2]) 24 #define C3 v_f32 (Poly[3]) 25 #define C4 v_f32 (Poly[4])
|
| H A D | v_expf_1u.c | 13 static const float Poly[] = { variable 21 #define C0 v_f32 (Poly[0]) 22 #define C1 v_f32 (Poly[1]) 23 #define C2 v_f32 (Poly[2]) 24 #define C3 v_f32 (Poly[3]) 25 #define C4 v_f32 (Poly[4])
|
| H A D | v_log.c | 16 static const f64_t Poly[] = { variable 25 #define A0 v_f64 (Poly[0]) 26 #define A1 v_f64 (Poly[1]) 27 #define A2 v_f64 (Poly[2]) 28 #define A3 v_f64 (Poly[3]) 29 #define A4 v_f64 (Poly[4])
|
| H A D | v_expf.c | 13 static const float Poly[] = { variable 21 #define C0 v_f32 (Poly[0]) 22 #define C1 v_f32 (Poly[1]) 23 #define C2 v_f32 (Poly[2]) 24 #define C3 v_f32 (Poly[3]) 25 #define C4 v_f32 (Poly[4])
|
| H A D | v_cosf.c | 13 static const float Poly[] = { variable 23 #define A3 v_f32 (Poly[3]) 24 #define A5 v_f32 (Poly[2]) 25 #define A7 v_f32 (Poly[1]) 26 #define A9 v_f32 (Poly[0])
|
| H A D | v_sinf.c | 13 static const float Poly[] = { variable 23 #define A3 v_f32 (Poly[3]) 24 #define A5 v_f32 (Poly[2]) 25 #define A7 v_f32 (Poly[1]) 26 #define A9 v_f32 (Poly[0])
|
| /llvm-project-15.0.7/clang/test/CXX/basic/basic.def.odr/ |
| H A D | p2-typeid.cpp | 14 struct Poly { struct 15 virtual ~Poly(); 29 void test(X<Poly> xp, X<Poly, Poly&> xpr, X<NonPoly> xnp, X<NonPoly, NonPoly&> xnpr) { in test() argument 31 xp.g(Poly()); in test() 36 xpr.g(Poly()); // expected-note{{instantiation of member function}} in test()
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | dynamic-cast.cpp | 13 struct Poly struct 18 struct PolyDerived : Poly 68 (void)dynamic_cast<A*>((Poly*)0); in poly() 69 (void)dynamic_cast<A&>(*((Poly*)0)); in poly() 74 (void)dynamic_cast<Poly*>((A*)0); // expected-error {{'A' is not polymorphic}} in poly()
|
| H A D | runtimediag-ppe.cpp | 14 class Poly { virtual ~Poly(); }; class 15 Poly& P(int);
|
| /llvm-project-15.0.7/clang/test/CXX/expr/expr.prim/expr.prim.general/ |
| H A D | p12-0x.cpp | 27 class Poly { virtual ~Poly(); }; class 29 const std::type_info& m = typeid(*(Poly*)S::m); // expected-error {{invalid use of non-static data … 30 const std::type_info& n = typeid(*(Poly*)(0*sizeof S::m));
|
| /llvm-project-15.0.7/clang/test/SemaObjCXX/ |
| H A D | arc-ppe.mm | 14 class Poly { virtual ~Poly(); }; 15 Poly& P(void*);
|
| /llvm-project-15.0.7/llvm/unittests/Support/ |
| H A D | YAMLIOTest.cpp | 2888 struct Poly { struct 2895 Poly(NodeKind Kind) : Kind(Kind) {} in Poly() argument 2897 virtual ~Poly() = default; 2902 struct Scalar : Poly { argument 2923 struct Seq : Poly, std::vector<std::unique_ptr<Poly>> { 2924 Seq() : Poly(NK_Seq) {} in Seq() 2929 struct Map : Poly, llvm::StringMap<std::unique_ptr<Poly>> { 2930 Map() : Poly(NK_Map) {} in Map() 3067 std::unique_ptr<Poly> node; in TEST() 3091 std::unique_ptr<Poly> node = llvm::unique_dyn_cast<Poly>(map); in TEST() [all …]
|
| /llvm-project-15.0.7/clang/lib/ASTMatchers/Dynamic/ |
| H A D | Marshallers.h | 425 static void mergePolyMatchers(const PolyMatcher &Poly, 430 static void mergePolyMatchers(const PolyMatcher &Poly, 432 Out.push_back(ast_matchers::internal::Matcher<typename TypeList::head>(Poly)); 433 mergePolyMatchers(Poly, Out, typename TypeList::tail());
|
| /llvm-project-15.0.7/libclc/generic/lib/math/ |
| H A D | erf.cl | 226 * erf(1+s) = erf(1) + s*Poly(s) 261 * erfc(x) ~ ---------- * ( 1 + Poly(1/x^2) ) 346 // Poly variable
|
| H A D | erfc.cl | 227 * erf(1+s) = erf(1) + s*Poly(s) 262 * erfc(x) ~ ---------- * ( 1 + Poly(1/x^2) ) 348 // Poly arg
|
| /llvm-project-15.0.7/clang/utils/TableGen/ |
| H A D | NeonEmitter.cpp | 150 Poly, enumerator 193 bool isPoly() const { return Kind == Poly; } in isPoly() 739 T.Kind = Poly; in fromTypedefName() 810 Kind = Poly; in applyTypespec() 880 Kind = Poly; in applyModifiers()
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | arm_mve_defs.td | 585 list<Type> Poly = [u8, u16]; // Actually p8 and p16
|
| H A D | arm_mve.td | 130 let params = T.Poly, overrideKindLetter = "p" in { 502 let params = T.Poly, overrideKindLetter = "p" in {
|