HomeSort by: relevance | last modified time | path
    Searched refs:ExpectedSize (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Object/
Minidump.cpp 29 auto ExpectedSize =
31 if (!ExpectedSize)
32 return ExpectedSize.takeError();
33 size_t Size = (*ExpectedSize)[0];
79 auto ExpectedSize = getDataSliceAs<support::ulittle32_t>(*Stream, 0, 1);
80 if (!ExpectedSize)
81 return ExpectedSize.takeError();
83 size_t ListSize = ExpectedSize.get()[0];
  /src/external/apache2/llvm/dist/clang/include/clang/Serialization/
ModuleManager.h 228 /// \param ExpectedSize The expected size of the module file, used for
251 off_t ExpectedSize, time_t ExpectedModTime,
297 /// \param ExpectedSize The size that the module file is expected to have.
310 bool lookupModuleFile(StringRef FileName, off_t ExpectedSize,
ASTReader.h 1297 off_t ExpectedSize, time_t ExpectedModTime,
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ModuleManager.cpp 106 off_t ExpectedSize, time_t ExpectedModTime,
123 // Note: ExpectedSize and ExpectedModTime will be 0 for MK_ImplicitModule
125 if (lookupModuleFile(FileName, ExpectedSize, ExpectedModTime, Entry)) {
461 bool ModuleManager::lookupModuleFile(StringRef FileName, off_t ExpectedSize,
478 if ((ExpectedSize && ExpectedSize != File->getSize()) ||
ASTReader.cpp 4494 off_t ExpectedSize, time_t ExpectedModTime,
4501 getGeneration(), ExpectedSize, ExpectedModTime,
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
NonNullParamChecker.cpp 88 unsigned ExpectedSize) {
89 llvm::SmallBitVector AttrNonNull(ExpectedSize);
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMInstructionSelector.cpp 67 unsigned ExpectedSize, unsigned ExpectedRegBankID) const;
70 bool validReg(MachineRegisterInfo &MRI, unsigned Reg, unsigned ExpectedSize,
503 unsigned ExpectedSize,
506 validReg(MRI, LHSReg, ExpectedSize, ExpectedRegBankID) &&
507 validReg(MRI, RHSReg, ExpectedSize, ExpectedRegBankID);
511 unsigned ExpectedSize,
513 if (MRI.getType(Reg).getSizeInBits() != ExpectedSize) {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
ELFDumper.cpp 3054 const size_t ExpectedSize =
3058 if (Size < ExpectedSize)
3063 "), the expected size is 0x" + Twine::utohexstr(ExpectedSize));

Completed in 38 milliseconds