Searched refs:is_sorted (Results 1 - 25 of 60) sorted by relevance

123

/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86InstrFMA3Info.cpp119 assert(llvm::is_sorted(Groups) && llvm::is_sorted(RoundGroups) &&
120 llvm::is_sorted(BroadcastGroups) && "FMA3 tables not sorted!");
H A DX86EvexToVex.cpp243 assert(llvm::is_sorted(X86EvexToVex128CompressTable) &&
245 assert(llvm::is_sorted(X86EvexToVex256CompressTable) &&
/netbsd-current/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCSubtargetInfo.cpp158 assert(llvm::is_sorted(ProcDesc) && "CPU table is not sorted");
159 assert(llvm::is_sorted(ProcFeatures) && "CPU features table is not sorted");
310 assert(llvm::is_sorted(ProcDesc) &&
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMipsCCState.cpp33 assert(llvm::is_sorted(LibCalls, Comp));
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
H A DTarget.cpp127 assert(llvm::is_sorted(
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Frontend/OpenMP/
H A DOMPContext.cpp101 assert(llvm::is_sorted(C0) && llvm::is_sorted(C1) &&
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DInlineSizeEstimatorAnalysis.cpp156 assert(llvm::is_sorted(ImportantInstructionSuccessions) &&
H A DLoopCacheAnalysis.cpp72 return (llvm::is_sorted(Loops,
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/
H A DAnalyzerOptions.h295 assert(llvm::is_sorted(AnalyzerConfigCmdFlags));
H A DCheckerRegistryData.h184 assert(llvm::is_sorted(Collection, CheckerOrPackageFullNameLT{}) &&
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/pstl/
H A Dparallel_backend_tbb.h870 _PSTL_ASSERT(std::is_sorted(_M_x_beg + _M_xs, _M_x_beg + _M_xe, _M_comp));
871 _PSTL_ASSERT(std::is_sorted(_M_x_beg + _M_ys, _M_x_beg + _M_ye, _M_comp));
875 _PSTL_ASSERT(std::is_sorted(_M_z_beg + _M_xs, _M_z_beg + _M_xe, _M_comp));
876 _PSTL_ASSERT(std::is_sorted(_M_z_beg + _M_ys, _M_z_beg + _M_ye, _M_comp));
938 _PSTL_ASSERT(is_partial() || std::is_sorted(_M_z_beg + _M_xs, _M_z_beg + _M_xe, _M_comp));
939 _PSTL_ASSERT(is_partial() || std::is_sorted(_M_z_beg + _M_ys, _M_z_beg + _M_ye, _M_comp));
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DCoalescingBitVector.h407 assert(llvm::is_sorted(Overlaps,
H A DSTLExtras.h1551 /// Wrapper function around std::is_sorted to check if elements in a range \p R
1553 template <typename R, typename Compare> bool is_sorted(R &&Range, Compare C) {
1554 return std::is_sorted(adl_begin(Range), adl_end(Range), C);
1557 /// Wrapper function around std::is_sorted to check if elements in a range \p R
1559 template <typename R> bool is_sorted(R &&Range) {
1560 return std::is_sorted(adl_begin(Range), adl_end(Range));
/netbsd-current/external/apache2/llvm/dist/libcxx/benchmarks/
H A Dalgorithms.bench.cpp107 assert(std::is_sorted(V.begin(), V.end()));
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DCalledValuePropagation.cpp74 assert(llvm::is_sorted(this->Functions, Compare()));
/netbsd-current/external/gpl3/binutils.old/dist/gold/
H A Dreloc.cc688 bool is_sorted = true; local
802 is_sorted = false;
818 is_sorted = false;
856 if (!is_sorted)
/netbsd-current/external/gpl3/binutils/dist/gold/
H A Dreloc.cc688 bool is_sorted = true; local
802 is_sorted = false;
818 is_sorted = false;
856 if (!is_sorted)
/netbsd-current/external/gpl3/binutils/dist/gprofng/src/
H A Dvec.h168 is_sorted () function in class:Vector
/netbsd-current/external/gpl3/gdb.old/dist/gold/
H A Dreloc.cc688 bool is_sorted = true; local
802 is_sorted = false;
818 is_sorted = false;
856 if (!is_sorted)
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dalgorithmfwd.h75 is_sorted (C++11)
361 is_sorted(_FIter, _FIter);
366 is_sorted(_FIter, _FIter, _Compare);
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dalgorithmfwd.h75 is_sorted (C++11)
361 is_sorted(_FIter, _FIter);
366 is_sorted(_FIter, _FIter, _Compare);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/IR/
H A DAttributes.cpp921 assert(llvm::is_sorted(SortedAttrs) && "Expected sorted attributes!");
1215 assert(llvm::is_sorted(Attrs,
1252 assert(llvm::is_sorted(Attrs,
1441 assert(llvm::is_sorted(ArgNos));
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Object/
H A DELF.cpp580 if (!llvm::is_sorted(LoadSegments, SortPred)) {
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
H A DMachOLayoutBuilder.cpp72 assert(llvm::is_sorted(O.SymTable.Symbols,
/netbsd-current/external/apache2/llvm/dist/llvm/tools/verify-uselistorder/
H A Dverify-uselistorder.cpp418 } while (std::is_sorted(V->use_begin(), V->use_end(), compareUses));

Completed in 206 milliseconds

123