HomeSort by relevance Sort by last modified time
    Searched refs:S2 (Results 101 - 125 of 560) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/libcxx/test/std/numerics/numeric.ops/numeric.ops.lcm/
lcm.pass.cpp 49 using S2 = typename std::make_signed<Input2>::type;
55 using Output = std::common_type_t<S1, S2>;
56 accumulate &= test0<S1, S2, Output>(TC.x, TC.y, TC.expect);
57 accumulate &= test0<S1, S2, Output>(-TC.x, TC.y, TC.expect);
58 accumulate &= test0<S1, S2, Output>(TC.x, -TC.y, TC.expect);
59 accumulate &= test0<S1, S2, Output>(-TC.x, -TC.y, TC.expect);
60 accumulate &= test0<S2, S1, Output>(TC.x, TC.y, TC.expect);
61 accumulate &= test0<S2, S1, Output>(-TC.x, TC.y, TC.expect);
62 accumulate &= test0<S2, S1, Output>(TC.x, -TC.y, TC.expect);
63 accumulate &= test0<S2, S1, Output>(-TC.x, -TC.y, TC.expect)
    [all...]
  /external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
sema.cpp 85 struct S2 {
86 S2();
87 S2(int, int) throw();
116 N(S2());
117 P(S2(0, 0));
118 S2 s;
161 struct G3 { S2 s; };
174 B(b, static_cast<T>(S2(0, 0)));
184 S3(const S2&);
  /external/clang/test/OpenMP/
target_parallel_firstprivate_messages.cpp 12 class S2 {
15 S2():a(0) { }
16 S2(const S2 &s2):a(s2.a) { }
20 const float S2::S2sc = 0;
21 const S2 b;
22 const S2 ba[5];
92 #pragma omp target parallel firstprivate(S2::S2s
    [all...]
teams_firstprivate_messages.cpp 12 class S2 {
16 S2() : a(0) {}
17 S2(const S2 &s2) : a(s2.a) {}
21 const float S2::S2sc = 0;
22 const S2 b;
23 const S2 ba[5];
107 #pragma omp teams firstprivate(S2::S2s
    [all...]
parallel_shared_messages.cpp 12 class S2 {
15 S2():a(0) { }
16 S2(S2 &s2):a(s2.a) { }
18 const S2 b;
19 const S2 ba[5];
task_shared_messages.cpp 12 class S2 {
16 S2() : a(0) {}
17 S2(S2 &s2) : a(s2.a) {}
19 const S2 b;
20 const S2 ba[5];
  /external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
p2.cpp 19 struct S2 {
20 constexpr S2() = default;
21 constexpr S2(const S2&) = default; // expected-error {{defaulted definition of copy constructor is not constexpr}}
22 constexpr S2(S2&&) = default; // expected-error {{defaulted definition of move constructor is not constexpr}}
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
StringSwitch.h 92 const char (&S2)[N2], const T& Value) {
93 return Case(S0, Value).Case(S1, Value).Case(S2, Value);
98 const char (&S2)[N2], const char (&S3)[N3],
100 return Case(S0, Value).Case(S1, Value).Case(S2, Value).Case(S3, Value);
105 const char (&S2)[N2], const char (&S3)[N3],
107 return Case(S0, Value).Case(S1, Value).Case(S2, Value).Case(S3, Value)
  /prebuilts/go/darwin-x86/test/fixedbugs/
gcc65755.go 22 type S2 struct{}
24 func (S2) Fix() string {
33 f2 := S2{}.Fix()
bug177.go 12 type S2 struct{ S1 }
15 typ := reflect.TypeOf(S2{})
  /prebuilts/go/linux-x86/test/fixedbugs/
gcc65755.go 22 type S2 struct{}
24 func (S2) Fix() string {
33 f2 := S2{}.Fix()
  /bionic/libm/upstream-freebsd/lib/msun/src/
k_sin.c 35 * |----- - (1+S1*x +S2*x +S3*x +S4*x +S5*x +S6*x )| <= 2
42 * r = x *(S2+x *(S3+x *(S4+x *(S5+x *S6))))
53 S2 = 8.33333333332248946124e-03, /* 0x3F811111, 0x1110F8A6 */
66 r = S2+z*(S3+z*S4) + z*w*(S5+z*S6);
  /device/google/contexthub/firmware/lib/libm/
kf_sin.c 25 S2 = 8.3333337680e-03, /* 0x3c088889 */
46 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
k_sin.c 34 * |----- - (1+S1*x +S2*x +S3*x +S4*x +S5*x +S6*x )| <= 2
41 * r = x *(S2+x *(S3+x *(S4+x *(S5+x *S6))))
52 S2 = 8.33333333332248946124e-03, /* 0x3F811111, 0x1110F8A6 */
69 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
  /external/clang/test/CodeGenCXX/
warn-padded-packed.cpp 9 struct S2 { // expected-warning {{padding size of 'S2' with 3 bytes to alignment boundary}}
76 void f(S1*, S2*, S3*, S4*, S5*, S6*, S7*, S8*, S9*, S10*, S11*, S12*, S13*) { }
  /external/clang/test/Index/
index-refs.cpp 64 struct S2 {
69 struct S2 s = { .y = 1, .x = 4};
  /external/clang/test/Modules/Inputs/
redecl-merge-left.h 19 struct S2 {
24 void consume_S2(struct S2*);
  /external/clang/test/SemaCXX/
elaborated-type-specifier.cpp 8 struct S2 *x;
13 bool test_elab(S1 *s1, struct S2 *s2, struct S3 *s3) {
14 if (s1->x == s2) return true;
warn-dangling-field.cpp 21 struct S2 {
23 S2(int i) : x(i) {} // expected-warning {{binding reference member 'x' to a temporary}}
  /external/clang/test/SemaTemplate/
self-comparison.cpp 14 template <int A, int B> struct S2 {
44 S2<1, 1> s2; s2.foo<void>(); local
  /external/fdlibm/
k_sin.c 30 * |----- - (1+S1*x +S2*x +S3*x +S4*x +S5*x +S6*x )| <= 2
37 * r = x *(S2+x *(S3+x *(S4+x *(S5+x *S6))))
51 S2 = 8.33333333332248946124e-03, /* 0x3F811111, 0x1110F8A6 */
71 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
  /external/llvm/unittests/Support/
TypeNameTest.cpp 24 struct S2 {};
29 StringRef S2Name = getTypeName<S2>();
37 EXPECT_TRUE(S2Name.endswith("S2")) << S2Name.str();
39 EXPECT_TRUE(S2Name.endswith("::S2")) << S2Name.str();
  /prebuilts/go/darwin-x86/test/fixedbugs/bug437.dir/
two.go 9 type S2 struct {
  /prebuilts/go/linux-x86/test/fixedbugs/bug437.dir/
two.go 9 type S2 struct {
  /frameworks/rs/rsov/compiler/unit_tests/
TestRunner.h 69 #define RS2SPIRV_CONCAT_IMPL(S1, S2) S1##S2
70 #define RS2SPIRV_CONCAT(S1, S2) RS2SPIRV_CONCAT_IMPL(S1, S2)

Completed in 1636 milliseconds

1 2 3 45 6 7 8 91011>>