HomeSort by relevance Sort by last modified time
    Searched defs:S1 (Results 26 - 50 of 76) sorted by null

12 3 4

  /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;
407 S1 = skey->blowfish.S[0];
461 ulong32 *S1, *S2, *S3, *S4;
469 S1 = skey->blowfish.S[0];
cast5.c 33 static const ulong32 S1[256] = {
    [all...]
  /external/clang/test/ASTMerge/Inputs/
struct1.c 13 struct S1 {
18 struct S1 x1;
struct2.c 10 struct S1 {
15 struct S1 x1;
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p3.cpp 107 typedef struct { } S1; // expected-error {{types cannot be defined in a constexpr function}}
p1.cpp 13 struct s1 { struct
17 constexpr int s1::mi2 = 0;
35 constexpr struct S1 {}; // expected-error {{struct cannot be marked constexpr}}
p4.cpp 95 typedef struct { } S1; // expected-error {{types cannot be defined in a constexpr constructor}}
  /external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
p2.cpp 5 struct S1 {
6 constexpr S1() = default; // expected-error {{defaulted definition of default constructor is not constexpr}}
7 constexpr S1(const S1&) = default;
8 constexpr S1(S1&&) = default;
9 constexpr S1 &operator=(const S1&) = default; // expected-error {{explicitly-defaulted copy assignment operator may not have}}
10 constexpr S1 &operator=(S1&&) = default; // expected-error {{explicitly-defaulted move assignment operator may not have}
    [all...]
  /external/clang/test/Sema/
type-spec-struct-union.c 7 typedef struct S1 {
12 } S1;
14 int test_struct_scope(S1 *s1, struct S2 *s2, struct S3 *s3) {
15 if (s1->u1.x == s2) return 1;
16 if (s1->u1.y == s3) return 1;
20 int test_struct_scope_2(S1 *s1) {
22 if (s1->u1.x == s2) return 1; /* expected-warning {{comparison of distinct pointer types ('struct S2 *' and 'struct S2 *')}} */
  /external/clang/test/SemaCXX/
empty-class-layout.cpp 39 struct S1 : virtual Derived<10> {
42 SA(6, sizeof(S1) == 24);
warn-reorder-ctor-initialization.cpp 10 : s2(1), // expected-warning {{field 's2' will be initialized after field 's1'}}
11 s1(1),
16 int s1; member in class:complex
90 struct S1 { };
91 struct S2: virtual S1 { };
constructor-initializer.cpp 249 struct S1 {
253 S1(int);
256 const int S1::bar;
259 S1 s1; member in struct:PR8075::S2
260 S2() : s1(s1.FOO) {}
264 S1 s1; member in struct:PR8075::S3
265 S3() : s1(s1.bar) {
269 S1 s1; member in struct:PR8075::S4
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonPeephole.cpp 247 unsigned PR = 1, S1 = 2, S2 = 3; // Operand indices.
274 // Swap operands S1 and S2.
275 MachineOperand Op1 = MI->getOperand(S1);
277 ChangeOpInto(MI->getOperand(S1), Op2);
  /external/llvm/lib/Transforms/Scalar/
LoopInstSimplify.cpp 76 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2;
  /external/llvm/unittests/Analysis/
ScalarEvolutionTest.cpp 57 const SCEV *S1 = SE.getSCEV(V1);
61 const SCEV *P1 = SE.getAddExpr(S1, S1);
  /external/srtp/crypto/hash/
sha1.c 56 #define S1(X) ((X << 1) | (X >> 31))
134 TEMP = W[13] ^ W[8] ^ W[2] ^ W[0]; W[16] = S1(TEMP);
135 TEMP = W[14] ^ W[9] ^ W[3] ^ W[1]; W[17] = S1(TEMP);
136 TEMP = W[15] ^ W[10] ^ W[4] ^ W[2]; W[18] = S1(TEMP);
137 TEMP = W[16] ^ W[11] ^ W[5] ^ W[3]; W[19] = S1(TEMP);
138 TEMP = W[17] ^ W[12] ^ W[6] ^ W[4]; W[20] = S1(TEMP);
139 TEMP = W[18] ^ W[13] ^ W[7] ^ W[5]; W[21] = S1(TEMP);
140 TEMP = W[19] ^ W[14] ^ W[8] ^ W[6]; W[22] = S1(TEMP);
141 TEMP = W[20] ^ W[15] ^ W[9] ^ W[7]; W[23] = S1(TEMP);
142 TEMP = W[21] ^ W[16] ^ W[10] ^ W[8]; W[24] = S1(TEMP)
    [all...]
  /external/stlport/test/unit/
mfunptr_test.cpp 40 struct S1 { } s1; variable in typeref:struct:S1
43 int f1(S1&);
44 int f2(S1&, S2&);
45 int f1c(const S1&);
46 int f2c(const S1&, const S2&);
48 void vf1(S1&);
49 void vf2(S1&, S2&);
50 void vf1c(const S1&);
51 void vf2c(const S1&, const S2&)
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
mfunptr_test.cpp 40 struct S1 { } s1; variable in typeref:struct:S1
43 int f1(S1&);
44 int f2(S1&, S2&);
45 int f1c(const S1&);
46 int f2c(const S1&, const S2&);
48 void vf1(S1&);
49 void vf2(S1&, S2&);
50 void vf1c(const S1&);
51 void vf2c(const S1&, const S2&)
    [all...]
  /ndk/tests/device/test-stlport/unit/
mfunptr_test.cpp 40 struct S1 { } s1; variable in typeref:struct:S1
43 int f1(S1&);
44 int f2(S1&, S2&);
45 int f1c(const S1&);
46 int f2c(const S1&, const S2&);
48 void vf1(S1&);
49 void vf2(S1&, S2&);
50 void vf1c(const S1&);
51 void vf2c(const S1&, const S2&)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
BlowfishEngine.java 303 private final int[] S0, S1, S2, S3; // the s-boxes
313 S1 = new int[SBOX_SK];
396 return (((S0[(x >>> 24)] + S1[(x >>> 16) & 0xff])
442 System.arraycopy(KS1, 0, S1, 0, SBOX_SK);
500 processTable(S0[SBOX_SK - 2], S0[SBOX_SK - 1], S1);
501 processTable(S1[SBOX_SK - 2], S1[SBOX_SK - 1], S2);
  /external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
sema.cpp 52 struct S1 {
60 S1 s;
67 void (S1::*mpnospec)();
68 void (S1::*mpallspec)() throw(...);
69 void (S1::*mpintspec)() throw(int);
70 void (S1::*mpemptyspec)() throw();
73 S1 s;
142 P(typeid(*(S1*)0));
167 B(b, S1() + T());
183 void operator +(const S1&, float) throw()
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
BlowFish.java 173 private final int[] S0, S1, S2, S3; // the s-boxes
183 S1 = new int[SBOX_SK];
243 return (((S0[(x >>> 24)] + S1[(x >>> 16) & 0xff]) ^ S2[(x >>> 8) & 0xff]) + S3[x & 0xff]);
284 System.arraycopy(KS1, 0, S1, 0, SBOX_SK);
336 processTable(S0[SBOX_SK - 2], S0[SBOX_SK - 1], S1);
337 processTable(S1[SBOX_SK - 2], S1[SBOX_SK - 1], S2);
  /external/libgsm/src/
long_term.c 366 register float S0 = 0, S1 = 0, S2 = 0, S3 = 0, S4 = 0,
379 E = W * h; S1 += E; \
408 if (S1 > L_max) { L_max = S1; Nc = lambda + 1; }
532 register float S0 = 0, S1 = 0, S2 = 0, S3 = 0, S4 = 0,
545 E = W * h; S1 += E; \
574 if (S1 > L_max) { L_max = S1; Nc = lambda + 1; }
746 register float S0 = 0, S1 = 0, S2 = 0, S3 = 0, S4 = 0,
759 E = W * h; S1 += E;
    [all...]
  /external/llvm/unittests/Support/
AlignOfTest.cpp 51 struct S1 {};
57 struct D1 : S1 {};
63 struct D7 : S1, S3 {};
64 struct D8 : S1, D4, D5 { double x[2]; };
65 struct D9 : S1, D1 { S1 s1; }; member in struct:__anon10807::D9
71 struct V6 : S1 { virtual ~V6(); };
99 [AlignOf<S1>::Alignment > 0]
151 EXPECT_LE(alignOf<char>(), alignOf<S1>());
    [all...]
  /external/llvm/unittests/VMCore/
InstructionsTest.cpp 176 Value *S1 = BTC1->stripPointerCasts();
181 EXPECT_NE(S1, Gep1);

Completed in 5352 milliseconds

12 3 4