Searched refs:DstSize (Results 1 - 19 of 19) sorted by relevance

/external/vboot_reference/utility/include/
H A Deficompress.h65 IN OUT UINT32 *DstSize
73 OUT UINT32 *DstSize,
83 IN UINT32 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...]
H A Deficompress.c284 IN OUT UINT32 *DstSize
297 DstSize - On input, the size of DstBuffer; On output,
303 DstSize contains the size needed.
327 mDstUpperLimit = mDst + *DstSize;
364 if (mCompSize + 1 + 8 > *DstSize) {
365 *DstSize = mCompSize + 1 + 8;
368 *DstSize = mCompSize + 1 + 8;
/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);
122 template <int ValRows, int ValCols, int DstSize>
123 static inline void matToArr (const tcu::Matrix<float, ValRows, ValCols>& src, float (&dst)[DstSize])
125 DE_STATIC_ASSERT(DstSize >= ValRows*ValCols);
/external/dng_sdk/source/
H A Ddng_mosaic_info.h140 virtual dng_point DstSize (const dng_point &downScale) const;
H A Ddng_mosaic_info.cpp1769 dng_point dng_mosaic_info::DstSize (const dng_point &downScale) const
H A Ddng_negative.cpp4067 dng_point dstSize = info.DstSize (downScale);
/external/llvm/lib/Linker/
H A DLinkModules.cpp211 uint64_t DstSize = DstDL.getTypeAllocSize(DstGV->getValueType()); local
219 LinkFromSrc = SrcSize > DstSize;
221 if (SrcSize != DstSize)
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp806 unsigned DstSize = CI.getType()->getScalarSizeInBits(); local
808 // SrcSize < DstSize: zext(a & mask)
809 // SrcSize == DstSize: a & mask
810 // SrcSize > DstSize: trunc(a) & mask
811 if (SrcSize < DstSize) {
818 if (SrcSize == DstSize) {
823 if (SrcSize > DstSize) {
825 APInt AndValue(APInt::getLowBitsSet(DstSize, MidSize));
1201 unsigned DstSize = CI.getType()->getScalarSizeInBits(); local
1204 if (LHSTrunc->getType()->getScalarSizeInBits() <= DstSize
[all...]
H A DInstCombineShifts.cpp378 unsigned DstSize = TI->getType()->getScalarSizeInBits(); local
379 APInt MaskV(APInt::getLowBitsSet(SrcSize, DstSize));
/external/clang/lib/CodeGen/
H A DCGCall.cpp1048 /// with an in-memory size smaller than DstSize.
1052 uint64_t DstSize, CodeGenFunction &CGF) {
1064 if (FirstEltSize < DstSize &&
1074 return EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF);
1111 uint64_t DstSize = DL.getTypeSizeInBits(DestIntTy); local
1113 if (SrcSize > DstSize) {
1114 Val = CGF.Builder.CreateLShr(Val, SrcSize - DstSize, "coerce.highbits");
1118 Val = CGF.Builder.CreateShl(Val, DstSize - SrcSize, "coerce.highbits");
1148 uint64_t DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(Ty);
1151 Src = EnterStructPointerForCoercedAccess(Src, SrcSTy, DstSize, CG
1050 EnterStructPointerForCoercedAccess(Address SrcPtr, llvm::StructType *SrcSTy, uint64_t DstSize, CodeGenFunction &CGF) argument
1243 uint64_t DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(DstTy); local
[all...]
H A DCGBuiltin.cpp992 llvm::APSInt Size, DstSize; local
994 !E->getArg(3)->EvaluateAsInt(DstSize, CGM.getContext()))
996 if (Size.ugt(DstSize))
1016 llvm::APSInt Size, DstSize; local
1018 !E->getArg(3)->EvaluateAsInt(DstSize, CGM.getContext()))
1020 if (Size.ugt(DstSize))
1054 llvm::APSInt Size, DstSize; local
1056 !E->getArg(3)->EvaluateAsInt(DstSize, CGM.getContext()))
1058 if (Size.ugt(DstSize))
/external/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp108 unsigned DstSize = RT->getPrimitiveSizeInBits(); local
140 if (SrcSize > DstSize)
155 if (SrcSize == DstSize)
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DRegisterCoalescer.cpp1119 unsigned DstSize = LIS->getApproximateInstructionCount(DstInt); local
1125 if (SrcSize <= ThresSize && DstSize <= ThresSize)
1134 unsigned NewSize = SrcSize + DstSize;
1140 if (DstRC != NewRC && DstSize > ThresSize) {
1142 if (NewUses*DstSize*DstRCCount > 2*DstUses*NewSize*NewRCCount)
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp390 unsigned DstSize = TI->getType()->getScalarSizeInBits(); local
391 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/swiftshader/third_party/LLVM/lib/VMCore/
H A DInstructions.cpp2199 unsigned DstSize = DstTy->getScalarSizeInBits(); local
2200 if (SrcSize == DstSize)
2202 else if (SrcSize < DstSize)
2226 // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize
2231 unsigned DstSize = DstTy->getScalarSizeInBits(); local
2232 if (SrcSize <= PtrSize && SrcSize == DstSize)
/external/llvm/lib/IR/
H A DInstructions.cpp2556 unsigned DstSize = DstTy->getScalarSizeInBits();
2557 if (SrcSize == DstSize)
2559 else if (SrcSize < DstSize)
2573 // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize
2578 unsigned DstSize = DstTy->getScalarSizeInBits();
2579 if (SrcSize <= PtrSize && SrcSize == DstSize)
/external/clang/lib/Sema/
H A DSemaChecking.cpp161 llvm::APSInt Size, DstSize; local
165 !DstSizeArg->EvaluateAsInt(DstSize, S.Context))
168 if (Size.ule(DstSize))

Completed in 382 milliseconds