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

1 2 3

  /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);
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
p5.cpp 33 struct S6 {
42 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+
  /external/clang/test/CXX/class.access/class.friend/
p11.cpp 58 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/
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) {}
161 S6 n(2);
for_lastprivate_messages.cpp 51 class S6 {
53 S6() : a(0) {}
56 S6(const S6 &s6) : a(s6.a) {}
57 S6(int v) : a(v) {}
149 S6 n(2);
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) {}
146 S6 n(2);
parallel_for_lastprivate_messages.cpp 51 class S6 {
53 S6() : a(0) {}
56 S6(const S6 &s6) : a(s6.a) {}
57 S6(int v) : a(v) {}
135 S6 n(2);
parallel_sections_firstprivate_messages.cpp 51 class S6 {
53 S6() : a(0) {}
56 S6(const S6 &s6) : a(s6.a) {}
57 S6(int v) : a(v) {}
164 S6 n(2);
parallel_sections_lastprivate_messages.cpp 51 class S6 {
53 S6() : a(0) {}
56 S6(const S6 &s6) : a(s6.a) {}
57 S6(int v) : a(v) {}
150 S6 n(2);
sections_firstprivate_messages.cpp 51 class S6 {
53 S6() : a(0) {}
56 S6(const S6 &s6) : a(s6.a) {}
57 S6(int v) : a(v) {}
179 S6 n(2);
sections_lastprivate_messages.cpp 51 class S6 {
53 S6() : a(0) {}
56 S6(const S6 &s6) : a(s6.a) {}
57 S6(int v) : a(v) {}
164 S6 n(2);
single_firstprivate_messages.cpp 51 class S6 {
53 S6() : a(0) {}
56 S6(const S6 &s6) : a(s6.a) {}
57 S6(int v) : a(v) {}
141 S6 n(2);
for_reduction_messages.cpp 56 class S6 {
60 S6() : a(6) {}
171 #pragma omp for reduction(+ : o) // expected-error {{variable of type 'class S6' is not valid for specified reduction operation}}
316 #pragma omp for reduction(+ : o) // expected-error {{variable of type 'class S6' is not valid for specified reduction operation}}
parallel_for_reduction_messages.cpp 56 class S6 {
60 S6() : a(6) {}
147 #pragma omp parallel for reduction(+ : o) // expected-error {{variable of type 'class S6' is not valid for specified reduction operation}}
264 #pragma omp parallel for reduction(+ : o) // expected-error {{variable of type 'class S6' is not valid for specified reduction operation}}
parallel_reduction_messages.cpp 56 class S6 {
60 S6() : a(6) {}
124 #pragma omp parallel reduction(+ : o) // expected-error {{variable of type 'class S6' is not valid for specified reduction operation}}
213 #pragma omp parallel reduction(+ : o) // expected-error {{variable of type 'class S6' is not valid for specified reduction operation}}
parallel_sections_reduction_messages.cpp 56 class S6 {
60 S6() : a(6) {}
170 #pragma omp parallel sections reduction(+ : o) // expected-error {{variable of type 'class S6' is not valid for specified reduction operation}}
319 #pragma omp parallel sections reduction(+ : o) // expected-error {{variable of type 'class S6' is not valid for specified reduction operation}}
sections_reduction_messages.cpp 56 class S6 {
60 S6() : a(6) {}
194 #pragma omp sections reduction(+ : o) // expected-error {{variable of type 'class S6' is not valid for specified reduction operation}}
371 #pragma omp sections reduction(+ : o) // expected-error {{variable of type 'class S6' is not valid for specified reduction operation}}
simd_reduction_messages.cpp 56 class S6 {
60 S6() : a(6) {}
147 #pragma omp simd reduction(+ : o) // expected-error {{variable of type 'class S6' is not valid for specified reduction operation}}
267 #pragma omp simd reduction(+ : o) // expected-error {{variable of type 'class S6' is not valid for specified reduction operation}}
  /external/clang/test/ASTMerge/Inputs/
struct1.c 33 struct S6 { int i : 8; unsigned j : 8; } x6;
struct2.c 30 struct S6 { int i : 8; unsigned j; } x6;
  /external/clang/test/Sema/
type-spec-struct-union.c 40 struct S6 {
45 struct S6 a;

Completed in 247 milliseconds

1 2 3