/external/vboot_reference/utility/ |
D | efidecompress.c | 680 OUT UINT32 *DstSize, in GetInfo() argument 712 *DstSize = Src[4] + (Src[5] << 8) + (Src[6] << 16) + (Src[7] << 24); in GetInfo() 721 IN UINT32 DstSize, in Decompress() argument 787 if (DstSize != OrigSize) { in Decompress() 847 OUT UINT32 *DstSize, in EfiGetInfo() argument 874 DstSize, in EfiGetInfo() 885 IN UINT32 DstSize, in EfiDecompress() argument 919 DstSize, in EfiDecompress() 931 OUT UINT32 *DstSize, in TianoGetInfo() argument 958 DstSize, in TianoGetInfo() [all …]
|
D | eficompress.c | 284 IN OUT UINT32 *DstSize in EfiCompress() argument 327 mDstUpperLimit = mDst + *DstSize; in EfiCompress() 364 if (mCompSize + 1 + 8 > *DstSize) { in EfiCompress() 365 *DstSize = mCompSize + 1 + 8; in EfiCompress() 368 *DstSize = mCompSize + 1 + 8; in EfiCompress()
|
/external/deqp/modules/glshared/ |
D | glsLongStressCase.hpp | 114 template <typename T, int SrcSize, int DstSize> 115 static inline void vecToArr (const tcu::Vector<T, SrcSize>& src, T (&dst)[DstSize]) in vecToArr() 117 DE_STATIC_ASSERT(DstSize >= SrcSize); in vecToArr() 122 template <int ValRows, int ValCols, int DstSize> 123 …static inline void matToArr (const tcu::Matrix<float, ValRows, ValCols>& src, float (&dst)[DstSize… in matToArr() 125 DE_STATIC_ASSERT(DstSize >= ValRows*ValCols); in matToArr()
|
/external/vboot_reference/utility/include/ |
D | eficompress.h | 65 IN OUT UINT32 *DstSize 73 OUT UINT32 *DstSize, 83 IN UINT32 DstSize,
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/ |
D | AArch64InstructionSelector.cpp | 363 const unsigned DstSize = MRI.getType(DstReg).getSizeInBits(); in selectCopy() local 364 (void)DstSize; in selectCopy() 370 (DstSize == SrcSize || in selectCopy() 374 DstSize <= RBI.getSizeInBits(SrcReg, MRI, TRI)) || in selectCopy() 378 (((DstSize + 31) / 32 == (SrcSize + 31) / 32) && DstSize > SrcSize)) && in selectCopy() 380 assert((DstSize <= 64 || RegBank.getID() == AArch64::FPRRegBankID) && in selectCopy() 386 LLVM_DEBUG(dbgs() << "Unexpected bitcast size " << DstSize << '\n'); in selectCopy() 432 const unsigned DstSize = DstTy.getSizeInBits(); in selectFPConvOpc() local 435 switch (DstSize) { in selectFPConvOpc() 924 unsigned DstSize = DstTy.getSizeInBits(); in select() local [all …]
|
D | AArch64GenRegisterBankInfo.def | 235 AArch64GenRegisterBankInfo::getFPExtMapping(unsigned DstSize, 251 assert((DstSize == 32 || DstSize == 64) && "Unexpected half extension"); 252 if (DstSize == 32) 258 assert(DstSize == 64 && "Unexpected float extension"); 261 assert((SrcSize == 64 || DstSize == 128) && "Unexpected vector extension");
|
D | AArch64RegisterBankInfo.cpp | 178 #define CHECK_VALUEMAP_FPEXT(DstSize, SrcSize) \ in AArch64RegisterBankInfo() argument 180 unsigned PartialMapDstIdx = PMI_FPR##DstSize - PMI_Min; \ in AArch64RegisterBankInfo() 184 const ValueMapping *Map = getFPExtMapping(DstSize, SrcSize); \ in AArch64RegisterBankInfo() 188 Map[0].NumBreakDowns == 1 && "FPR" #DstSize \ in AArch64RegisterBankInfo()
|
D | AArch64RegisterBankInfo.h | 96 getFPExtMapping(unsigned DstSize, unsigned SrcSize);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPURegisterBankInfo.cpp | 336 unsigned DstSize = getSizeInBits(MI.getOperand(0).getReg(), MRI, *TRI); in getInstrMapping() local 338 OpdsMapping[0] = AMDGPU::getValueMapping(BankID, DstSize); in getInstrMapping() 346 unsigned DstSize = MRI.getType(MI.getOperand(0).getReg()).getSizeInBits(); in getInstrMapping() local 349 OpdsMapping[0] = AMDGPU::getValueMapping(Bank, DstSize); in getInstrMapping() 365 unsigned DstSize = getSizeInBits(Dst, MRI, *TRI); in getInstrMapping() local 367 OpdsMapping[0] = AMDGPU::getValueMapping(Bank, DstSize); in getInstrMapping() 374 unsigned DstSize = getSizeInBits(Dst, MRI, *TRI); in getInstrMapping() local 387 OpdsMapping[0] = AMDGPU::getValueMapping(DstBank, DstSize); in getInstrMapping()
|
D | SIRegisterInfo.cpp | 1519 unsigned DstSize = getRegSizeInBits(*DstRC); in shouldCoalesce() local 1526 if (SrcSize <= 32 || DstSize <= 32) in shouldCoalesce() 1529 return NewSize <= DstSize || NewSize <= SrcSize; in shouldCoalesce()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/Disassembler/ |
D | AMDGPUDisassembler.cpp | 318 unsigned DstSize = IsGather4 ? 4 : countPopulation(DMask); in convertMIMGInst() local 319 if (DstSize == 1) in convertMIMGInst() 324 DstSize = (DstSize + 1) / 2; in convertMIMGInst() 339 NewOpcode = AMDGPU::getMaskedMIMGOp(MI.getOpcode(), DstSize); in convertMIMGInst()
|
/external/dng_sdk/source/ |
D | dng_mosaic_info.h | 140 virtual dng_point DstSize (const dng_point &downScale) const;
|
/external/llvm/lib/Linker/ |
D | LinkModules.cpp | 211 uint64_t DstSize = DstDL.getTypeAllocSize(DstGV->getValueType()); in computeResultingSelectionKind() local 219 LinkFromSrc = SrcSize > DstSize; in computeResultingSelectionKind() 221 if (SrcSize != DstSize) in computeResultingSelectionKind()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Linker/ |
D | LinkModules.cpp | 195 uint64_t DstSize = DstDL.getTypeAllocSize(DstGV->getValueType()); in computeResultingSelectionKind() local 203 LinkFromSrc = SrcSize > DstSize; in computeResultingSelectionKind() 205 if (SrcSize != DstSize) in computeResultingSelectionKind()
|
/external/clang/lib/CodeGen/ |
D | CGCall.cpp | 1052 uint64_t DstSize, CodeGenFunction &CGF) { in EnterStructPointerForCoercedAccess() argument 1064 if (FirstEltSize < DstSize && in EnterStructPointerForCoercedAccess() 1074 return EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF); in EnterStructPointerForCoercedAccess() 1111 uint64_t DstSize = DL.getTypeSizeInBits(DestIntTy); in CoerceIntOrPtrToIntOrPtr() local 1113 if (SrcSize > DstSize) { in CoerceIntOrPtrToIntOrPtr() 1114 Val = CGF.Builder.CreateLShr(Val, SrcSize - DstSize, "coerce.highbits"); in CoerceIntOrPtrToIntOrPtr() 1118 Val = CGF.Builder.CreateShl(Val, DstSize - SrcSize, "coerce.highbits"); in CoerceIntOrPtrToIntOrPtr() 1148 uint64_t DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(Ty); in CreateCoercedLoad() local 1151 Src = EnterStructPointerForCoercedAccess(Src, SrcSTy, DstSize, CGF); in CreateCoercedLoad() 1166 if (SrcSize >= DstSize) { in CreateCoercedLoad() [all …]
|
D | CGBuiltin.cpp | 992 llvm::APSInt Size, DstSize; in EmitBuiltinExpr() local 994 !E->getArg(3)->EvaluateAsInt(DstSize, CGM.getContext())) in EmitBuiltinExpr() 996 if (Size.ugt(DstSize)) in EmitBuiltinExpr() 1016 llvm::APSInt Size, DstSize; in EmitBuiltinExpr() local 1018 !E->getArg(3)->EvaluateAsInt(DstSize, CGM.getContext())) in EmitBuiltinExpr() 1020 if (Size.ugt(DstSize)) in EmitBuiltinExpr() 1054 llvm::APSInt Size, DstSize; in EmitBuiltinExpr() local 1056 !E->getArg(3)->EvaluateAsInt(DstSize, CGM.getContext())) in EmitBuiltinExpr() 1058 if (Size.ugt(DstSize)) in EmitBuiltinExpr()
|
/external/llvm/lib/Transforms/Utils/ |
D | LoopUtils.cpp | 108 unsigned DstSize = RT->getPrimitiveSizeInBits(); in getSourceExtensionKind() local 140 if (SrcSize > DstSize) in getSourceExtensionKind() 155 if (SrcSize == DstSize) in getSourceExtensionKind()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | MachineVerifier.cpp | 1025 unsigned DstSize = DstElTy.getSizeInBits(); in visitMachineInstrBefore() local 1029 if (DstSize <= SrcSize) in visitMachineInstrBefore() 1034 if (DstSize >= SrcSize) in visitMachineInstrBefore() 1059 unsigned DstSize = TRI->getRegSizeInBits(DstOp.getReg(), *MRI); in visitMachineInstrBefore() local 1061 assert(DstSize && "Expecting size here"); in visitMachineInstrBefore() 1062 if (SrcSize != DstSize) in visitMachineInstrBefore() 1065 errs() << "Def Size = " << DstSize << ", Src Size = " << SrcSize in visitMachineInstrBefore()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/ |
D | X86InstructionSelector.cpp | 234 const unsigned DstSize = RBI.getSizeInBits(DstReg, MRI, TRI); in selectCopy() local 244 if (DstSize > SrcSize && SrcRegBank.getID() == X86::GPRRegBankID && in selectCopy() 270 assert((DstSize == SrcSize || in selectCopy() 274 DstSize <= RBI.getSizeInBits(SrcReg, MRI, TRI))) && in selectCopy() 281 DstRegBank.getID() == X86::GPRRegBankID && SrcSize > DstSize && in selectCopy()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCasts.cpp | 894 unsigned DstSize = CI.getType()->getScalarSizeInBits(); in visitZExt() local 899 if (SrcSize < DstSize) { in visitZExt() 906 if (SrcSize == DstSize) { in visitZExt() 911 if (SrcSize > DstSize) { in visitZExt() 913 APInt AndValue(APInt::getLowBitsSet(DstSize, MidSize)); in visitZExt()
|
D | InstCombineShifts.cpp | 390 unsigned DstSize = TI->getType()->getScalarSizeInBits(); in FoldShiftByConstant() local 391 APInt MaskV(APInt::getLowBitsSet(SrcSize, DstSize)); in FoldShiftByConstant()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCasts.cpp | 1115 unsigned DstSize = CI.getType()->getScalarSizeInBits(); in visitZExt() local 1120 if (SrcSize < DstSize) { in visitZExt() 1127 if (SrcSize == DstSize) { in visitZExt() 1132 if (SrcSize > DstSize) { in visitZExt() 1134 APInt AndValue(APInt::getLowBitsSet(DstSize, MidSize)); in visitZExt()
|
D | InstCombineShifts.cpp | 399 unsigned DstSize = TI->getType()->getScalarSizeInBits(); in FoldShiftByConstant() local 400 APInt MaskV(APInt::getLowBitsSet(SrcSize, DstSize)); in FoldShiftByConstant()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | Instructions.cpp | 2378 unsigned DstSize = DstTy->getScalarSizeInBits(); in isEliminableCastPair() local 2379 if (SrcSize == DstSize) in isEliminableCastPair() 2381 else if (SrcSize < DstSize) in isEliminableCastPair() 2394 unsigned DstSize = DstTy->getScalarSizeInBits(); in isEliminableCastPair() local 2395 if (SrcSize <= PtrSize && SrcSize == DstSize) in isEliminableCastPair()
|
/external/llvm/lib/IR/ |
D | Instructions.cpp | 2556 unsigned DstSize = DstTy->getScalarSizeInBits(); in isEliminableCastPair() local 2557 if (SrcSize == DstSize) in isEliminableCastPair() 2559 else if (SrcSize < DstSize) in isEliminableCastPair() 2578 unsigned DstSize = DstTy->getScalarSizeInBits(); in isEliminableCastPair() local 2579 if (SrcSize <= PtrSize && SrcSize == DstSize) in isEliminableCastPair()
|