HomeSort by relevance Sort by last modified time
    Searched defs:S6 (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /bionic/libm/upstream-freebsd/lib/msun/src/
k_sin.c 31 * sin(x) ~ x + S1*x + ... + S6*x
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))))
57 S6 = 1.58969099521155010221e-10; /* 0x3DE5D93A, 0x5ACFD57C */
66 r = S2+z*(S3+z*S4) + z*w*(S5+z*S6);
  /device/google/contexthub/firmware/lib/libm/
kf_sin.c 29 S6 = 1.5896910177e-10; /* 0x2f2ec9d3 */
46 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
k_sin.c 30 * sin(x) ~ x + S1*x + ... + S6*x
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))))
56 S6 = 1.58969099521155010221e-10; /* 0x3DE5D93A, 0x5ACFD57C */
69 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
p5.cpp 39 struct S6 {
48 S6 s6 alignas(4); // expected-error {{requested alignment is less than minimum alignment of 8 for type 'S6'}}
  /external/clang/test/SemaCXX/
warn-dangling-field.cpp 44 struct S6 {
46 S6() : s5 { 0 } {} // expected-warning {{binding reference subobject of member 's5' to a temporary}}
  /external/fdlibm/
k_sin.c 26 * sin(x) ~ x + S1*x + ... + S6*x
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))))
55 S6 = 1.58969099521155010221e-10; /* 0x3DE5D93A, 0x5ACFD57C */
71 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
k_sinl.c 38 S6 = 0.16059043836821614596571832194524392581082444805729e-9L,
55 r = S2+z*(S3+z*(S4+z*(S5+z*(S6+z*(S7+z*(S8+
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue13337.go 20 type S6 struct{ S5 }
21 type S7 struct{ S6 }
  /prebuilts/go/darwin-x86/test/
sizeof.go 78 S6
80 S6 struct {
115 case unsafe.Offsetof(s1.S1.S2.S3.S4.S5.S6.S7.S8.S1.S2) != 8:
116 panic("unsafe.Offsetof(s1.S1.S2.S3.S4.S5.S6.S7.S8.S1.S2) != 8")
  /prebuilts/go/linux-x86/test/fixedbugs/
issue13337.go 20 type S6 struct{ S5 }
21 type S7 struct{ S6 }
  /prebuilts/go/linux-x86/test/
sizeof.go 78 S6
80 S6 struct {
115 case unsafe.Offsetof(s1.S1.S2.S3.S4.S5.S6.S7.S8.S1.S2) != 8:
116 panic("unsafe.Offsetof(s1.S1.S2.S3.S4.S5.S6.S7.S8.S1.S2) != 8")
  /external/clang/test/CXX/class.access/class.friend/
p11.cpp 61 struct S6 {
  /external/clang/test/CodeGenCXX/
warn-padded-packed.cpp 32 struct S6 { // expected-warning {{padding size of 'S6' with 30 bits to alignment boundary}}
76 void f(S1*, S2*, S3*, S4*, S5*, S6*, S7*, S8*, S9*, S10*, S11*, S12*, S13*) { }
  /external/clang/test/OpenMP/
distribute_firstprivate_messages.cpp 49 class S6 {
52 S6() : a(0) { }
63 S6 p;
distribute_parallel_for_firstprivate_messages.cpp 51 class S6 {
53 S6() : a(0) {}
56 S6(const S6 &s6) : a(s6.a) {}
57 S6(int v) : a(v) {}
187 S6 n(2);
distribute_parallel_for_private_messages.cpp 57 class S6 {
61 S6() : a(0) {}
62 S6(T v) : a(v) {
69 S6 &operator=(S6 &s) {
214 S6<float> s6(0.0) , s6_0(1.0);
215 S7<S6<float> > s7(0.0) , s7_0(1.0);
311 s6 = s6_0; // expected-note {{in instantiation of member function 'S6<float>::operator=' requested here}
    [all...]
distribute_parallel_for_simd_firstprivate_messages.cpp 51 class S6 {
53 S6() : a(0) {}
56 S6(const S6 &s6) : a(s6.a) {}
57 S6(int v) : a(v) {}
187 S6 n(2);
distribute_parallel_for_simd_private_messages.cpp 57 class S6 {
61 S6() : a(0) {}
62 S6(T v) : a(v) {
69 S6 &operator=(S6 &s) {
214 S6<float> s6(0.0) , s6_0(1.0);
215 S7<S6<float> > s7(0.0) , s7_0(1.0);
311 s6 = s6_0; // expected-note {{in instantiation of member function 'S6<float>::operator=' requested here}
    [all...]
distribute_simd_firstprivate_messages.cpp 51 class S6 {
53 S6() : a(0) {}
56 S6(const S6 &s6) : a(s6.a) {}
57 S6(int v) : a(v) {}
187 S6 n(2);
distribute_simd_private_messages.cpp 57 class S6 {
61 S6() : a(0) {}
62 S6(T v) : a(v) {
69 S6 &operator=(S6 &s) {
214 S6<float> s6(0.0) , s6_0(1.0);
215 S7<S6<float> > s7(0.0) , s7_0(1.0);
311 s6 = s6_0; // expected-note {{in instantiation of member function 'S6<float>::operator=' requested here}
    [all...]
for_private_messages.cpp 53 class S6 {
57 S6() : a(0) {}
58 S6(T v) : a(v) {
63 S6 &operator=(S6 &s) {
177 S6<float> s6(0.0) , s6_0(1.0);
178 S7<S6<float> > s7(0.0) , s7_0(1.0);
243 s6 = s6_0; // expected-note {{in instantiation of member function 'S6<float>::operator=' requested here}
    [all...]
for_simd_firstprivate_messages.cpp 51 class S6 {
53 S6() : a(0) {}
56 S6(const S6 &s6) : a(s6.a) {}
57 S6(int v) : a(v) {}
169 S6 n(2);
for_simd_lastprivate_messages.cpp 53 class S6 {
55 S6() : a(0) {}
58 S6(const S6 &s6) : a(s6.a) {}
59 S6(int v) : a(v) {}
159 S6 n(2);
for_simd_private_messages.cpp 53 class S6 {
57 S6() : a(0) {}
58 S6(T v) : a(v) {
63 S6 &operator=(S6 &s) {
170 S6<float> s6(0.0) , s6_0(1.0);
171 S7<S6<float> > s7(0.0) , s7_0(1.0);
233 s6 = s6_0; // expected-note {{in instantiation of member function 'S6<float>::operator=' requested here}
    [all...]
parallel_for_firstprivate_messages.cpp 51 class S6 {
53 S6() : a(0) {}
56 S6(const S6 &s6) : a(s6.a) {}
57 S6(int v) : a(v) {}
151 S6 n(2);

Completed in 242 milliseconds

1 2 3 4 5