Home
last modified time | relevance | path

Searched refs:Sort (Results 1 – 25 of 77) sorted by relevance

1234

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DZ3Solver.cpp79 Z3_sort Sort; member in __anona2cc94240111::Z3Sort
83 Z3Sort(Z3Context &C, Z3_sort ZS) : Context(C), Sort(ZS) { in Z3Sort()
84 Z3_inc_ref(Context.Context, reinterpret_cast<Z3_ast>(Sort)); in Z3Sort()
88 Z3Sort(const Z3Sort &Other) : Context(Other.Context), Sort(Other.Sort) { in Z3Sort()
89 Z3_inc_ref(Context.Context, reinterpret_cast<Z3_ast>(Sort)); in Z3Sort()
95 Z3_inc_ref(Context.Context, reinterpret_cast<Z3_ast>(Other.Sort)); in operator =()
96 Z3_dec_ref(Context.Context, reinterpret_cast<Z3_ast>(Sort)); in operator =()
97 Sort = Other.Sort; in operator =()
105 if (Sort) in ~Z3Sort()
106 Z3_dec_ref(Context.Context, reinterpret_cast<Z3_ast>(Sort)); in ~Z3Sort()
[all …]
/freebsd/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/contrib/llvm-project/llvm/lib/XRay/
H A DTrace.cpp381 Expected<Trace> llvm::xray::loadTraceFile(StringRef Filename, bool Sort) { in loadTraceFile()
411 auto TraceOrError = loadTrace(LittleEndianDE, Sort); in loadTraceFile()
415 TraceOrError = loadTrace(BigEndianDE, Sort); in loadTraceFile()
420 Expected<Trace> llvm::xray::loadTrace(const DataExtractor &DE, bool Sort) { in loadTrace()
472 if (Sort) in loadTrace()
378 loadTraceFile(StringRef Filename,bool Sort) loadTraceFile() argument
417 loadTrace(const DataExtractor & DE,bool Sort) loadTrace() argument
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugAranges.cpp91 void DWARFDebugAranges::Sort(bool minimize) { in Sort() function in DWARFDebugAranges
94 m_aranges.Sort(); in Sort()
H A DNameToDIE.cpp26 m_map.Sort(std::less<DIERef>()); in Finalize()
124 m_map.Sort(std::less<DIERef>()); in Decode()
H A DDWARFDebugAranges.h35 void Sort(bool minimize);
H A DDWARFDebugRanges.cpp38 lldb_range_list.Sort(); in Extract()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DUniqueCStringMap.h168 void Sort() { in Sort() function
169 Sort([](const T &, const T &) { return false; }); in Sort()
174 template <typename TCompare> void Sort(TCompare tc) { in Sort() function
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DDWARFExpressionList.h60 void Sort() { m_exprs.Sort(); } in Sort() function
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DSymtab.cpp384 name_to_index.Sort(); in InitNameIndexes()
386 selector_to_index.Sort(); in InitNameIndexes()
388 basename_to_index.Sort(); in InitNameIndexes()
390 method_to_index.Sort(); in InitNameIndexes()
955 m_file_addr_to_index.Sort(); in InitAddressIndexes()
966 section_ranges.Sort(); in InitAddressIndexes()
1015 m_file_addr_to_index.Sort(); in InitAddressIndexes()
1239 cstr_map.Sort(); in DecodeCStrMap()
/freebsd/contrib/llvm-project/llvm/tools/llvm-nm/
H A DOpts.td29 def numeric_sort : FF<"numeric-sort", "Sort symbols by address">;
35 def reverse_sort : FF<"reverse-sort", "Sort in reverse order">;
36 def size_sort : FF<"size-sort", "Sort symbols by size">;
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DIntervalTree.h627 static void sortIntervals(IntervalReferences &IntervalSet, Sorting Sort) { in sortIntervals() argument
629 [Sort](const DataType *RHS, const DataType *LHS) { in sortIntervals()
630 return Sort == Sorting::Ascending in sortIntervals()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_range.cpp38 Sort(events.data(), events.size(), in Intersect()
H A Dsanitizer_lzw.h41 Sort(dict_len1.data(), dict_len1.size()); in LzwEncode()
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_memory_profile.cpp50 Sort(allocations_.data(), allocations_.size(), in Print()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueEnumeration.cpp95 m_enumerations.Sort(); in SetEnumerations()
/freebsd/sys/contrib/device-tree/src/arm64/qcom/
H A Dsc7180-trogdor-ti-sn65dsi86.dtsi13 * Sort order matches the order in the parent files (parents before children).
H A Dsc7180-trogdor-parade-ps8640.dtsi32 * Sort order matches the order in the parent files (parents before children).
H A Dsc7280-herobrine-zombie.dtsi14 * Sort order matches the order in the parent files (parents before children).
H A Dsc7280-herobrine-evoker-r0.dts20 * Sort order matches the order in the parent files (parents before children).
H A Dsc7280-herobrine-evoker.dtsi14 * Sort order matches the order in the parent files (parents before children).
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_common_fuchsia.cpp109 __sanitizer::Sort(params.allocator_caches.data(), in LockStuffAndStopTheWorld()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DRangeMap.h217 void Sort() { in Sort() function
460 void Sort() { in Sort() function
749 void Sort() { in Sort() function
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSMTConv.h298 llvm::SMTSortRef Sort = Solver->getFloatSort(ToBitWidth); in fromCast() local
300 ? Solver->mkSBVtoFP(Exp, Sort) in fromCast()
301 : Solver->mkUBVtoFP(Exp, Sort); in fromCast()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.cpp96 m_objc_class_name_to_index.Sort(); in CalculateAbilities()

1234