Home
last modified time | relevance | path

Searched refs:Comp (Results 1 – 25 of 47) sorted by relevance

12

/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DParallel.h83 return Comp(*Start, *(End - 1)) in medianOf3()
84 ? (Comp(*Mid, *(End - 1)) ? (Comp(*Start, *Mid) ? Mid : Start) in medianOf3()
86 : (Comp(*Mid, *Start) ? (Comp(*(End - 1), *Mid) ? Mid : End - 1) in medianOf3()
95 llvm::sort(Start, End, Comp); in parallel_quick_sort()
100 auto Pivot = medianOf3(Start, End, Comp); in parallel_quick_sort()
104 return Comp(V, *(End - 1)); in parallel_quick_sort()
110 TG.spawn([=, &Comp, &TG] { in parallel_quick_sort()
118 const Comparator &Comp) { in parallel_sort() argument
120 parallel_quick_sort(Start, End, Comp, TG, in parallel_sort()
248 llvm::sort(Start, End, Comp);
[all …]
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/LineEditor/
H A DLineEditor.h84 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()
/netbsd/bin/sh/USD.doc/
H A DRv7man4 %J Comm. Assoc. Comp. Mach.
14 %R Comp. Sci. Tech. Rep. No. 17
21 %J Comm. Assoc. Comp. Mach.
109 %J Comm. Assoc. Comp. Mach.
213 %J Comp. Surveys
223 %J Comm. Assoc. Comp. Mach.
239 %R Comp. Sci. Tech. Rep. No. 65
257 %R Comp. Sci. Tech. Rep. No. 39
268 %R Comp. Sci. Tech. Rep. No. 32
376 %J J. Assoc. Comp. Mach.
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp164 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()
284 ICmpInst* Comp = new ICmpInst(ICmpInst::ICMP_SLT, in SwitchConvert() local
295 NewNode->getInstList().push_back(Comp); in SwitchConvert()
297 BranchInst::Create(LBranch, RBranch, Comp, NewNode); in SwitchConvert()
/netbsd/external/apache2/llvm/dist/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowWorklist.h22 template <typename Comp, unsigned QueueSize> class DataflowWorklistBase {
26 SmallVector<const CFGBlock *, QueueSize>, Comp>
30 DataflowWorklistBase(const CFG &Cfg, PostOrderCFGView *POV, Comp C) in DataflowWorklistBase()
/netbsd/external/apache2/llvm/dist/clang/tools/libclang/
H A DBuildSystem.cpp51 StringRef Comp = *PI; in clang_VirtualFileOverlay_addFileMapping() local
52 if (Comp == "." || Comp == "..") in clang_VirtualFileOverlay_addFileMapping()
/netbsd/external/apache2/llvm/dist/clang/lib/Lex/
H A DPPConditionalDirectiveRecord.cpp29 CondDirectiveLocs, Range.getBegin(), CondDirectiveLoc::Comp(SourceMgr)); in rangeIntersectsConditionalDirective()
38 Range.getEnd(), CondDirectiveLoc::Comp(SourceMgr)); in rangeIntersectsConditionalDirective()
58 CondDirectiveLocs, Loc, CondDirectiveLoc::Comp(SourceMgr)); in findConditionalDirectiveRegionLoc()
/netbsd/external/gpl3/gdb/dist/gdbsupport/
H A Dgdb_binary_search.h41 template<typename It, typename T, typename Comp>
42 It binary_search (It first, It last, T el, Comp comp) in binary_search()
/netbsd/external/gpl3/gdb.old/dist/gdbsupport/
H A Dgdb_binary_search.h41 template<typename It, typename T, typename Comp>
42 It binary_search (It first, It last, T el, Comp comp) in binary_search()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMipsCCState.cpp32 auto Comp = [](const char *S1, const char *S2) { return strcmp(S1, S2) < 0; }; in isF128SoftLibCall() local
33 assert(llvm::is_sorted(LibCalls, Comp)); in isF128SoftLibCall()
35 Comp); in isF128SoftLibCall()
/netbsd/external/apache2/llvm/dist/clang/lib/Tooling/DumpTool/
H A DClangSrcLocDump.cpp122 std::unique_ptr<clang::driver::Compilation> Comp( in main() local
124 if (!Comp) in main()
127 const auto &Jobs = Comp->getJobs(); in main()
/netbsd/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DPPConditionalDirectiveRecord.h41 class Comp {
44 explicit Comp(SourceManager &SM) : SM(SM) {} in Comp() function
/netbsd/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dmeta.d1411 enum Comp(int N1, int N2) = N1 < N2;
1412 static assert(AliasSeq!(2, 3, 7, 23) == staticSort!(Comp, Nums));
1419 enum Comp(T1, T2) = __traits(isUnsigned, T2) - __traits(isUnsigned, T1);
1420 static assert(is(AliasSeq!(uint, ubyte, ulong, short, long) == staticSort!(Comp,
1486 enum Comp(int N1, int N2) = N1 < N2;
1487 static assert( staticIsSorted!(Comp, 2, 2));
1488 static assert( staticIsSorted!(Comp, 2, 3, 7, 23));
1489 static assert(!staticIsSorted!(Comp, 7, 2, 3, 23));
1495 enum Comp(T1, T2) = __traits(isUnsigned, T2) - __traits(isUnsigned, T1);
1496 static assert( staticIsSorted!(Comp, uint, ubyte, ulong, short, long));
[all …]
/netbsd/external/gpl3/gcc/dist/libphobos/src/std/
H A Dmeta.d1296 enum Comp(int N1, int N2) = N1 < N2;
1297 static assert(AliasSeq!(2, 3, 7, 23) == staticSort!(Comp, Nums));
1304 enum Comp(T1, T2) = __traits(isUnsigned, T2) - __traits(isUnsigned, T1);
1305 static assert(is(AliasSeq!(uint, ubyte, ulong, short, long) == staticSort!(Comp,
1361 enum Comp(int N1, int N2) = N1 < N2;
1362 static assert( staticIsSorted!(Comp, 2, 2));
1363 static assert( staticIsSorted!(Comp, 2, 3, 7, 23));
1364 static assert(!staticIsSorted!(Comp, 7, 2, 3, 23));
1370 enum Comp(T1, T2) = __traits(isUnsigned, T2) - __traits(isUnsigned, T1);
1371 static assert( staticIsSorted!(Comp, uint, ubyte, ulong, short, long));
[all …]
/netbsd/tests/ipf/input/
H A Dni13124 …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 Dni15128 …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 Dni16128 …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 Dni14128 …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
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DPrettyTypeDumper.cpp94 CompareFunc Comp = getComparisonFunc(opts::pretty::ClassOrder); in filterAndSortClassDefs() local
133 if (Comp) in filterAndSortClassDefs()
134 llvm::sort(Filtered, Comp); in filterAndSortClassDefs()
/netbsd/external/apache2/llvm/dist/clang/lib/Sema/
H A DParsedAttr.cpp224 Compare Comp) { in checkAttributeNumArgsImpl() argument
225 if (Comp(getNumAttributeArgs(AL), Num)) { in checkAttributeNumArgsImpl()
/netbsd/external/apache2/llvm/dist/llvm/lib/Support/
H A DTriple.cpp887 StringRef Comp = Components[Idx]; in normalize() local
891 Arch = parseArch(Comp); in normalize()
895 Vendor = parseVendor(Comp); in normalize()
899 OS = parseOS(Comp); in normalize()
900 IsCygwin = Comp.startswith("cygwin"); in normalize()
901 IsMinGW32 = Comp.startswith("mingw"); in normalize()
905 Environment = parseEnvironment(Comp); in normalize()
908 ObjectFormat = parseFormat(Comp); in normalize()
963 assert(Pos < Components.size() && Components[Pos] == Comp && in normalize()
H A DVirtualFileSystem.cpp158 for (StringRef Comp : llvm::make_range(path::begin(Path), path::end(Path))) in pathHasTraversal() local
159 if (isTraversalComponent(Comp)) in pathHasTraversal()
2105 for (auto &Comp : Path) in getVFSEntries() local
2106 llvm::sys::path::append(VPath, Comp); in getVFSEntries()
2116 for (auto &Comp : Path) in getVFSEntries() local
2117 llvm::sys::path::append(VPath, Comp); in getVFSEntries()
/netbsd/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp314 for (auto Comp : Comps) { in computeSubRegs() local
315 SubRegMap::const_iterator SRI = Map.find(Comp.first); in computeSubRegs()
320 if (SubRegs.count(Comp.second) || !Orphans.erase(SRI->second)) in computeSubRegs()
323 SubRegs.insert(std::make_pair(Comp.second, SRI->second)); in computeSubRegs()
324 Indices.push_back(Comp.second); in computeSubRegs()
1285 CodeGenSubRegIndex *Comp = A->compose(B); in getCompositeSubRegIndex() local
1286 if (Comp) in getCompositeSubRegIndex()
1287 return Comp; in getCompositeSubRegIndex()
1291 Comp = createSubRegIndex(Name, A->getNamespace()); in getCompositeSubRegIndex()
1292 A->addComposite(B, Comp); in getCompositeSubRegIndex()
[all …]
/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DExpr.cpp4049 StringRef Comp = Accessor->getName(); in containsDuplicateElements() local
4052 if (Comp == "hi" || Comp == "lo" || Comp == "even" || Comp == "odd") in containsDuplicateElements()
4056 if (Comp[0] == 's' || Comp[0] == 'S') in containsDuplicateElements()
4057 Comp = Comp.substr(1); in containsDuplicateElements()
4060 if (Comp.substr(i + 1).find(Comp[i]) != StringRef::npos) in containsDuplicateElements()
4071 if (Comp[0] == 's' || Comp[0] == 'S') { in getEncodedElementAccess()
4072 Comp = Comp.substr(1); in getEncodedElementAccess()
4076 bool isHi = Comp == "hi"; in getEncodedElementAccess()
4077 bool isLo = Comp == "lo"; in getEncodedElementAccess()
4078 bool isEven = Comp == "even"; in getEncodedElementAccess()
[all …]
/netbsd/usr.bin/spell/spell/
H A Dspecial.math78 Comp

12