Searched refs:SrcSize (Results 1 – 11 of 11) sorted by relevance
/external/clang/lib/CodeGen/ |
D | CGCall.cpp | 679 uint64_t SrcSize = DL.getTypeAllocSizeInBits(Val->getType()); 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() 724 uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy); in CreateCoercedLoad() local 735 if (SrcSize >= DstSize) { in CreateCoercedLoad() 758 llvm::ConstantInt::get(CGF.IntPtrTy, SrcSize), in CreateCoercedLoad() 805 uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy); in CreateCoercedStore() local 808 DstPtr = EnterStructPointerForCoercedAccess(DstPtr, DstSTy, SrcSize, CGF); in CreateCoercedStore() 824 if (SrcSize <= DstSize) { in CreateCoercedStore() [all …]
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCasts.cpp | 815 unsigned SrcSize = A->getType()->getScalarSizeInBits(); in visitZExt() local 822 if (SrcSize < DstSize) { in visitZExt() 823 APInt AndValue(APInt::getLowBitsSet(SrcSize, MidSize)); in visitZExt() 829 if (SrcSize == DstSize) { in visitZExt() 830 APInt AndValue(APInt::getLowBitsSet(SrcSize, MidSize)); in visitZExt() 834 if (SrcSize > DstSize) { in visitZExt()
|
D | InstCombineShifts.cpp | 378 unsigned SrcSize = TrOp->getType()->getScalarSizeInBits(); in FoldShiftByConstant() local 380 APInt MaskV(APInt::getLowBitsSet(SrcSize, DstSize)); in FoldShiftByConstant()
|
D | InstructionCombining.cpp | 1256 uint64_t SrcSize = TD->getTypeAllocSize(SrcElTy); in visitGetElementPtrInst() local 1257 if (ResSize && SrcSize % ResSize == 0) { in visitGetElementPtrInst() 1260 uint64_t Scale = SrcSize / ResSize; in visitGetElementPtrInst()
|
/external/chromium_org/content/common/gpu/client/ |
D | gl_helper_scaling.cc | 234 virtual const gfx::Size& SrcSize() OVERRIDE { in SrcSize() function in content::ScalerImpl 236 return subscaler_->SrcSize(); in SrcSize()
|
D | gl_helper.h | 334 virtual const gfx::Size& SrcSize() = 0;
|
/external/chromium_org/content/browser/renderer_host/media/ |
D | desktop_capture_device_aura.cc | 326 yuv_readback_pipeline_->scaler()->SrcSize() != result_rect.size() || in DidCopyOutput()
|
/external/llvm/lib/IR/ |
D | Instructions.cpp | 2249 unsigned SrcSize = SrcTy->getScalarSizeInBits(); in isEliminableCastPair() local 2251 if (SrcSize == DstSize) in isEliminableCastPair() 2253 else if (SrcSize < DstSize) in isEliminableCastPair() 2310 unsigned SrcSize = SrcTy->getScalarSizeInBits(); in isEliminableCastPair() local 2312 if (SrcSize <= PtrSize && SrcSize == DstSize) in isEliminableCastPair()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeDAG.cpp | 1704 unsigned SrcSize = SrcOp.getValueType().getSizeInBits(); in EmitStackConvert() local 1714 if (SrcSize > SlotSize) in EmitStackConvert() 1718 assert(SrcSize == SlotSize && "Invalid store"); in EmitStackConvert()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64ISelLowering.cpp | 1228 unsigned SrcSize = VA.getValVT().getSizeInBits(); in LowerCall() local 1231 switch (SrcSize) { in LowerCall()
|
/external/chromium_org/content/browser/renderer_host/ |
D | render_widget_host_view_aura.cc | 2030 yuv_readback_pipeline->scaler()->SrcSize() != result_rect.size() || in CopyFromCompositingSurfaceHasResultForVideo()
|