Home
last modified time | relevance | path

Searched refs:CastOp (Results 1 – 12 of 12) sorted by relevance

/external/llvm/unittests/Analysis/
DValueTrackingTest.cpp55 Instruction::CastOps CastOp; in expectPattern() local
56 SelectPatternResult R = matchSelectPattern(A, LHS, RHS, &CastOp); in expectPattern()
/external/opencv3/modules/imgproc/src/
Dfilter.cpp3259 template<class CastOp, class VecOp> struct ColumnFilter : public BaseColumnFilter
3261 typedef typename CastOp::type1 ST;
3262 typedef typename CastOp::rtype DT;
3265 double _delta, const CastOp& _castOp=CastOp(), in ColumnFilter()
3287 CastOp castOp = castOp0; in operator ()()
3323 CastOp castOp0;
3329 template<class CastOp, class VecOp> struct SymmColumnFilter : public ColumnFilter<CastOp, VecOp>
3331 typedef typename CastOp::type1 ST;
3332 typedef typename CastOp::rtype DT;
3336 const CastOp& _castOp=CastOp(), in SymmColumnFilter()
[all …]
Dpyramids.cpp849 template<class CastOp, class VecOp> void
853 typedef typename CastOp::type1 WT; in pyrDown_()
854 typedef typename CastOp::rtype T; in pyrDown_()
866 CastOp castOp; in pyrDown_()
974 template<class CastOp, class VecOp> void
978 typedef typename CastOp::type1 WT; in pyrUp_()
979 typedef typename CastOp::rtype T; in pyrUp_()
990 CastOp castOp; in pyrUp_()
Dsamplers.cpp129 template<typename _Tp, typename _DTp, typename _WTp, class ScaleOp, class CastOp>
134 CastOp cast_op; in getRectSubPix_Cn_()
Dimgwarp.cpp1448 template<typename T, typename WT, typename AT, class CastOp, class VecOp>
1459 CastOp castOp; in operator ()()
1561 template<typename T, typename WT, typename AT, class CastOp, class VecOp>
1572 CastOp castOp; in operator ()()
1636 template<typename T, typename WT, typename AT, class CastOp, class VecOp>
1645 CastOp castOp; in operator ()()
3800 template<class CastOp, class VecOp, typename AT>
3805 typedef typename CastOp::rtype T; in remapBilinear()
3806 typedef typename CastOp::type1 WT; in remapBilinear()
3814 CastOp castOp; in remapBilinear()
[all …]
/external/llvm/lib/Analysis/
DBasicAliasAnalysis.cpp269 Value *CastOp = cast<CastInst>(V)->getOperand(0); in GetLinearExpression() local
271 unsigned SmallWidth = CastOp->getType()->getPrimitiveSizeInBits(); in GetLinearExpression()
274 GetLinearExpression(CastOp, Scale, Offset, ZExtBits, SExtBits, DL, in GetLinearExpression()
294 Result = CastOp; in GetLinearExpression()
307 Result = CastOp; in GetLinearExpression()
DValueTracking.cpp3990 Instruction::CastOps *CastOp) { in lookThroughCast() argument
3996 *CastOp = CI->getOpcode(); in lookThroughCast()
4046 Instruction::CastOps *CastOp) { in matchSelectPattern() argument
4067 if (CastOp && CmpLHS->getType() != TrueVal->getType()) { in matchSelectPattern()
4068 if (Value *C = lookThroughCast(CmpI, TrueVal, FalseVal, CastOp)) in matchSelectPattern()
4072 if (Value *C = lookThroughCast(CmpI, FalseVal, TrueVal, CastOp)) in matchSelectPattern()
DScalarEvolution.cpp6147 if (Constant *CastOp = BuildConstantFromSCEV(SS->getOperand())) in BuildConstantFromSCEV() local
6148 return ConstantExpr::getSExt(CastOp, SS->getType()); in BuildConstantFromSCEV()
6153 if (Constant *CastOp = BuildConstantFromSCEV(SZ->getOperand())) in BuildConstantFromSCEV() local
6154 return ConstantExpr::getZExt(CastOp, SZ->getType()); in BuildConstantFromSCEV()
6159 if (Constant *CastOp = BuildConstantFromSCEV(ST->getOperand())) in BuildConstantFromSCEV() local
6160 return ConstantExpr::getTrunc(CastOp, ST->getType()); in BuildConstantFromSCEV()
/external/llvm/include/llvm/Analysis/
DValueTracking.h437 Instruction::CastOps *CastOp = nullptr);
/external/llvm/lib/Transforms/InstCombine/
DInstCombineSelect.cpp1069 Instruction::CastOps CastOp; in visitSelectInst() local
1070 SelectPatternResult SPR = matchSelectPattern(&SI, LHS, RHS, &CastOp); in visitSelectInst()
1089 Value *NewSI = Builder->CreateCast(CastOp, in visitSelectInst()
/external/opencv3/modules/imgproc/test/
Dtest_imgwarp.cpp1568 template <typename T, typename WT, int one, typename CastOp>
1572 CastOp castOp; in resizeArea()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp4134 auto CastOp = (Instruction::CastOps)Opc; in parseFunctionBody() local
4135 if (!CastInst::castIsValid(CastOp, Op, ResTy)) in parseFunctionBody()
4137 I = CastInst::Create(CastOp, Op, ResTy); in parseFunctionBody()