HomeSort by relevance Sort by last modified time
    Searched refs:S2 (Results 26 - 50 of 237) sorted by null

12 3 4 5 6 7 8 910

  /bionic/libm/upstream-freebsd/lib/msun/src/
k_sinf.c 28 S2 = 0x111110896efbb2.0p-59, /* 0.0083333293858894631756 */
45 return (x + s*(S1+z*S2)) + s*w*r;
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);
  /external/clang/test/CXX/class.access/class.friend/
p11.cpp 30 struct S2 {
35 struct S2 {
  /external/clang/test/SemaCXX/
err_init_conversion_failed.cpp 53 template <class P> struct S2 {
58 S2<S> X = {&S::foo};
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/valgrind/main/memcheck/tests/
dw4.c 42 struct s1 S2[30];
51 croak( &S2[0].i );
  /external/clang/test/Sema/
MicrosoftCompatibility.c 19 struct __declspec(aligned) S2 {}; /* expected-warning {{__declspec attribute 'aligned' is not supported}} */
  /external/clang/test/OpenMP/
parallel_private_messages.cpp 12 class S2 {
15 S2():a(0) { }
18 const S2 b;
19 const S2 ba[5];
64 #pragma omp parallel private(S2::S2s) // expected-error {{shared variable cannot be private}}
parallel_sections_copyin_messages.cpp 11 class S2 {
15 S2() : a(0) {}
16 S2 &operator=(S2 &s2) { return *this; }
47 S2 k;
parallel_sections_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];
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];
  /external/linux-tools-perf/perf-3.12.0/arch/c6x/lib/
memcpy_64plus.S 20 || MVC .S2 ILC,B2
27 [!B1] BNOP .S2 B3,1
30 ||[B1] MVC .S2 B1,ILC
44 BNOP .S2 B3,4
45 MVC .S2 B2,ILC
  /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/stlport/test/unit/
mfunptr_test.cpp 41 struct S2 { } s2; variable in typeref:struct:S2
44 int f2(S1&, S2&);
46 int f2c(const S1&, const S2&);
49 void vf2(S1&, S2&);
51 void vf2c(const S1&, const S2&);
79 ptr_fun(f2)(s1, s2);
82 ptr_fun(f2c)(s1, s2);
86 ptr_fun(vf2)(s1, s2);
89 ptr_fun(vf2c)(s1, s2);
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
mfunptr_test.cpp 41 struct S2 { } s2; variable in typeref:struct:S2
44 int f2(S1&, S2&);
46 int f2c(const S1&, const S2&);
49 void vf2(S1&, S2&);
51 void vf2c(const S1&, const S2&);
79 ptr_fun(f2)(s1, s2);
82 ptr_fun(f2c)(s1, s2);
86 ptr_fun(vf2)(s1, s2);
89 ptr_fun(vf2c)(s1, s2);
    [all...]
  /ndk/tests/device/test-stlport/unit/
mfunptr_test.cpp 41 struct S2 { } s2; variable in typeref:struct:S2
44 int f2(S1&, S2&);
46 int f2c(const S1&, const S2&);
49 void vf2(S1&, S2&);
51 void vf2c(const S1&, const S2&);
79 ptr_fun(f2)(s1, s2);
82 ptr_fun(f2c)(s1, s2);
86 ptr_fun(vf2)(s1, s2);
89 ptr_fun(vf2c)(s1, s2);
    [all...]
  /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/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)
  /external/chromium_org/ppapi/generators/test_parser/
struct.idl 18 /* OK Struct(S2) */
19 struct S2 {
  /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/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)));

Completed in 1290 milliseconds

12 3 4 5 6 7 8 910