HomeSort by: relevance | last modified time | path
    Searched defs:Rva (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
SymbolRecord.h 115 uint32_t Rva = 0;
  /src/external/apache2/llvm/dist/llvm/lib/Object/
COFFObjectFile.cpp 459 uint64_t Rva = Addr - ImageBase;
460 assert(Rva <= UINT32_MAX);
461 return getRvaPtr((uint32_t)Rva, Res);
464 // Returns the file offset for the given RVA.
480 Error COFFObjectFile::getRvaAndSizeAsBytes(uint32_t RVA, uint32_t Size,
485 // Check if this RVA is within the section bounds. Be careful about integer
487 uint32_t OffsetIntoSection = RVA - SectionStart;
488 if (SectionStart <= RVA && OffsetIntoSection < Section->VirtualSize &&
500 // Returns hint and name fields, assuming \p Rva is pointing to a Hint/Name
502 Error COFFObjectFile::getHintName(uint32_t Rva, uint16_t &Hint
    [all...]

Completed in 24 milliseconds