HomeSort by relevance Sort by last modified time
    Searched refs:NewSymtab (Results 1 - 2 of 2) sorted by null

  /external/llvm/tools/dsymutil/
MachOUtils.cpp 140 // Transfer the symbols described by \a NList to \a NewSymtab which is
145 StringRef Strings, SmallVectorImpl<char> &NewSymtab,
169 NewSymtab.append(reinterpret_cast<char *>(&NList),
175 // to \a NewSymtab. This function does not write in the output file.
176 // \returns the number of symbols in \a NewSymtab.
178 SmallVectorImpl<char> &NewSymtab,
189 Strings, NewSymtab, NewStrings, InDebugNote))
196 NewSymtab, NewStrings, InDebugNote))
409 SmallString<0> NewSymtab;
415 NewSymtab.reserve(SymtabCmd.nsyms * NListSize / 2)
    [all...]
  /external/llvm/lib/ProfileData/
InstrProfReader.cpp 348 std::unique_ptr<InstrProfSymtab> NewSymtab = make_unique<InstrProfSymtab>();
349 if (Error E = createSymtab(*NewSymtab.get()))
352 Symtab = std::move(NewSymtab);
670 std::unique_ptr<InstrProfSymtab> NewSymtab = make_unique<InstrProfSymtab>();
671 Index->populateSymtab(*NewSymtab.get());
673 Symtab = std::move(NewSymtab);

Completed in 383 milliseconds