Searched refs:SrcSize (Results 1 - 13 of 13) sorted by relevance

/external/deqp/modules/glshared/
H A DglsLongStressCase.hpp114 template <typename T, int SrcSize, int DstSize>
115 static inline void vecToArr (const tcu::Vector<T, SrcSize>& src, T (&dst)[DstSize])
117 DE_STATIC_ASSERT(DstSize >= SrcSize);
118 for (int i = 0; i < SrcSize; i++)
/external/clang/lib/CodeGen/
H A DCGCall.cpp720 uint64_t SrcSize = DL.getTypeSizeInBits(Val->getType()); local
723 if (SrcSize > DstSize) {
724 Val = CGF.Builder.CreateLShr(Val, SrcSize - DstSize, "coerce.highbits");
728 Val = CGF.Builder.CreateShl(Val, DstSize - SrcSize, "coerce.highbits");
766 uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy); local
777 if (SrcSize >= DstSize) {
778 // Generally SrcSize is never greater than DstSize, since this means we are
800 llvm::ConstantInt::get(CGF.IntPtrTy, SrcSize),
847 uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy); local
850 DstPtr = EnterStructPointerForCoercedAccess(DstPtr, DstSTy, SrcSize, CG
1530 uint64_t SrcSize = CGM.getDataLayout().getTypeAllocSize(STy); local
2811 uint64_t SrcSize = CGM.getDataLayout().getTypeAllocSize(SrcTy); local
[all...]
/external/chromium_org/content/common/gpu/client/
H A Dgl_helper_scaling.cc223 virtual const gfx::Size& SrcSize() OVERRIDE {
225 return subscaler_->SrcSize();
H A Dgl_helper.h287 virtual const gfx::Size& SrcSize() = 0;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp818 unsigned SrcSize = A->getType()->getScalarSizeInBits(); local
822 // SrcSize < DstSize: zext(a & mask)
823 // SrcSize == DstSize: a & mask
824 // SrcSize > DstSize: trunc(a) & mask
825 if (SrcSize < DstSize) {
826 APInt AndValue(APInt::getLowBitsSet(SrcSize, MidSize));
832 if (SrcSize == DstSize) {
833 APInt AndValue(APInt::getLowBitsSet(SrcSize, MidSize));
837 if (SrcSize > DstSize) {
H A DInstCombineShifts.cpp381 unsigned SrcSize = TrOp->getType()->getScalarSizeInBits(); local
383 APInt MaskV(APInt::getLowBitsSet(SrcSize, DstSize));
H A DInstructionCombining.cpp1598 uint64_t SrcSize = DL->getTypeAllocSize(SrcElTy); local
1599 if (ResSize && SrcSize % ResSize == 0) {
1602 uint64_t Scale = SrcSize / ResSize;
/external/llvm/lib/Linker/
H A DLinkModules.cpp620 uint64_t SrcSize = local
628 LinkFromSrc = SrcSize > DstSize;
630 if (SrcSize != DstSize)
/external/chromium_org/content/browser/media/capture/
H A Ddesktop_capture_device_aura.cc402 yuv_readback_pipeline_->scaler()->SrcSize() != result_rect.size() ||
/external/llvm/lib/IR/
H A DInstructions.cpp2287 unsigned SrcSize = SrcTy->getScalarSizeInBits(); local
2289 if (SrcSize == DstSize)
2291 else if (SrcSize < DstSize)
2305 // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize
2309 unsigned SrcSize = SrcTy->getScalarSizeInBits(); local
2311 if (SrcSize <= PtrSize && SrcSize == DstSize)
/external/chromium_org/content/browser/compositor/
H A Ddelegated_frame_host.cc798 yuv_readback_pipeline->scaler()->SrcSize() != result_rect.size() ||
/external/llvm/lib/Target/R600/
H A DAMDGPUISelLowering.cpp450 unsigned SrcSize = DL->getTypeSizeInBits(Src->getScalarType()); local
453 return SrcSize == 32 && DestSize == 64;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1774 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
1784 if (SrcSize > SlotSize)
1788 assert(SrcSize == SlotSize && "Invalid store");

Completed in 256 milliseconds