Searched refs:DstSize (Results 1 – 10 of 10) sorted by relevance
/external/clang/lib/CodeGen/ |
D | CGCall.cpp | 622 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 …]
|
D | CGBuiltin.cpp | 632 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/ |
D | InstCombineCasts.cpp | 817 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()
|
D | InstCombineShifts.cpp | 379 unsigned DstSize = TI->getType()->getScalarSizeInBits(); in FoldShiftByConstant() local 380 APInt MaskV(APInt::getLowBitsSet(SrcSize, DstSize)); in FoldShiftByConstant()
|
/external/chromium_org/content/common/gpu/client/ |
D | gl_helper.h | 336 virtual const gfx::Size& DstSize() = 0;
|
D | gl_helper_scaling.cc | 246 virtual const gfx::Size& DstSize() OVERRIDE { in DstSize() function in content::ScalerImpl
|
D | gl_helper.cc | 83 : texture_and_framebuffer_(context, scaler->DstSize()), in ScalerHolder()
|
/external/chromium_org/content/browser/renderer_host/media/ |
D | desktop_capture_device_aura.cc | 328 yuv_readback_pipeline_->scaler()->DstSize() != region_in_frame.size()) { in DidCopyOutput()
|
/external/llvm/lib/IR/ |
D | Instructions.cpp | 2250 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/ |
D | render_widget_host_view_aura.cc | 2032 yuv_readback_pipeline->scaler()->DstSize() != region_in_frame.size()) { in CopyFromCompositingSurfaceHasResultForVideo()
|