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

  /src/external/apache2/llvm/dist/llvm/lib/Object/
SymbolSize.cpp 58 // Collect sorted symbol addresses. Include dummy addresses for the end
60 std::vector<SymEntry> Addresses;
68 Addresses.push_back({I, *ValueOrErr, SymNum, getSymbolSectionID(O, Sym)});
74 Addresses.push_back(
78 if (Addresses.empty())
81 array_pod_sort(Addresses.begin(), Addresses.end(), compareAddress);
84 for (unsigned I = 0, N = Addresses.size() - 1; I < N; ++I) {
85 auto &P = Addresses[I]
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_interceptors_mac.cc 316 static Map Addresses;
317 Map::Handle h(&Addresses, addr);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cfi-verify/lib/
GraphBuilder.cpp 59 std::vector<uint64_t> Addresses;
62 Addresses.push_back(Address);
65 Addresses.push_back(It->second);
68 return Addresses;
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_interceptors_mac.cpp 364 static Map Addresses;
365 Map::Handle h(&Addresses, addr);
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_interceptors_mac.cpp 363 static Map Addresses;
364 Map::Handle h(&Addresses, addr);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
PerfReader.cpp 436 SmallVector<StringRef, 8> Addresses;
437 Token.split(Addresses, "/");
440 Addresses[0].substr(2).getAsInteger(16, Src);
441 Addresses[1].substr(2).getAsInteger(16, Dst);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DWARFLinker/
DWARFLinker.h 51 /// AddressesMap represents information about valid addresses used
52 /// by debug information. Valid addresses are those which points to
53 /// live code sections. i.e. relocations for these addresses point
59 /// Returns true if represented addresses are from linked file.
60 /// Returns false if represented addresses are from not-linked
216 DWARFFile(StringRef Name, DWARFContext *Dwarf, AddressesMap *Addresses,
218 : FileName(Name), Dwarf(Dwarf), Addresses(Addresses), Warnings(Warnings) {
226 AddressesMap *Addresses = nullptr;
245 /// code section(and thus have entries in the Addresses map). All the debu
    [all...]

Completed in 41 milliseconds