Searched defs:C1 (Results 26 - 50 of 79) sorted by relevance

1234

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DAESEngine.java335 private int C0, C1, C2, C3; field in class:AESEngine
431 C1 = (bytes[index++] & 0xff);
432 C1 |= (bytes[index++] & 0xff) << 8;
433 C1 |= (bytes[index++] & 0xff) << 16;
434 C1 |= bytes[index++] << 24;
458 bytes[index++] = (byte)C1;
459 bytes[index++] = (byte)(C1 >> 8);
460 bytes[index++] = (byte)(C1 >> 16);
461 bytes[index++] = (byte)(C1 >> 24);
480 C1
[all...]
H A DAESFastEngine.java666 private int C0, C1, C2, C3; field in class:AESFastEngine
762 C1 = (bytes[index++] & 0xff);
763 C1 |= (bytes[index++] & 0xff) << 8;
764 C1 |= (bytes[index++] & 0xff) << 16;
765 C1 |= bytes[index++] << 24;
789 bytes[index++] = (byte)C1;
790 bytes[index++] = (byte)(C1 >> 8);
791 bytes[index++] = (byte)(C1 >> 16);
792 bytes[index++] = (byte)(C1 >> 24);
810 C1
[all...]
/external/clang/lib/AST/
H A DRawCommentList.cpp240 const RawComment &C1 = *Comments.back(); local
248 (C1.isTrailingComment() == C2.isTrailingComment())) {
249 unsigned C1EndLine = C1.getEndLine(SourceMgr);
252 SourceRange MergedRange(C1.getSourceRange().getBegin(),
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp1.cpp34 constexpr class C1 {}; // expected-error {{class cannot be marked constexpr}} class
/external/clang/test/CXX/special/class.dtor/
H A Dp5-0x.cpp81 struct C1 : DeletedDtor { C1(); } c1; // expected-error {{deleted function}} expected-note {{base class 'DeletedDtor' has a deleted destructor}} struct in inherits:DeletedDtor
/external/clang/test/Sema/
H A Dreturn.c249 enum Cases { C1, C2, C3, C4 }; enumerator in enum:Cases
252 case C1: return 1;
H A Dwarn-duplicate-enum.c18 enum C { C1, C2 = -1, C3 }; // expected-warning{{element C1 has been implicitly assigned 0 which another element has been assigned}} \ enumerator in enum:C
/external/clang/test/SemaCXX/
H A Dstatic-cast.cpp4 struct C1 : public virtual B {}; // Single virtual base. struct in inherits:B
6 struct D : public C1, public C2 {}; // Diamond
8 struct F : public C1 {}; // Single path to B with virtual.
45 (void)static_cast<const B*>((C1*)0);
46 (void)static_cast<B&>(*((C1*)0));
83 (void)static_cast<C1*>((A*)0); // expected-error {{cannot cast 'A *' to 'C1 *' via virtual base 'B'}}
84 (void)static_cast<C1&>(*((A*)0)); // expected-error {{cannot cast 'A' to 'C1 &' via virtual base 'B'}}
H A Dcstyle-cast.cpp46 struct C1 : public virtual B {}; // Single virtual base. struct in inherits:B
48 struct D : public C1, public C2 {}; // Diamond
50 struct F : public C1 {}; // Single path to B with virtual.
87 (void)(const B*)((C1*)0);
88 (void)(B&)(*((C1*)0));
125 (void)(C1*)((A*)0); // expected-error {{cannot cast 'A *' to 'C1 *' via virtual base 'B'}}
126 (void)(C1&)(*((A*)0)); // expected-error {{cannot cast 'A' to 'C1 &' via virtual base 'B'}}
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
H A DAES.java480 private int C0, C1, C2, C3; field in class:AES
565 C1 = (bytes[index++] & 0xff);
566 C1 |= (bytes[index++] & 0xff) << 8;
567 C1 |= (bytes[index++] & 0xff) << 16;
568 C1 |= bytes[index++] << 24;
590 bytes[index++] = (byte) C1;
591 bytes[index++] = (byte) (C1 >> 8);
592 bytes[index++] = (byte) (C1 >> 16);
593 bytes[index++] = (byte) (C1 >> 24);
611 C1
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp193 // X*C1 + X*C2 --> X * (C1+C2)
194 ConstantInt *C1;
195 if (X == dyn_castFoldableMul(RHS, C1))
196 return BinaryOperator::CreateMul(X, ConstantExpr::getAdd(C1, C2));
624 ConstantInt *C1; local
625 if (Value *X = dyn_castFoldableMul(Op0, C1)) {
627 return BinaryOperator::CreateMul(Op1, SubOne(C1));
629 ConstantInt *C2; // X*C1 - X*C2 -> X * (C1
[all...]
H A DInstCombineMulDivRem.cpp78 static bool MultiplyOverflows(ConstantInt *C1, ConstantInt *C2, bool sign) { argument
79 uint32_t W = C1->getBitWidth();
80 APInt LHSExt = C1->getValue(), RHSExt = C2->getValue();
114 // ((X << C1)*C2) == (X * (C2 << C1))
130 // Canonicalize (X+C1)*CI -> X*CI+C1*CI.
131 { Value *X; ConstantInt *C1; local
133 match(Op0, m_Add(m_Value(X), m_ConstantInt(C1)))) {
135 return BinaryOperator::CreateAdd(Add, Builder->CreateMul(C1, C
148 ConstantInt *C1; local
468 ConstantInt *C1; local
491 { Value *Cond; const APInt *C1, *C2; local
652 { Value *Cond; const APInt *C1, *C2; local
[all...]
H A DInstCombineSelect.cpp195 static bool isSelect01(Constant *C1, Constant *C2) { argument
196 ConstantInt *C1I = dyn_cast<ConstantInt>(C1);
455 // Transform (X >s -1) ? C1 : C2 --> ((X >>s 31) & (C2 - C1)) + C1
456 // and (X <s 0) ? C2 : C1 --> ((X >>s 31) & (C2 - C1)) + C1
463 ConstantInt *C1 = NULL, *C2 = NULL; local
465 C1
[all...]
H A DInstCombineShifts.cpp344 // ((X*C1) << C2) == (X * (C1 << C2))
580 // (X >>?,exact C1) << C2 --> X << (C2-C1)
596 // (X << C1) >>u C2 --> X >>u (C2-C1) & (-1 >> C2)
600 // (X <<nuw C1) >>u C2 --> X >>u (C2-C1)
614 // We can't handle (X << C1) >>s C2, it shifts arbitrary bits in. However,
615 // we can handle (X <<nsw C1) >>
709 Constant *C1, *C2; local
[all...]
/external/speex/libspeex/
H A Dmath_approx.h132 #define C1 21173
138 #define C1 21173 macro
148 rt = ADD16(C0, MULT16_16_Q14(x, ADD16(C1, MULT16_16_Q14(x, ADD16(C2, MULT16_16_Q14(x, (C3)))))));
309 #define C1 0.9999932946f macro
321 return C1 + x*(C2+x*(C3+C4*x));
325 return NEG16(C1 + x*(C2+x*(C3+C4*x)));
/external/clang/test/CodeGenCXX/
H A Ddebug-info-use-after-free.cpp252 C1: class in namespace:__anon4359
268 C1;
288 C1::C3 * >
310 scoped_ptr < C1::C3 > context;
/external/clang/test/FixIt/
H A Dfixit.cpp11 struct C1 { struct
15 struct C2 : virtual public virtual C1 { }; // expected-error{{duplicate}}
17 virtual void C1::f() { } // expected-error{{'virtual' can only be specified inside the class definition}}
19 static void C1::g() { } // expected-error{{'static' can only be specified inside the class definition}}
/external/clang/test/Parser/
H A DMicrosoftExtensions.cpp133 class C1 { class
142 typename C1<T>:: /*template*/ Iterator<0> Mypos; // expected-warning {{use 'template' keyword to treat 'Iterator' as a dependent template name}}
147 typename C1<T>:: /*template*/ Iterator<0> Mypos; // expected-warning {{use 'template' keyword to treat 'Iterator' as a dependent template name}}
/external/libvpx/vpx_scale/generic/
H A Dbicubic_scaler.c68 // C1 = a*t + (3-2*a)*t - (2-a)*t
157 // C1 = -a*t + (2*a+3)*t - (a+2)*t
159 float C1(float t) function
206 real1 = C1(phase_offset_real) * 4096.0;
438 g_c_w[i*4+2] = (C1(phase_offset) * 4096.0);
446 g_c_h[i*4+1] = (C1(phase_offset) * 4096.0);
455 g_c_h_uv[i*4+1] = (C1(phase_offset) * 4096.0);
/external/llvm/lib/Analysis/
H A DAliasSetTracker.cpp184 CallSite C1 = getUnknownInst(i), C2 = Inst; local
185 if (!C1 || !C2 ||
186 AA.getModRefInfo(C1, C2) != AliasAnalysis::NoModRef ||
187 AA.getModRefInfo(C2, C1) != AliasAnalysis::NoModRef)
/external/opencv/cv/src/
H A Dcvoptflowlk.cpp137 | A1B2 B1 | {u} {C1} {0}
141 float A1B2, A2, B1, C1, C2; local
477 C1 = 0;
486 C1 += WII[addr + j].yt * KerY[i];
504 deltaX = -(C1 * A1B2 - C2 * B1);
505 deltaY = -(A1B2 * C2 - A2 * C1);
518 float temp = -(C1 + C2) * IGradNorm;
H A Dcvrotcalipers.cpp317 float C1 = A1 * points[((int *) buf)[0]].x + points[((int *) buf)[0]].y * B1; local
322 float px = (C1 * B2 - C2 * B1) * idet;
323 float py = (A1 * C2 - A2 * C1) * idet;
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DSerializationStressTest1.java213 // MultipleClassBasedReplacementWhenDumping -> C1 -> C2 -> C3 -> FOO
216 private static class C1 implements java.io.Serializable { class in class:SerializationStressTest1.MultipleClassBasedReplacementWhenDumping
239 return new C1();
1199 objLoaded instanceof MultipleClassBasedReplacementWhenDumping.C1);
/external/llvm/include/llvm/
H A DConstants.h846 static Constant *getAdd(Constant *C1, Constant *C2,
848 static Constant *getFAdd(Constant *C1, Constant *C2);
849 static Constant *getSub(Constant *C1, Constant *C2,
851 static Constant *getFSub(Constant *C1, Constant *C2);
852 static Constant *getMul(Constant *C1, Constant *C2,
854 static Constant *getFMul(Constant *C1, Constant *C2);
855 static Constant *getUDiv(Constant *C1, Constant *C2, bool isExact = false);
856 static Constant *getSDiv(Constant *C1, Constant *C2, bool isExact = false);
857 static Constant *getFDiv(Constant *C1, Constant *C2);
858 static Constant *getURem(Constant *C1, Constan
883 getNSWAdd(Constant *C1, Constant *C2) argument
886 getNUWAdd(Constant *C1, Constant *C2) argument
889 getNSWSub(Constant *C1, Constant *C2) argument
892 getNUWSub(Constant *C1, Constant *C2) argument
895 getNSWMul(Constant *C1, Constant *C2) argument
898 getNUWMul(Constant *C1, Constant *C2) argument
901 getNSWShl(Constant *C1, Constant *C2) argument
904 getNUWShl(Constant *C1, Constant *C2) argument
907 getExactSDiv(Constant *C1, Constant *C2) argument
910 getExactUDiv(Constant *C1, Constant *C2) argument
913 getExactAShr(Constant *C1, Constant *C2) argument
916 getExactLShr(Constant *C1, Constant *C2) argument
[all...]
/external/llvm/include/llvm/Support/
H A DIntegersSubsetMapping.h71 bool operator()(const Cluster &C1, const Cluster &C2) { argument
72 return C1.first < C2.first;

Completed in 451 milliseconds

1234