Home
last modified time | relevance | path

Searched refs:ExpectedSize (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMinidump.cpp28 auto ExpectedSize = in getString() local
30 if (!ExpectedSize) in getString()
31 return ExpectedSize.takeError(); in getString()
32 size_t Size = (*ExpectedSize)[0]; in getString()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DModuleManager.cpp101 off_t ExpectedSize, time_t ExpectedModTime, in addModule() argument
124 if (lookupModuleFile(FileName, ExpectedSize, ExpectedModTime, Entry)) { in addModule()
437 bool ModuleManager::lookupModuleFile(StringRef FileName, off_t ExpectedSize, in lookupModuleFile() argument
451 ((ExpectedSize && ExpectedSize != File->getSize()) || in lookupModuleFile()
H A DASTReader.cpp5006 off_t ExpectedSize, time_t ExpectedModTime, in ReadASTCore() argument
5013 getGeneration(), ExpectedSize, ExpectedModTime, in ReadASTCore()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DMinidump.h384 auto ExpectedSize = getDataSliceAs<support::ulittle32_t>(*Stream, 0, 1); in getListStream() local
385 if (!ExpectedSize) in getListStream()
386 return ExpectedSize.takeError(); in getListStream()
388 size_t ListSize = ExpectedSize.get()[0]; in getListStream()
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dreport.cpp157 uptr ExpectedSize) { in reportDeleteSizeMismatch() argument
161 Size, ExpectedSize); in reportDeleteSizeMismatch()
H A Dreport.h49 uptr ExpectedSize);
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DModuleManager.h244 off_t ExpectedSize, time_t ExpectedModTime,
303 bool lookupModuleFile(StringRef FileName, off_t ExpectedSize,
H A DASTReader.h1541 off_t ExpectedSize, time_t ExpectedModTime,
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DNonNullParamChecker.cpp89 unsigned ExpectedSize) { in getNonNullAttrsImpl() argument
90 llvm::SmallBitVector AttrNonNull(ExpectedSize); in getNonNullAttrsImpl()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMInstructionSelector.cpp67 unsigned ExpectedSize, unsigned ExpectedRegBankID) const;
70 bool validReg(MachineRegisterInfo &MRI, unsigned Reg, unsigned ExpectedSize,
505 unsigned ExpectedSize, in validOpRegPair() argument
508 validReg(MRI, LHSReg, ExpectedSize, ExpectedRegBankID) && in validOpRegPair()
509 validReg(MRI, RHSReg, ExpectedSize, ExpectedRegBankID); in validOpRegPair()
513 unsigned ExpectedSize, in validReg() argument
515 if (MRI.getType(Reg).getSizeInBits() != ExpectedSize) { in validReg()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaHLSL.cpp4001 size_t ExpectedSize = ILT.DestTypes.size(); in transformInitList() local
4008 ExpectedSize = in transformInitList()
4009 ((ActualSize + ExpectedSize - 1) / ExpectedSize) * ExpectedSize; in transformInitList()
4017 if (ExpectedSize != ActualSize) { in transformInitList()
4018 int TooManyOrFew = ActualSize > ExpectedSize ? 1 : 0; in transformInitList()
4020 << TooManyOrFew << InitTy << ExpectedSize << ActualSize; in transformInitList()
H A DSemaType.cpp8564 unsigned ExpectedSize = VScale->first * MinElts; in HandleRISCVRVVVectorBitsTypeAttr() local
8586 ExpectedSize *= EltSize; in HandleRISCVRVVVectorBitsTypeAttr()
8591 if (VecSize != ExpectedSize) { in HandleRISCVRVVVectorBitsTypeAttr()
8593 << VecSize << ExpectedSize; in HandleRISCVRVVVectorBitsTypeAttr()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp3435 const size_t ExpectedSize = in readMipsOptions() local
3439 if (Size < ExpectedSize) in readMipsOptions()
3444 "), the expected size is 0x" + Twine::utohexstr(ExpectedSize)); in readMipsOptions()