Searched refs:Sort (Results 1 - 25 of 38) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/XRay/
H A DTrace.h71 Expected<Trace> loadTraceFile(StringRef Filename, bool Sort = false);
75 Expected<Trace> loadTrace(const DataExtractor &Extractor, bool Sort = false);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DZ3Solver.cpp65 /// Wrapper for Z3 Sort
71 Z3_sort Sort; member in class:__anon2011::Z3Sort
75 Z3Sort(Z3Context &C, Z3_sort ZS) : Context(C), Sort(ZS) {
76 Z3_inc_ref(Context.Context, reinterpret_cast<Z3_ast>(Sort));
80 Z3Sort(const Z3Sort &Other) : Context(Other.Context), Sort(Other.Sort) {
81 Z3_inc_ref(Context.Context, reinterpret_cast<Z3_ast>(Sort));
87 Z3_inc_ref(Context.Context, reinterpret_cast<Z3_ast>(Other.Sort));
88 Z3_dec_ref(Context.Context, reinterpret_cast<Z3_ast>(Sort));
89 Sort
291 newSortRef(const SMTSort &Sort) argument
726 const SMTSortRef Sort = getBitvectorSort(BitWidth); variable
733 SMTSortRef Sort = variable
768 toAPFloat(const SMTSortRef &Sort, const SMTExprRef &AST, llvm::APFloat &Float, bool useSemantics) argument
789 toAPSInt(const SMTSortRef &Sort, const SMTExprRef &AST, llvm::APSInt &Int, bool useSemantics) argument
837 SMTSortRef Sort = getSort(Assign); variable
851 SMTSortRef Sort = getSort(Assign); variable
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugAranges.h35 void Sort(bool minimize);
H A DDWARFDebugAranges.cpp80 void DWARFDebugAranges::Sort(bool minimize) { function in class:DWARFDebugAranges
85 m_aranges.Sort();
H A DNameToDIE.cpp21 m_map.Sort();
H A DDWARFDebugRanges.cpp34 range_list.Sort();
H A DDWARFDebugInfo.cpp67 m_cu_aranges_up->Sort(minimize);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/XRay/
H A DTrace.cpp380 Expected<Trace> llvm::xray::loadTraceFile(StringRef Filename, bool Sort) { argument
410 auto TraceOrError = loadTrace(LittleEndianDE, Sort);
413 TraceOrError = loadTrace(BigEndianDE, Sort);
418 Expected<Trace> llvm::xray::loadTrace(const DataExtractor &DE, bool Sort) { argument
470 if (Sort)
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_memory_profile.cpp51 Sort(allocations_.data(), allocations_.size(),
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueEnumeration.cpp98 m_enumerations.Sort();
H A DOptionValueProperties.cpp59 m_name_to_index.Sort();
77 m_name_to_index.Sort();
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DUniqueCStringMap.h36 // then later call UniqueCStringMap<T>::Sort() before doing any searches by
152 // UniqueCStringMap::Sort()) or to UniqueCStringMap::Insert().
155 // Sort the unsorted contents in this map. A typical code flow would be:
163 // my_map.Sort();
164 void Sort() { llvm::sort(m_map.begin(), m_map.end(), Compare()); } function in class:lldb_private::UniqueCStringMap
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stackdepot.cpp135 Sort(map_.data(), map_.size(), &IdDescPair::IdComparator);
H A Dsanitizer_coverage_libcdep_new.cpp65 Sort(pcs, len);
H A Dsanitizer_allocator_secondary.h210 Sort(reinterpret_cast<uptr *>(chunks), n_chunks_);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DSymtab.cpp330 m_name_to_index.Sort();
332 m_selector_to_index.Sort();
334 m_basename_to_index.Sort();
336 m_method_to_index.Sort();
576 // Sort the indexes in place using std::stable_sort.
872 m_file_addr_to_index.Sort();
883 section_ranges.Sort();
931 // Sort again in case the range size changes the ordering
932 m_file_addr_to_index.Sort();
/freebsd-11-stable/share/mk/
H A Dbsd.test.mk69 # Sort the tests alphabetically, so the results are deterministically formed
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.cpp100 m_objc_class_name_to_index.Sort();
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DRangeMap.h151 void Sort() { function in class:lldb_private::RangeArray
381 void Sort() { function in class:lldb_private::RangeVector
618 void Sort() { function in class:lldb_private::RangeDataVector
851 void Sort() { function in class:lldb_private::AddressDataArray
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DSMTAPI.h393 virtual SMTExprRef mkSymbol(const char *Name, SMTSortRef Sort) = 0;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSMTConv.h298 llvm::SMTSortRef Sort = Solver->getFloatSort(ToBitWidth); local
300 ? Solver->mkSBVtoFP(Exp, Sort)
301 : Solver->mkUBVtoFP(Exp, Sort);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.cpp685 m_cu_data->Sort();
758 m_unwind_data->cfi.Sort();
768 m_unwind_data->win.Sort();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DMemory.cpp106 m_invalid_ranges.Sort();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp195 m_core_aranges.Sort();
196 m_core_range_infos.Sort();
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_common.cpp547 Sort(threads.data(), threads.size());
709 Sort(leaks_.data(), leaks_.size(), &LeakComparator);

Completed in 252 milliseconds

12