Searched defs:S0 (Results 1 - 25 of 39) sorted by relevance

12

/external/clang/test/CodeGen/
H A Dmips-byval-arg.c6 } S0; typedef in typeref:struct:__anon2557
8 extern void foo2(S0);
13 void foo1(S0 a0) {
H A Dmips64-padding-arg.c8 } S0; typedef in typeref:struct:__anon2558
10 // Insert padding to ensure arguments of type S0 are aligned to 16-byte boundaries.
16 extern void foo2(int, int, int, S0, S0, int, S0);
18 void foo1(int a0, S0 a1, S0 a2, int b, S0 a3) {
36 // N64-LABEL: define void @foo5(%struct.S0* noalias sret %agg.result, i64, fp128 %a0)
37 // N64: call void @foo6(%struct.S0* sre
[all...]
/external/libopus/silk/float/
H A Dapply_sine_window_FLP.c46 silk_float freq, c, S0, S1; local
61 S0 = 0.0f;
66 S0 = 1.0f;
74 px_win[ k + 0 ] = px[ k + 0 ] * 0.5f * ( S0 + S1 );
76 S0 = c * S1 - S0;
77 px_win[ k + 2 ] = px[ k + 2 ] * 0.5f * ( S1 + S0 );
78 px_win[ k + 3 ] = px[ k + 3 ] * S0;
79 S1 = c * S0 - S1;
/external/clang/test/SemaCXX/
H A Dtype-definition-in-specifier.cpp3 struct S0;
11 struct S0 { int x; }; struct
H A Dalias-template.cpp56 template<typename...T> struct S0 { struct in namespace:InFunctions
H A Dopenmp_default_simd_align.cpp3 struct S0 { struct
6 static const int test1 = __builtin_omp_required_simd_align(decltype(S0::x));
48 static const int test1 = __builtin_omp_required_simd_align(decltype(S0::x));
H A Dalignof.cpp5 struct S0 { struct
8 static const int test1 = __alignof__(S0::x); // expected-error {{invalid application of 'alignof' to a field of a class still being defined}}
50 static const int test1 = __alignof__(S0::x);
/external/llvm/include/llvm/ADT/
H A DStringSwitch.h91 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1], argument
94 (N0-1 == Str.size() && std::memcmp(S0, Str.data(), N0-1) == 0) ||
104 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1], argument
107 (N0-1 == Str.size() && std::memcmp(S0, Str.data(), N0-1) == 0) ||
118 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1], argument
122 (N0-1 == Str.size() && std::memcmp(S0, Str.data(), N0-1) == 0) ||
134 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1], argument
138 (N0-1 == Str.size() && std::memcmp(S0, Str.data(), N0-1) == 0) ||
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DStringSwitch.h85 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1], argument
87 return Case(S0, Value).Case(S1, Value);
91 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1], argument
93 return Case(S0, Value).Case(S1, Value).Case(S2, Value);
97 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1], argument
100 return Case(S0, Value).Case(S1, Value).Case(S2, Value).Case(S3, Value);
104 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1], argument
107 return Case(S0, Value).Case(S1, Value).Case(S2, Value).Case(S3, Value)
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/namespace.memdef/
H A Dp3.cpp10 struct S0 { struct in namespace:N
16 F0 f0() { return S0().member_func(); }
/external/guava/guava-tests/benchmark/com/google/common/base/
H A DObjectsBenchmark.java32 private static final String S0 = "3"; field in class:ObjectsBenchmark
43 dummy += Objects.hashCode(S0, S1);
51 dummy += Objects.hashCode(S0, S1, S2);
59 dummy += Objects.hashCode(S0, S1, S2, S3);
67 dummy += Objects.hashCode(S0, S1, S2, S3, S4);
76 dummy += Objects.hashCode(D0, I1, S3, I2, S0);
/external/swiftshader/third_party/subzero/unittest/AssemblerX8664/
H A DLowLevel.cpp1105 const uint32_t S0 = allocateDword(); local
1110 test.setDwordTo(S0, 0xBEEF0000u);
1113 ASSERT_EQ(0xBEEF0000u, test.contentsOfDword(S0));
1116 ASSERT_EQ(0xDEADBEEF0000ull, test.contentsOfQword(S0));
1121 test.setDwordTo(S0, 0xBEEF0000u);
1125 test.setDwordTo(S0, 1.0f);
1126 ASSERT_FLOAT_EQ(1.0f, test.contentsOfDword<float>(S0));
1127 test.setQwordTo(S0, 3.14);
1128 ASSERT_DOUBLE_EQ(3.14, test.contentsOfQword<double>(S0));
1130 test.setDqwordTo(S0, Dqwor
[all...]
/external/clang/test/ASTMerge/Inputs/
H A Dstruct1.c5 struct S0 { struct
10 struct S0 x0;
H A Dstruct2.c2 struct S0 { struct
7 struct S0 x0;
/external/dhcpcd-6.8.2/crypt/
H A Dsha256.c79 #define S0(x) (ROTR(x, 2) ^ ROTR(x, 13) ^ ROTR(x, 22)) macro
87 t1 = S0(a) + Maj(a, b, c); \
/external/swiftshader/third_party/LLVM/unittests/Analysis/
H A DScalarEvolutionTest.cpp56 const SCEV *S0 = SE.getSCEV(V0); local
60 const SCEV *P0 = SE.getAddExpr(S0, S0);
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DStringSwitch.h107 StringSwitch &Cases(const char (&S0)[N0], const char (&S1)[N1], argument
109 return Case(S0, Value).Case(S1, Value);
114 StringSwitch &Cases(const char (&S0)[N0], const char (&S1)[N1], argument
116 return Case(S0, Value).Cases(S1, S2, Value);
121 StringSwitch &Cases(const char (&S0)[N0], const char (&S1)[N1], argument
124 return Case(S0, Value).Cases(S1, S2, S3, Value);
129 StringSwitch &Cases(const char (&S0)[N0], const char (&S1)[N1], argument
132 return Case(S0, Value).Cases(S1, S2, S3, S4, Value);
138 StringSwitch &Cases(const char (&S0)[N0], const char (&S1)[N1], argument
142 return Case(S0, Valu
148 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const char (&S4)[N4], const char (&S5)[N5], const char (&S6)[N6], const T &Value) argument
158 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const char (&S4)[N4], const char (&S5)[N5], const char (&S6)[N6], const char (&S7)[N7], const T &Value) argument
169 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const char (&S4)[N4], const char (&S5)[N5], const char (&S6)[N6], const char (&S7)[N7], const char (&S8)[N8], const T &Value) argument
180 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const char (&S4)[N4], const char (&S5)[N5], const char (&S6)[N6], const char (&S7)[N7], const char (&S8)[N8], const char (&S9)[N9], const T &Value) argument
218 CasesLower(const char (&S0)[N0], const char (&S1)[N1], const T &Value) argument
224 CasesLower(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const T &Value) argument
231 CasesLower(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const T &Value) argument
238 CasesLower(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const char (&S4)[N4], const T &Value) argument
[all...]
/external/swiftshader/third_party/subzero/unittest/AssemblerX8632/
H A DLowLevel.cpp677 const uint32_t S0 = allocateDword(); local
682 test.setDwordTo(S0, 0xBEEF0000u);
685 ASSERT_EQ(0xBEEF0000u, test.contentsOfDword(S0));
688 ASSERT_EQ(0xDEADBEEF0000ull, test.contentsOfQword(S0));
693 test.setDwordTo(S0, 0xBEEF0000u);
697 test.setDwordTo(S0, 1.0f);
698 ASSERT_FLOAT_EQ(1.0f, test.contentsOfDword<float>(S0));
699 test.setQwordTo(S0, 3.14);
700 ASSERT_DOUBLE_EQ(3.14, test.contentsOfQword<double>(S0));
702 test.setDqwordTo(S0, Dqwor
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DBlowfishEngine.java304 private final int[] S0, S1, S2, S3; // the s-boxes field in class:BlowfishEngine
313 S0 = new int[SBOX_SK];
397 return (((S0[(x >>> 24)] + S1[(x >>> 16) & 0xff])
442 System.arraycopy(KS0, 0, S0, 0, SBOX_SK);
500 processTable(P[P_SZ - 2], P[P_SZ - 1], S0);
501 processTable(S0[SBOX_SK - 2], S0[SBOX_SK - 1], S1);
/external/llvm/unittests/Analysis/
H A DScalarEvolutionTest.cpp65 const SCEV *S0 = SE.getSCEV(V0); local
69 const SCEV *P0 = SE.getAddExpr(S0, S0);
/external/lzma/C/
H A DSha256.c34 #define S0(x) (rotrFixed(x, 2) ^ rotrFixed(x,13) ^ rotrFixed(x, 22)) macro
50 h += S0(a) + Maj(a, b, c)
78 h(i) += S0(a(i)) + Maj(a(i), b(i), c(i)) \
173 #undef S0 macro
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
H A Dp5.cpp81 template <int& N> struct S0 { }; // expected-note 3 {{template parameter is declared here}} struct in namespace:reference_parameters
90 S0<i> s0;
91 S0<ci> s0c; // expected-error{{reference binding of non-type template parameter of type 'int &' to template argument of type 'const int' ignores qualifiers}}
92 S0<vi> s0v; // expected-error{{reference binding of non-type template parameter of type 'int &' to template argument of type 'volatile int' ignores qualifiers}}
93 S0<cvi> s0cv; // expected-error{{reference binding of non-type template parameter of type 'int &' to template argument of type 'const volatile int' ignores qualifiers}}
/external/libgsm/src/
H A Dlong_term.c366 register float S0 = 0, S1 = 0, S2 = 0, S3 = 0, S4 = 0, local
381 E = W * a; S0 += E; } else (a = lp[K])
407 if (S0 > L_max) { L_max = S0; Nc = lambda; }
532 register float S0 = 0, S1 = 0, S2 = 0, S3 = 0, S4 = 0, local
547 E = W * a; S0 += E
573 if (S0 > L_max) { L_max = S0; Nc = lambda; }
746 register float S0 = 0, S1 = 0, S2 = 0, S3 = 0, S4 = 0, local
761 E = W * a; S0
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DMergedLoadStoreMotion.cpp133 PHINode *getPHIOperand(BasicBlock *BB, StoreInst *S0, StoreInst *S1);
399 /// \brief Create a PHI node in BB for the operands of S0 and S1
401 PHINode *MergedLoadStoreMotion::getPHIOperand(BasicBlock *BB, StoreInst *S0, argument
404 Value *Opd1 = S0->getValueOperand();
411 NewPN->addIncoming(Opd1, S0->getParent());
423 bool MergedLoadStoreMotion::sinkStore(BasicBlock *BB, StoreInst *S0, argument
426 auto *A0 = dyn_cast<Instruction>(S0->getPointerOperand());
429 (A0->getParent() == S0->getParent()) && A1->hasOneUse() &&
432 dbgs() << "Instruction Left\n"; S0->dump(); dbgs() << "\n";
437 S0
497 auto *S0 = dyn_cast<StoreInst>(I); local
[all...]
/external/llvm/unittests/IR/
H A DInstructionsTest.cpp337 Value *S0 = BTC0->stripPointerCasts(); local
342 EXPECT_NE(S0, Gep0);

Completed in 4422 milliseconds

12