Searched defs:DstSize (Results 1 - 8 of 8) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp389 unsigned DstSize = TI->getType()->getScalarSizeInBits(); local
390 APInt MaskV(APInt::getLowBitsSet(SrcSize, DstSize));
H A DInstCombineCasts.cpp894 unsigned DstSize = CI.getType()->getScalarSizeInBits(); local
896 // SrcSize < DstSize: zext(a & mask)
897 // SrcSize == DstSize: a & mask
898 // SrcSize > DstSize: trunc(a) & mask
899 if (SrcSize < DstSize) {
906 if (SrcSize == DstSize) {
911 if (SrcSize > DstSize) {
913 APInt AndValue(APInt::getLowBitsSet(DstSize, MidSize));
/external/llvm/lib/Linker/
H A DLinkModules.cpp409 uint64_t DstSize = local
419 LinkFromSrc = SrcSize > DstSize;
421 if (SrcSize != DstSize)
/external/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp101 unsigned DstSize = RT->getPrimitiveSizeInBits(); local
133 if (SrcSize > DstSize)
148 if (SrcSize == DstSize)
/external/vboot_reference/utility/
H A Defidecompress.c680 OUT UINT32 *DstSize,
693 DstSize - The size of destination buffer.
712 *DstSize = Src[4] + (Src[5] << 8) + (Src[6] << 16) + (Src[7] << 24);
721 IN UINT32 DstSize,
737 DstSize - The size of destination buffer.
787 if (DstSize != OrigSize) {
847 OUT UINT32 *DstSize,
861 DstSize - The size of destination buffer.
874 DstSize,
885 IN UINT32 DstSize,
677 GetInfo( IN VOID *Source, IN UINT32 SrcSize, OUT UINT32 *DstSize, OUT UINT32 *ScratchSize ) argument
717 Decompress( IN VOID *Source, IN UINT32 SrcSize, IN OUT VOID *Destination, IN UINT32 DstSize, IN OUT VOID *Scratch, IN UINT32 ScratchSize, IN UINT8 Version ) argument
844 EfiGetInfo( IN VOID *Source, IN UINT32 SrcSize, OUT UINT32 *DstSize, OUT UINT32 *ScratchSize ) argument
881 EfiDecompress( IN VOID *Source, IN UINT32 SrcSize, IN OUT VOID *Destination, IN UINT32 DstSize, IN OUT VOID *Scratch, IN UINT32 ScratchSize ) argument
928 TianoGetInfo( IN VOID *Source, IN UINT32 SrcSize, OUT UINT32 *DstSize, OUT UINT32 *ScratchSize ) argument
965 TianoDecompress( IN VOID *Source, IN UINT32 SrcSize, IN OUT VOID *Destination, IN UINT32 DstSize, IN OUT VOID *Scratch, IN UINT32 ScratchSize ) argument
[all...]
/external/clang/lib/CodeGen/
H A DCGCall.cpp877 /// with an in-memory size smaller than DstSize.
881 uint64_t DstSize, CodeGenFunction &CGF) {
893 if (FirstEltSize < DstSize &&
903 return EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF);
940 uint64_t DstSize = DL.getTypeSizeInBits(DestIntTy); local
942 if (SrcSize > DstSize) {
943 Val = CGF.Builder.CreateLShr(Val, SrcSize - DstSize, "coerce.highbits");
947 Val = CGF.Builder.CreateShl(Val, DstSize - SrcSize, "coerce.highbits");
977 uint64_t DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(Ty);
980 Src = EnterStructPointerForCoercedAccess(Src, SrcSTy, DstSize, CG
879 EnterStructPointerForCoercedAccess(Address SrcPtr, llvm::StructType *SrcSTy, uint64_t DstSize, CodeGenFunction &CGF) argument
1072 uint64_t DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(DstTy); local
[all...]
H A DCGBuiltin.cpp899 llvm::APSInt Size, DstSize; local
901 !E->getArg(3)->EvaluateAsInt(DstSize, CGM.getContext()))
903 if (Size.ugt(DstSize))
923 llvm::APSInt Size, DstSize; local
925 !E->getArg(3)->EvaluateAsInt(DstSize, CGM.getContext()))
927 if (Size.ugt(DstSize))
961 llvm::APSInt Size, DstSize; local
963 !E->getArg(3)->EvaluateAsInt(DstSize, CGM.getContext()))
965 if (Size.ugt(DstSize))
/external/clang/lib/Sema/
H A DSemaChecking.cpp158 llvm::APSInt Size, DstSize; local
162 !DstSizeArg->EvaluateAsInt(DstSize, S.Context))
165 if (Size.ule(DstSize))

Completed in 115 milliseconds