Home
last modified time | relevance | path

Searched refs:DstSize (Results 1 – 10 of 10) sorted by relevance

/external/clang/lib/CodeGen/
DCGCall.cpp622 uint64_t DstSize, CodeGenFunction &CGF) { in EnterStructPointerForCoercedAccess() argument
632 if (FirstEltSize < DstSize && in EnterStructPointerForCoercedAccess()
643 return EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF); in EnterStructPointerForCoercedAccess()
680 uint64_t DstSize = DL.getTypeAllocSizeInBits(DestIntTy); in CoerceIntOrPtrToIntOrPtr() local
681 if (SrcSize > DstSize) { in CoerceIntOrPtrToIntOrPtr()
682 Val = CGF.Builder.CreateLShr(Val, SrcSize - DstSize, "coerce.highbits"); in CoerceIntOrPtrToIntOrPtr()
686 Val = CGF.Builder.CreateShl(Val, DstSize - SrcSize, "coerce.highbits"); in CoerceIntOrPtrToIntOrPtr()
717 uint64_t DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(Ty); in CreateCoercedLoad() local
720 SrcPtr = EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF); in CreateCoercedLoad()
735 if (SrcSize >= DstSize) { in CreateCoercedLoad()
[all …]
DCGBuiltin.cpp632 llvm::APSInt Size, DstSize; in EmitBuiltinExpr() local
634 !E->getArg(3)->EvaluateAsInt(DstSize, CGM.getContext())) in EmitBuiltinExpr()
636 if (Size.ugt(DstSize)) in EmitBuiltinExpr()
659 llvm::APSInt Size, DstSize; in EmitBuiltinExpr() local
661 !E->getArg(3)->EvaluateAsInt(DstSize, CGM.getContext())) in EmitBuiltinExpr()
663 if (Size.ugt(DstSize)) in EmitBuiltinExpr()
698 llvm::APSInt Size, DstSize; in EmitBuiltinExpr() local
700 !E->getArg(3)->EvaluateAsInt(DstSize, CGM.getContext())) in EmitBuiltinExpr()
702 if (Size.ugt(DstSize)) in EmitBuiltinExpr()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCasts.cpp817 unsigned DstSize = CI.getType()->getScalarSizeInBits(); in visitZExt() local
822 if (SrcSize < DstSize) { in visitZExt()
829 if (SrcSize == DstSize) { in visitZExt()
834 if (SrcSize > DstSize) { in visitZExt()
836 APInt AndValue(APInt::getLowBitsSet(DstSize, MidSize)); in visitZExt()
1211 unsigned DstSize = CI.getType()->getScalarSizeInBits(); in visitFPTrunc() local
1214 if (LHSTrunc->getType()->getScalarSizeInBits() <= DstSize && in visitFPTrunc()
1215 RHSTrunc->getType()->getScalarSizeInBits() <= DstSize) { in visitFPTrunc()
DInstCombineShifts.cpp379 unsigned DstSize = TI->getType()->getScalarSizeInBits(); in FoldShiftByConstant() local
380 APInt MaskV(APInt::getLowBitsSet(SrcSize, DstSize)); in FoldShiftByConstant()
/external/chromium_org/content/common/gpu/client/
Dgl_helper.h336 virtual const gfx::Size& DstSize() = 0;
Dgl_helper_scaling.cc246 virtual const gfx::Size& DstSize() OVERRIDE { in DstSize() function in content::ScalerImpl
Dgl_helper.cc83 : texture_and_framebuffer_(context, scaler->DstSize()), in ScalerHolder()
/external/chromium_org/content/browser/renderer_host/media/
Ddesktop_capture_device_aura.cc328 yuv_readback_pipeline_->scaler()->DstSize() != region_in_frame.size()) { in DidCopyOutput()
/external/llvm/lib/IR/
DInstructions.cpp2250 unsigned DstSize = DstTy->getScalarSizeInBits(); in isEliminableCastPair() local
2251 if (SrcSize == DstSize) in isEliminableCastPair()
2253 else if (SrcSize < DstSize) in isEliminableCastPair()
2311 unsigned DstSize = DstTy->getScalarSizeInBits(); in isEliminableCastPair() local
2312 if (SrcSize <= PtrSize && SrcSize == DstSize) in isEliminableCastPair()
/external/chromium_org/content/browser/renderer_host/
Drender_widget_host_view_aura.cc2032 yuv_readback_pipeline->scaler()->DstSize() != region_in_frame.size()) { in CopyFromCompositingSurfaceHasResultForVideo()