| /freebsd-src/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Parallel.h | 116 const Comparator &Comp) { in medianOf3() 118 return Comp(*Start, *(End - 1)) in medianOf3() argument 119 ? (Comp(*Mid, *(End - 1)) ? (Comp(*Start, *Mid) ? Mid : Start) in medianOf3() 121 : (Comp(*Mid, *Start) ? (Comp(*(End - 1), *Mid) ? Mid : End - 1) in medianOf3() 127 const Comparator &Comp, TaskGroup &TG, size_t Depth) { 130 llvm::sort(Start, End, Comp); in parallel_quick_sort() 135 auto Pivot = medianOf3(Start, End, Comp); in parallel_quick_sort() 138 Pivot = std::partition(Start, End - 1, [&Comp, En in parallel_quick_sort() 129 parallel_quick_sort(RandomAccessIterator Start,RandomAccessIterator End,const Comparator & Comp,TaskGroup & TG,size_t Depth) parallel_quick_sort() argument 155 parallel_sort(RandomAccessIterator Start,RandomAccessIterator End,const Comparator & Comp) parallel_sort() argument [all...] |
| /freebsd-src/contrib/llvm-project/libcxx/include/ |
| H A D | algorithm | 49 indirect_strict_weak_order<projected<I, Proj>> Comp = ranges::less> // since C++20 50 constexpr I min_element(I first, S last, Comp comp = {}, Proj proj = {}); 53 indirect_strict_weak_order<projected<iterator_t<R>, Proj>> Comp = ranges::less> // since C++20 54 constexpr borrowed_iterator_t<R> min_element(R&& r, Comp comp = {}, Proj proj = {}); 57 indirect_strict_weak_order<projected<I, Proj>> Comp = ranges::less> 58 constexpr I ranges::max_element(I first, S last, Comp comp = {}, Proj proj = {}); // since C++20 61 indirect_strict_weak_order<projected<iterator_t<R>, Proj>> Comp = ranges::less> 62 constexpr borrowed_iterator_t<R> ranges::max_element(R&& r, Comp comp = {}, Proj proj = {}); // since C++20 131 indirect_strict_weak_order<projected<const T*, Proj>> Comp = ranges::less> 132 constexpr const T& min(const T& a, const T& b, Comp com [all...] |
| /freebsd-src/share/doc/psd/15.yacc/ |
| H A D | ref.bib | 12 %J Comp. Surveys 22 %J Comm. Assoc. Comp. Mach. 36 %R Comp. Sci. Tech. Rep. No. 65 51 %R Comp. Sci. Tech. Rep. No. 17 58 %J Comm. Assoc. Comp. Mach. 65 %R Comp. Sci. Tech. Rep. No. 39
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/LineEditor/ |
| H A D | LineEditor.h | 84 template <typename T> void setCompleter(T Comp) { in setCompleter() argument 85 Completer.reset(new CompleterModel<T>(Comp)); in setCompleter() 92 template <typename T> void setListCompleter(T Comp) { in setListCompleter() argument 93 Completer.reset(new ListCompleterModel<T>(Comp)); in setListCompleter()
|
| /freebsd-src/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/ |
| H A D | DataflowWorklist.h | 23 template <typename Comp, unsigned QueueSize> class DataflowWorklistBase { 26 SmallVector<const CFGBlock *, QueueSize>, Comp> 30 DataflowWorklistBase(const CFG &Cfg, Comp C) in DataflowWorklistBase()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | LowerSwitch.cpp | 164 ICmpInst *Comp = nullptr; in NewLeafBlock() local 167 Comp = in NewLeafBlock() 173 Comp = new ICmpInst(NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High, in NewLeafBlock() 177 Comp = new ICmpInst(NewLeaf, ICmpInst::ICMP_SGE, Val, Leaf.Low, in NewLeafBlock() 181 Comp = new ICmpInst(NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High, in NewLeafBlock() 189 Comp = new ICmpInst(NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound, in NewLeafBlock() 196 BranchInst::Create(Succ, Default, Comp, NewLeaf); in NewLeafBlock() 290 ICmpInst *Comp = new ICmpInst(ICmpInst::ICMP_SLT, Val, Pivot.Low, "Pivot"); in SwitchConvert() local 300 Comp->insertInto(NewNode, NewNode->end()); in SwitchConvert() 302 BranchInst::Create(LBranch, RBranch, Comp, NewNod in SwitchConvert() [all...] |
| /freebsd-src/share/doc/psd/01.cacm/ |
| H A D | ref.bib | 5 %J Comm. Assoc. Comp. Mach. 13 %R Comp. Sci. Tech. Rep. No. 17 20 %J Comm. Assoc. Comp. Mach. 107 %J Comm. Assoc. Comp. Mach.
|
| /freebsd-src/contrib/llvm-project/libcxx/src/ |
| H A D | algorithm.cpp | 14 template <class Comp, class RandomAccessIterator> 15 void __sort(RandomAccessIterator first, RandomAccessIterator last, Comp comp) { in __sort()
|
| /freebsd-src/contrib/llvm-project/clang/lib/Lex/ |
| H A D | PPConditionalDirectiveRecord.cpp | 29 CondDirectiveLocs, Range.getBegin(), CondDirectiveLoc::Comp(SourceMgr)); in rangeIntersectsConditionalDirective() 38 Range.getEnd(), CondDirectiveLoc::Comp(SourceMgr)); in rangeIntersectsConditionalDirective() 58 CondDirectiveLocs, Loc, CondDirectiveLoc::Comp(SourceMgr)); in findConditionalDirectiveRegionLoc()
|
| /freebsd-src/contrib/llvm-project/clang/lib/Tooling/DumpTool/ |
| H A D | ClangSrcLocDump.cpp | |
| /freebsd-src/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MipsCCState.cpp | 31 auto Comp = [](const char *S1, const char *S2) { return strcmp(S1, S2) < 0; }; in isF128SoftLibCall() local 32 assert(llvm::is_sorted(LibCalls, Comp)); in isF128SoftLibCall() 34 Comp); in isF128SoftLibCall()
|
| /freebsd-src/contrib/llvm-project/clang/include/clang/Lex/ |
| H A D | PPConditionalDirectiveRecord.h | 41 class Comp { 44 explicit Comp(SourceManager &SM) : SM(SM) {} in Comp() function
|
| /freebsd-src/contrib/netbsd-tests/ipf/input/ |
| H A D | ni16 | 128 …2.168.113.1: gre [KSv1] ID:4000 S:3 ppp: IPCP 18: Conf-Req(1), IP-Addr=192.168.0.1, IP-Comp VJ-Comp 205 …2.168.113.1 > 192.168.113.3: gre [KSAv1] ID:0000 S:7 A:8 ppp: IPCP 12: Conf-Rej(1), IP-Comp VJ-Comp
|
| H A D | ni14 | 128 …2.168.113.1: gre [KSv1] ID:4000 S:3 ppp: IPCP 18: Conf-Req(1), IP-Addr=192.168.0.1, IP-Comp VJ-Comp 205 …2.168.113.1 > 192.168.113.3: gre [KSAv1] ID:0000 S:7 A:8 ppp: IPCP 12: Conf-Rej(1), IP-Comp VJ-Comp
|
| H A D | ni13 | 124 …2.168.113.1: gre [KSv1] ID:4000 S:3 ppp: IPCP 18: Conf-Req(1), IP-Addr=192.168.0.1, IP-Comp VJ-Comp 201 …2.168.113.1 > 192.168.113.3: gre [KSAv1] ID:0000 S:7 A:8 ppp: IPCP 12: Conf-Rej(1), IP-Comp VJ-Comp
|
| H A D | ni15 | 128 …2.168.113.1: gre [KSv1] ID:4000 S:3 ppp: IPCP 18: Conf-Req(1), IP-Addr=192.168.0.1, IP-Comp VJ-Comp 205 …2.168.113.1 > 192.168.113.3: gre [KSAv1] ID:0000 S:7 A:8 ppp: IPCP 12: Conf-Rej(1), IP-Comp VJ-Comp
|
| /freebsd-src/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | PrettyTypeDumper.cpp | 96 CompareFunc Comp = getComparisonFunc(opts::pretty::ClassOrder); in filterAndSortClassDefs() local 135 if (Comp) in filterAndSortClassDefs() 136 llvm::sort(Filtered, Comp); in filterAndSortClassDefs()
|
| /freebsd-src/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | ObjDumper.h | 193 virtual void printSymbols(std::optional<SymbolComparator> Comp) {} in printDynamicSymbols() argument 195 virtual void printDynamicSymbols(std::optional<SymbolComparator> Comp) {} in printSectionMapping() 191 printSymbols(std::optional<SymbolComparator> Comp) printSymbols() argument
|
| /freebsd-src/contrib/llvm-project/clang/lib/Sema/ |
| H A D | ParsedAttr.cpp | 290 Compare Comp) { in checkAttributeNumArgsImpl() 291 if (Comp(getNumAttributeArgs(AL), Num)) { 284 checkAttributeNumArgsImpl(Sema & S,const ParsedAttr & AL,unsigned Num,unsigned Diag,Compare Comp) checkAttributeNumArgsImpl() argument
|
| /freebsd-src/contrib/llvm-project/clang/lib/Format/ |
| H A D | UsingDeclarationsSorter.cpp | 154 auto Comp = [SortUsingDeclarations](const UsingDeclaration &Lhs, in endUsingDeclarationBlock() local 158 llvm::stable_sort(SortedUsingDeclarations, Comp); in endUsingDeclarationBlock()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/LineEditor/ |
| H A D | LineEditor.cpp | 71 for (const Completion &Comp : Comps) in complete() local 72 Action.Completions.push_back(Comp.DisplayText); in complete()
|
| /freebsd-src/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | CodeGenRegisters.cpp | |
| /freebsd-src/contrib/llvm-project/llvm/lib/TargetParser/ |
| H A D | Triple.cpp | 1152 StringRef Comp = Components[Idx]; in normalize() 1156 Arch = parseArch(Comp); in normalize() 1160 Vendor = parseVendor(Comp); in normalize() 1164 OS = parseOS(Comp); in normalize() 1165 IsCygwin = Comp.starts_with("cygwin"); in normalize() 1166 IsMinGW32 = Comp.starts_with("mingw"); in normalize() 1170 Environment = parseEnvironment(Comp); in normalize() 1173 ObjectFormat = parseFormat(Comp); in normalize() 1228 assert(Pos < Components.size() && Components[Pos] == Comp && in getOSVersion() 1048 StringRef Comp = Components[Idx]; normalize() local
|
| /freebsd-src/contrib/llvm-project/clang/lib/AST/ |
| H A D | Expr.cpp | 4315 StringRef Comp = Accessor->getName(); in GenericSelectionExpr() 4318 if (Comp == "hi" || Comp == "lo" || Comp == "even" || Comp == "odd") in GenericSelectionExpr() 4322 if (Comp[0] == 's' || Comp[0] == 'S') in GenericSelectionExpr() 4323 Comp = Comp.substr(1); in GenericSelectionExpr() 4325 for (unsigned i = 0, e = Comp in GenericSelectionExpr() 4233 StringRef Comp = Accessor->getName(); containsDuplicateElements() local 4253 StringRef Comp = Accessor->getName(); getEncodedElementAccess() local [all...] |
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | MachineFunction.h | 958 template <typename Comp> 959 void sort(Comp comp) {
|