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

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
FunctionInfo.cpp 191 const StringRef InfoBytes = Data.getData().substr(Offset, InfoLength);
192 if (InfoLength != InfoBytes.size())
195 DataExtractor InfoData(InfoBytes, Data.isLittleEndian(),
  /src/external/apache2/llvm/dist/llvm/lib/Object/
COFFObjectFile.cpp 516 ArrayRef<uint8_t> InfoBytes;
518 DebugDir->AddressOfRawData, DebugDir->SizeOfData, InfoBytes))
520 if (InfoBytes.size() < sizeof(*PDBInfo) + 1)
522 PDBInfo = reinterpret_cast<const codeview::DebugInfo *>(InfoBytes.data());
523 InfoBytes = InfoBytes.drop_front(sizeof(*PDBInfo));
524 PDBFileName = StringRef(reinterpret_cast<const char *>(InfoBytes.data()),
525 InfoBytes.size());

Completed in 17 milliseconds