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

/external/clang/test/CodeGen/
H A Dmips-byval-arg.c6 } S0; typedef in typeref:struct:__anon4228
8 extern void foo2(S0);
13 void foo1(S0 a0) {
H A Dmips64-padding-arg.c6 } S0; typedef in typeref:struct:__anon4229
8 // Insert padding to ensure arguments of type S0 are aligned to 16-byte boundaries.
14 extern void foo2(int, int, int, S0, S0, int, S0);
16 void foo1(int a0, S0 a1, S0 a2, int b, S0 a3) {
34 // CHECK: define void @foo5(%struct.S0* noalias sret %agg.result, i64, fp128 %a0)
35 // CHECK: call void @foo6(%struct.S0* sre
[all...]
H A Dx86_64-arguments.c208 struct S0 { char f0[8]; char f2; char f3; char f4; }; struct
209 void f30(struct S0 p_4) {
/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
/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/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/skia/bench/
H A DScalarBench.cpp100 static SkBenchmark* S0(void* p) { return new FloatComparisonBench(p); } function
103 static BenchRegistry gReg0(S0);
/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/llvm/unittests/Analysis/
H A DScalarEvolutionTest.cpp56 const SCEV *S0 = SE.getSCEV(V0); local
60 const SCEV *P0 = SE.getAddExpr(S0, S0);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DBlowfishEngine.java303 private final int[] S0, S1, S2, S3; // the s-boxes field in class:BlowfishEngine
312 S0 = new int[SBOX_SK];
396 return (((S0[(x >>> 24)] + S1[(x >>> 16) & 0xff])
441 System.arraycopy(KS0, 0, S0, 0, SBOX_SK);
499 processTable(P[P_SZ - 2], P[P_SZ - 1], S0);
500 processTable(S0[SBOX_SK - 2], S0[SBOX_SK - 1], S1);
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
H A DBlowFish.java173 private final int[] S0, S1, S2, S3; // the s-boxes field in class:BlowFish
182 S0 = new int[SBOX_SK];
243 return (((S0[(x >>> 24)] + S1[(x >>> 16) & 0xff]) ^ S2[(x >>> 8) & 0xff]) + S3[x & 0xff]);
283 System.arraycopy(KS0, 0, S0, 0, SBOX_SK);
335 processTable(P[P_SZ - 2], P[P_SZ - 1], S0);
336 processTable(S0[SBOX_SK - 2], S0[SBOX_SK - 1], S1);
/external/llvm/unittests/VMCore/
H A DInstructionsTest.cpp175 Value *S0 = BTC0->stripPointerCasts(); local
180 EXPECT_NE(S0, Gep0);
/external/chromium/crypto/third_party/nss/
H A Dsha512.cc154 #define S0(x) (ROTR32(x, 2) ^ ROTR32(x,13) ^ ROTR32(x,22)) macro
289 h += S0(a) + Maj(a,b,c);
393 #undef S0 macro
535 #define S0(x) (ROTR64(x,28) ^ ROTR64(x,34) ^ ROTR64(x,39))
728 h += S0(a) + Maj(a,b,c); \
/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/webkit/Source/JavaScriptCore/assembler/
H A DARMAssembler.h43 r3, S0 = r3, enumerator in enum:JSC::ARMRegisters::__anon14300
612 dtr_dr(true, ARMRegisters::S0, ARMRegisters::S0, ARMRegisters::S0);

Completed in 527 milliseconds