Home
last modified time | relevance | path

Searched refs:SrcSize (Results 1 – 11 of 11) sorted by relevance

/external/clang/lib/CodeGen/
DCGCall.cpp679 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/
DInstCombineCasts.cpp815 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()
DInstCombineShifts.cpp378 unsigned SrcSize = TrOp->getType()->getScalarSizeInBits(); in FoldShiftByConstant() local
380 APInt MaskV(APInt::getLowBitsSet(SrcSize, DstSize)); in FoldShiftByConstant()
DInstructionCombining.cpp1256 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/
Dgl_helper_scaling.cc234 virtual const gfx::Size& SrcSize() OVERRIDE { in SrcSize() function in content::ScalerImpl
236 return subscaler_->SrcSize(); in SrcSize()
Dgl_helper.h334 virtual const gfx::Size& SrcSize() = 0;
/external/chromium_org/content/browser/renderer_host/media/
Ddesktop_capture_device_aura.cc326 yuv_readback_pipeline_->scaler()->SrcSize() != result_rect.size() || in DidCopyOutput()
/external/llvm/lib/IR/
DInstructions.cpp2249 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/
DLegalizeDAG.cpp1704 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/
DAArch64ISelLowering.cpp1228 unsigned SrcSize = VA.getValVT().getSizeInBits(); in LowerCall() local
1231 switch (SrcSize) { in LowerCall()
/external/chromium_org/content/browser/renderer_host/
Drender_widget_host_view_aura.cc2030 yuv_readback_pipeline->scaler()->SrcSize() != result_rect.size() || in CopyFromCompositingSurfaceHasResultForVideo()