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

1 2 3

  /external/clang/test/CodeGenCXX/
mangle-98.cpp 3 template <bool B> struct S3 {};
6 void f(S3<true>) {}
9 void f(S3<false>) {}
12 void f2(S3<100>) {}
regparm.cpp 29 struct S3 {
34 __attribute((regparm(2))) void foo4(S3 a, int b);
35 // CHECK: declare void @_Z4foo42S3i(%struct.S3* byval align 4, i32 inreg)
36 void bar3(S3 a, int b) {
warn-padded-packed.cpp 14 struct S3 {
76 void f(S1*, S2*, S3*, S4*, S5*, S6*, S7*, S8*, S9*, S10*, S11*, S12*, S13*) { }
  /bionic/libm/upstream-freebsd/lib/msun/src/
k_sinf.c 29 S3 = -0x1a00f9e2cae774.0p-65, /* -0.000198393348360966317347 */
43 r = S3+z*S4;
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))))
54 S3 = -1.98412698298579493134e-04, /* 0xBF2A01A0, 0x19C161D5 */
66 r = S2+z*(S3+z*S4) + z*w*(S5+z*S6);
  /external/clang/test/SemaCXX/
ptrtomember.cpp 20 struct S3 {
24 void f3(S3* p, void (S3::*m)()) {
type-definition-in-specifier.cpp 6 struct S3;
18 struct S3 { int x; } s3; local
warn-dangling-field.cpp 26 struct S3 {
28 S3(Y y) : x1(y), x2(y) {} // no-warning: conversion operator
cxx11-crashes.cpp 21 struct S3; // expected-note {{forward declaration}}
24 S3 x; // expected-error {{incomplete type}}
28 struct S3 {
namespace.cpp 26 namespace S3 {
39 namespace S3 {
51 namespace S3 {
alias-template.cpp 63 template<typename...T> struct S3 { // expected-note {{template parameter is declared here}}
warn-bad-memaccess.cpp 16 struct S3 { float x, y; S1 s[4]; void (*f)(S1**); } s3; variable in typeref:struct:S3
107 memset(&s3, 0, sizeof s3);
warn-overloaded-virtual.cpp 29 struct S3 : public B3 {
  /external/clang/test/SemaTemplate/
self-comparison.cpp 21 struct S3 {
45 S3 s3; s3.foo<1, 1>(); 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))))
52 S3 = -1.98412698298579493134e-04, /* 0xBF2A01A0, 0x19C161D5 */
71 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
  /external/llvm/unittests/ADT/
ImmutableSetTest.cpp 65 ImmutableSet<int> S3 = f.add(S, 2);
67 EXPECT_FALSE(S3.isEmpty());
68 EXPECT_FALSE(S == S3);
69 EXPECT_TRUE(S != S3);
71 EXPECT_TRUE(S3.contains(2));
73 EXPECT_FALSE(S2 == S3);
74 EXPECT_TRUE(S2 != S3);
76 EXPECT_FALSE(S3.contains(3));
84 ImmutableSet<int> S3 = f.add(f.add(f.add(S2, 9), 20), 43);
89 EXPECT_FALSE(S3.isEmpty())
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
vtable2.cpp 25 struct S3
27 virtual void s3 ();
30 struct S4 : public S3, virtual public S2
51 void S3::s3 () function in class:S3
93 S3 primary vtable
95 S3 offset to top
96 S3 RTTI
97 S3::s3
    [all...]
  /ndk/tests/device/test-stlport_static-exception/jni/
vtable2.cpp 25 struct S3
27 virtual void s3 ();
30 struct S4 : public S3, virtual public S2
51 void S3::s3 () function in class:S3
93 S3 primary vtable
95 S3 offset to top
96 S3 RTTI
97 S3::s3
    [all...]
  /external/clang/test/Parser/
cxx0x-ambig.cpp 53 struct S3 {
  /external/clang/test/CodeGen/
stdcall-fastcall.c 138 struct S3 {
141 void __attribute__((fastcall)) foo12(struct S3 y, int x);
142 void bar12(struct S3 y, int x) {
  /external/dropbear/libtomcrypt/src/ciphers/
blowfish.c 378 #define F(x) ((S1[byte(x,3)] + S2[byte(x,2)]) ^ S3[byte(x,1)]) + S4[byte(x,0)]
399 ulong32 *S1, *S2, *S3, *S4;
409 S3 = skey->blowfish.S[2];
461 ulong32 *S1, *S2, *S3, *S4;
471 S3 = skey->blowfish.S[2];
  /external/skia/bench/
ScalarBench.cpp 173 static SkBenchmark* S3(void* p) { return new IsFiniteScalarBench(p); }
178 static BenchRegistry gReg3(S3);
  /external/clang/test/ASTMerge/Inputs/
struct1.c 24 struct S3 { int i; float f; double d; } x3;
struct2.c 21 struct S3 { int i; float f; } x3;
  /external/clang/test/CXX/class/class.mem/
p1.cpp 30 struct S3

Completed in 553 milliseconds

1 2 3