Searched defs:C1 (Results 76 - 100 of 127) sorted by relevance

123456

/external/lldb/test/functionalities/data-formatter/data-formatter-advanced/
H A Dmain.cpp31 i_am_cooler(int I1, int I2, float F1, float F2, char C1, char C2) : argument
32 first_cool(I1,F1,C1),
/external/llvm/include/llvm/IR/
H A DConstants.h837 static Constant *getAdd(Constant *C1, Constant *C2,
839 static Constant *getFAdd(Constant *C1, Constant *C2);
840 static Constant *getSub(Constant *C1, Constant *C2,
842 static Constant *getFSub(Constant *C1, Constant *C2);
843 static Constant *getMul(Constant *C1, Constant *C2,
845 static Constant *getFMul(Constant *C1, Constant *C2);
846 static Constant *getUDiv(Constant *C1, Constant *C2, bool isExact = false);
847 static Constant *getSDiv(Constant *C1, Constant *C2, bool isExact = false);
848 static Constant *getFDiv(Constant *C1, Constant *C2);
849 static Constant *getURem(Constant *C1, Constan
875 getNSWAdd(Constant *C1, Constant *C2) argument
878 getNUWAdd(Constant *C1, Constant *C2) argument
881 getNSWSub(Constant *C1, Constant *C2) argument
884 getNUWSub(Constant *C1, Constant *C2) argument
887 getNSWMul(Constant *C1, Constant *C2) argument
890 getNUWMul(Constant *C1, Constant *C2) argument
893 getNSWShl(Constant *C1, Constant *C2) argument
896 getNUWShl(Constant *C1, Constant *C2) argument
899 getExactSDiv(Constant *C1, Constant *C2) argument
902 getExactUDiv(Constant *C1, Constant *C2) argument
905 getExactAShr(Constant *C1, Constant *C2) argument
908 getExactLShr(Constant *C1, Constant *C2) argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_wm_fp.c780 CONST C1 = { 1.596, -0.813, 2.018, -.391 }
785 RGB.xyz = MAD UYV.zzx, C1, UYV.y
787 RGB.xyz = MAD UYV.xxz, C1, UYV.y
788 RGB.y = MAD UYV.z, C1.w, RGB.y
793 struct prog_src_register C1 = search_or_add_const4f( c, 1.596, -0.813, 2.018, -.391 ); local
831 * RGB.xyz = MAD YUV.zzx, C1, YUV.y
833 * RGB.xyz = MAD YUV.xxz, C1, YUV.y
841 C1,
844 /* RGB.y = MAD YUV.z, C1.w, RGB.y
851 src_swizzle1(C1,
[all...]
/external/chromium_org/third_party/libwebp/dsp/
H A Dlossless_sse2.c29 const __m128i C1 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(c1), zero); local
31 const __m128i V1 = _mm_add_epi16(C0, C1);
42 const __m128i C1 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(c1), zero); local
44 const __m128i avg = _mm_add_epi16(C1, C0);
H A Ddec_neon.c1006 // C1 = kC2 * in4 | kC2 * in12
1008 const int16x8_t C1 = vqdmulhq_n_s16(B1, kC2); local
1015 const int16x4_t c = vqsub_s16(vget_low_s16(C1), vget_high_s16(C0));
1016 const int16x4_t d = vqadd_s16(vget_low_s16(C0), vget_high_s16(C1));
H A Denc_neon.c100 // C1 = kC2 * in4 | kC2 * in12
102 const int16x8_t C1 = vqdmulhq_n_s16(B1, kC2); local
109 const int16x4_t c = vqsub_s16(vget_low_s16(C1), vget_high_s16(C0));
110 const int16x4_t d = vqadd_s16(vget_low_s16(C0), vget_high_s16(C1));
/external/clang/test/SemaCXX/
H A Dfunctional-cast.cpp79 struct C1 : public virtual B {}; // Single virtual base. struct in inherits:B
81 struct D : public C1, public C2 {}; // Diamond
83 struct F : public C1 {}; // Single path to B with virtual.
130 (void)cBp((C1*)0);
132 (void)Br(*((C1*)0));
178 typedef C1 *C1p;
179 (void)C1p((A*)0); // expected-error {{cannot cast 'A *' to 'C1p' (aka 'C1 *') via virtual base 'B'}}
180 typedef C1 &C1r;
181 (void)C1r(*((A*)0)); // expected-error {{cannot cast 'A' to 'C1r' (aka 'C1 &') via virtual base 'B'}}
/external/eigen/Eigen/src/Core/products/
H A DGeneralBlockPanelKernel.h570 AccPacket C0, C1, C2, C3, C4, C5, C6, C7; local
572 traits.initAcc(C1);
609 traits.madd(A0,B_0,C1,T0);
618 traits.madd(A0,B_0,C1,T0);
627 traits.madd(A0,B_0,C1,T0);
636 traits.madd(A0,B_0,C1,T0);
657 traits.madd(A0,B1,C1,T0);
671 traits.madd(A0,B1,C1,T0);
686 traits.madd(A0,B1,C1,T0);
699 traits.madd(A0,B1,C1,T
815 AccPacket C0, C1, C2, C3; local
[all...]
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp658 // (&GV+C1) - (&GV+C2) -> C1-C2, pointer arithmetic cannot overflow.
1152 Constant *C1 = ConstantExpr::getIntegerCast(CE1->getOperand(0), local
1154 return ConstantFoldCompareInstOperands(Predicate, C0, C1, TD, TLI);
H A DInstructionSimplify.cpp979 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
980 Constant *Ops[] = { C0, C1 };
1102 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
1103 Constant *Ops[] = { C0, C1 };
1234 if (Constant *C1 = dyn_cast<Constant>(Op1)) {
1235 Constant *Ops[] = { C0, C1 };
1532 ConstantInt *C1 = dyn_cast<ConstantInt>(C); local
1534 if (C1 && C2 && (C1->getValue() == ~C2->getValue())) {
1535 // (A & C1)|(
[all...]
H A DScalarEvolution.cpp1204 // sext(C1 + (C2 * x)) --> C1 + sext(C2 * x) if C1 < C2
1211 const APInt &C1 = SC1->getValue()->getValue(); local
1213 if (C1.isStrictlyPositive() && C2.isStrictlyPositive() &&
1214 C2.ugt(C1) && C2.isPowerOf2())
1314 // sext{C1,+,C2} --> C1 + sext{0,+,C2} if C1 < C2
1318 const APInt &C1 local
[all...]
/external/llvm/lib/IR/
H A DConstantFold.cpp886 Constant *C1, Constant *C2) {
888 if (isa<UndefValue>(C1) || isa<UndefValue>(C2)) {
891 if (isa<UndefValue>(C1) && isa<UndefValue>(C2))
894 return Constant::getNullValue(C1->getType());
898 return UndefValue::get(C1->getType());
900 if (isa<UndefValue>(C1) && isa<UndefValue>(C2)) // undef & undef -> undef
901 return C1;
902 return Constant::getNullValue(C1->getType()); // undef & X -> 0
906 if (((CI = dyn_cast<ConstantInt>(C1)) && CI->getValue()[0]) ||
908 (isa<UndefValue>(C1)
885 ConstantFoldBinaryInstruction(unsigned Opcode, Constant *C1, Constant *C2) argument
1242 IdxCompare(Constant *C1, Constant *C2, Type *ElTy) argument
1599 ConstantFoldCompareInstruction(unsigned short pred, Constant *C1, Constant *C2) argument
2042 Constant *C1 = ConstantExpr::getSExtOrBitCast(Idx0, Int64Ty); local
[all...]
H A DConstantsContext.h62 BinaryConstantExpr(unsigned Opcode, Constant *C1, Constant *C2, argument
64 : ConstantExpr(C1->getType(), Opcode, &Op<0>(), 2) {
65 Op<0>() = C1;
83 SelectConstantExpr(Constant *C1, Constant *C2, Constant *C3) argument
85 Op<0>() = C1;
104 ExtractElementConstantExpr(Constant *C1, Constant *C2) argument
105 : ConstantExpr(cast<VectorType>(C1->getType())->getElementType(),
107 Op<0>() = C1;
125 InsertElementConstantExpr(Constant *C1, Constant *C2, Constant *C3) argument
126 : ConstantExpr(C1
147 ShuffleVectorConstantExpr(Constant *C1, Constant *C2, Constant *C3) argument
[all...]
/external/llvm/lib/Target/R600/
H A DAMDGPUISelDAGToDAG.cpp741 ConstantSDNode *C1 = cast<ConstantSDNode>(N1); local
743 if (isUInt<12>(C1->getZExtValue())) {
746 // (add (add N2, N3), C1)
751 ImmOffset = CurDAG->getTargetConstant(C1->getZExtValue(), MVT::i16);
755 // (add N0, C1)
758 ImmOffset = CurDAG->getTargetConstant(C1->getZExtValue(), MVT::i16);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp79 static bool MultiplyOverflows(ConstantInt *C1, ConstantInt *C2, bool sign) { argument
80 uint32_t W = C1->getBitWidth();
81 APInt LHSExt = C1->getValue(), RHSExt = C2->getValue();
138 Constant *C1, *C2; local
141 m_Constant(C1))) &&
142 match(C1, m_APInt(IVal)))
143 // ((X << C1)*C2) == (X * (C2 << C1))
144 return BinaryOperator::CreateMul(NewOp, ConstantExpr::getShl(C1, C2));
146 if (match(&I, m_Mul(m_Value(NewOp), m_Constant(C1)))) {
175 ConstantInt *C1; local
204 Constant *C1; local
370 Constant *C1 = dyn_cast<Constant>(I->getOperand(1)); local
393 Constant *C1 = dyn_cast<Constant>(Opnd1); local
485 Constant *C1 = dyn_cast<Constant>(Opnd1); local
922 Constant *C1; local
1084 Constant *C1 = nullptr; local
1122 Constant *C1 = cast<Constant>(Op0), *C2; local
[all...]
H A DInstCombineAddSub.cpp360 ConstantFP *C0, *C1; local
366 if ((C1 = dyn_cast<ConstantFP>(Opnd1)) && C1->isZero())
378 if (!C1)
381 Addend.set(C1, nullptr);
974 const APInt *C1 = nullptr, *C2 = nullptr; local
982 if (match(RHS, m_Xor(m_Value(Y), m_APInt(C1))))
985 if (match(X, m_Xor(m_Value(Y), m_APInt(C1)))) {
986 // X = XOR(Y, C1), Y = OR(Z, C2), C2 = NOT(C1)
1348 Value *A1, *B1, *C1, *A2, *B2, *C2; local
[all...]
H A DInstCombineAndOrXor.cpp120 // OptAndOp - This handles expressions of the form ((val OP C1) & C2). Where
121 // the Op parameter is 'OP', OpRHS is 'C1', and AndRHS is 'C2'. Op is
135 // (X ^ C1) & C2 --> (X & C2) ^ (C1&C2)
144 // (X | C1) & C2 --> (X | (C1&C2)) & C2
152 // (X | C1) & C2 --> (X & (C2^(C1&C2))) | C1
246 // (Val ashr C1)
1929 ConstantInt *C1 = nullptr; Value *X = nullptr; local
1961 ConstantInt *C1 = nullptr, *C2 = nullptr; local
2346 ConstantInt *C1; local
[all...]
/external/webp/src/dsp/
H A Dlossless_sse2.c29 const __m128i C1 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(c1), zero); local
31 const __m128i V1 = _mm_add_epi16(C0, C1);
42 const __m128i C1 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(c1), zero); local
44 const __m128i avg = _mm_add_epi16(C1, C0);
/external/webrtc/src/modules/audio_processing/aec/
H A Daec_core_sse2.c253 // pol5(y) = C5 * y^5 + C4 * y^4 + C3 * y^3 + C2 * y^2 + C1 * y + C0
262 static const ALIGN16_BEG float ALIGN16_END C1[4] = local
273 const __m128 pol5_y_7 = _mm_add_ps(pol5_y_6, *((__m128 *)C1));
323 // Approximate 2^y ~= C2 * y^2 + C1 * y + C0.
326 static const ALIGN16_BEG float C1[4] ALIGN16_END =
331 const __m128 exp2_y_1 = _mm_add_ps(exp2_y_0, *((__m128 *)C1));
/external/aac/libSBRdec/src/
H A Denv_calc.cpp1759 #define C1 ((FIXP_SGL)FL2FXCONST_SGL(2.f*0.00815f)) macro
1824 FIXP_DBL tmp1 = (shift>=0) ? ( fMultDiv2(C1, sineLevel) >> shift )
1825 : ( fMultDiv2(C1, sineLevel) << (-shift) );
1826 FIXP_DBL tmp2 = fMultDiv2(C1, sineLevelNext);
1888 FIXP_DBL addSine = fMultDiv2((pSineLevel[-2] - pSineLevel[0]), C1);
1922 *ptrReal = *ptrReal + fMultDiv2(C1, sineLevel);
1927 *ptrReal = *ptrReal - fMultDiv2(C1, sineLevel);
/external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
H A Daec_core_neon.c297 // pol5(y) = C5 * y^5 + C4 * y^4 + C3 * y^3 + C2 * y^2 + C1 * y + C0
302 const float32x4_t C1 = vdupq_n_f32(-3.3241990f); local
308 pol5_y = vmlaq_f32(C1, y, pol5_y);
353 // Approximate 2^y ~= C2 * y^2 + C1 * y + C0.
355 const float32x4_t C1 = vdupq_n_f32(6.5763628e-1f); local
358 exp2_y = vmlaq_f32(C1, y, exp2_y);
H A Daec_core_sse2.c269 // pol5(y) = C5 * y^5 + C4 * y^4 + C3 * y^3 + C2 * y^2 + C1 * y + C0
279 C1[4] = {-3.3241990f, -3.3241990f, -3.3241990f, -3.3241990f}; local
289 const __m128 pol5_y_7 = _mm_add_ps(pol5_y_6, *((__m128*)C1));
339 // Approximate 2^y ~= C2 * y^2 + C1 * y + C0.
342 static const ALIGN16_BEG float C1[4] ALIGN16_END = {
347 const __m128 exp2_y_1 = _mm_add_ps(exp2_y_0, *((__m128*)C1));
/external/clang/lib/Lex/
H A DLexer.cpp1555 char C1 = Lexer::getCharAndSizeNoWarn(Start, Size, LangOpts); local
1556 if (C1 != '0')
/external/llvm/lib/CodeGen/
H A DIfConversion.cpp239 static bool IfcvtTokenCmp(IfcvtToken *C1, IfcvtToken *C2) { argument
240 int Incr1 = (C1->Kind == ICDiamond)
241 ? -(int)(C1->NumDups + C1->NumDups2) : (int)C1->NumDups;
248 if (C1->NeedSubsumption == false && C2->NeedSubsumption == true)
250 else if (C1->NeedSubsumption == C2->NeedSubsumption) {
252 if ((unsigned)C1->Kind < (unsigned)C2->Kind)
254 else if (C1->Kind == C2->Kind)
255 return C1
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h189 bool operator()(const Case &C1, const Case &C2) { argument
190 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
191 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
198 bool operator()(const CaseBits &C1, const CaseBits &C2) { argument
199 return C1.Bits > C2.Bits;

Completed in 2223 milliseconds

123456