Home
last modified time | relevance | path

Searched refs:InfoBytes (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/Object/
DCOFFObjectFile.cpp493 ArrayRef<uint8_t> InfoBytes; in getDebugPDBInfo() local
495 DebugDir->AddressOfRawData, DebugDir->SizeOfData, InfoBytes)) in getDebugPDBInfo()
497 if (InfoBytes.size() < sizeof(debug_pdb_info) + 1) in getDebugPDBInfo()
499 PDBInfo = reinterpret_cast<const debug_pdb_info *>(InfoBytes.data()); in getDebugPDBInfo()
500 InfoBytes = InfoBytes.drop_front(sizeof(debug_pdb_info)); in getDebugPDBInfo()
501 PDBFileName = StringRef(reinterpret_cast<const char *>(InfoBytes.data()), in getDebugPDBInfo()
502 InfoBytes.size()); in getDebugPDBInfo()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
DCOFFObjectFile.cpp511 ArrayRef<uint8_t> InfoBytes; in getDebugPDBInfo() local
513 DebugDir->AddressOfRawData, DebugDir->SizeOfData, InfoBytes)) in getDebugPDBInfo()
515 if (InfoBytes.size() < sizeof(*PDBInfo) + 1) in getDebugPDBInfo()
517 PDBInfo = reinterpret_cast<const codeview::DebugInfo *>(InfoBytes.data()); in getDebugPDBInfo()
518 InfoBytes = InfoBytes.drop_front(sizeof(*PDBInfo)); in getDebugPDBInfo()
519 PDBFileName = StringRef(reinterpret_cast<const char *>(InfoBytes.data()), in getDebugPDBInfo()
520 InfoBytes.size()); in getDebugPDBInfo()