Home
last modified time | relevance | path

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

123

/llvm-project/llvm/lib/Support/
H A DZ3Solver.cpp73 /// Wrapper for Z3 Sort
79 Z3_sort Sort;
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 in operator =()
78 Z3_sort Sort; global() member in __anon26d512570111::Z3Sort
305 newSortRef(const SMTSort & Sort) newSortRef() argument
762 SMTSortRef Sort = mkFloat() local
772 mkSymbol(const char * Name,SMTSortRef Sort) mkSymbol() argument
797 toAPFloat(const SMTSortRef & Sort,const SMTExprRef & AST,llvm::APFloat & Float,bool useSemantics) toAPFloat() argument
818 toAPSInt(const SMTSortRef & Sort,const SMTExprRef & AST,llvm::APSInt & Int,bool useSemantics) toAPSInt() argument
866 SMTSortRef Sort = getSort(Assign); getInterpretation() local
880 SMTSortRef Sort = getSort(Assign); getInterpretation() local
[all...]
/llvm-project/lldb/unittests/Utility/
H A DRangeMapTest.cpp23 V.Sort(); in TEST()
50 V.Sort(); in TEST()
59 V.Sort(); in TEST()
111 V1.Sort(); in TEST()
112 V2.Sort(); in TEST()
113 Expected.Sort(); in TEST()
138 Map.Sort(); in TEST()
155 Map.Sort(); in TEST()
173 Map.Sort(); in TEST()
199 MapC.Sort(); in TEST()
[all...]
/llvm-project/libcxx/benchmarks/algorithms/
H A Dranges_sort.bench.cpp
H A Dsort.bench.cpp
/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);
/llvm-project/llvm/lib/XRay/
H A DTrace.cpp381 Expected<Trace> llvm::xray::loadTraceFile(StringRef Filename, bool Sort) { in loadTraceFile() argument
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() argument
472 if (Sort) in loadTrace()
/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugAranges.cpp70 void DWARFDebugAranges::Sort(bool minimize) { in extract()
73 m_aranges.Sort(); in Dump()
91 void DWARFDebugAranges::Sort(bool minimize) { Sort() function in DWARFDebugAranges
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.cpp
/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
/llvm-project/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_common_test.cpp49 Sort(array, n); in TEST()
55 Sort(array, n); in TEST()
61 Sort(array, n); in TEST()
67 Sort(array, n); in TEST()
74 Sort(array, n); in TEST()
79 Sort(array, 2); in TEST()
/llvm-project/lldb/include/lldb/Expression/
H A DDWARFExpressionList.h60 void Sort() { m_exprs.Sort(); } in Sort() function
/llvm-project/llvm/docs/CommandGuide/
H A Dllvm-pdbutil.rst160 =name - Sort classes by name
161 =size - Sort classes by size
162 =padding - Sort classes by amount of padding
163 =padding-pct - Sort classes by percentage of space consumed by padding
164 =padding-imm - Sort classes by amount of immediate padding
165 =padding-pct-imm - Sort classes by percentage of space consumed by immediate padding
220 =name - Sort symbols by name
221 =size - Sort symbols by size
H A Dllvm-nm.rst221 Sort symbols by address.
250 Sort symbols in reverse order.
254 Sort symbols by size.
/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()
633 // Sort the indexes in place using std::stable_sort. in SortSymbolIndexesByValue()
955 m_file_addr_to_index.Sort(); in InitAddressIndexes()
966 section_ranges.Sort(); in InitAddressIndexes()
1014 // Sort again in case the range size changes the ordering in InitAddressIndexes()
1015 m_file_addr_to_index.Sort(); in InitAddressIndexes()
1239 cstr_map.Sort(); in DecodeCStrMap()
[all...]
/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">;
/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()
/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_range.cpp38 Sort(events.data(), events.size(), in Intersect()
/llvm-project/cmake/Modules/
H A DSortSubset.cmake1 # Sort a subset of a list according to the ordering in the full list.
/llvm-project/lldb/unittests/Core/
H A DUniqueCStringMapTest.cpp64 Map.Sort(std::less<int>()); in TEST()
/llvm-project/llvm/test/tools/llvm-debuginfo-analyzer/
H A Dcmdline.test111 HELP-ALL: =kind - Sort by element kind.
112 HELP-ALL: =line - Sort by element line number.
113 HELP-ALL: =name - Sort by element name.
114 HELP-ALL: =offset - Sort by element offset.
/llvm-project/compiler-rt/lib/asan/
H A Dasan_memory_profile.cpp50 Sort(allocations_.data(), allocations_.size(), in Print()
/llvm-project/lldb/source/Interpreter/
H A DOptionValueEnumeration.cpp95 m_enumerations.Sort(); in SetEnumerations()
/llvm-project/mlir/include/mlir/Dialect/OpenMP/
H A DOpenMPOps.td

123