Searched refs:Pairs (Results 1 - 12 of 12) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DLookupAndRecordAddrs.cpp19 std::vector<std::pair<SymbolStringPtr, ExecutorAddr *>> Pairs,
23 for (auto &KV : Pairs)
28 [Pairs = std::move(Pairs),
32 for (auto &KV : Pairs) {
44 std::vector<std::pair<SymbolStringPtr, ExecutorAddr *>> Pairs,
50 ES, K, SearchOrder, std::move(Pairs), LookupFlags);
56 std::vector<std::pair<SymbolStringPtr, ExecutorAddr *>> Pairs,
60 for (auto &KV : Pairs)
71 if (Result->front().size() != Pairs
16 lookupAndRecordAddrs( unique_function<void(Error)> OnRecorded, ExecutionSession &ES, LookupKind K, const JITDylibSearchOrder &SearchOrder, std::vector<std::pair<SymbolStringPtr, ExecutorAddr *>> Pairs, SymbolLookupFlags LookupFlags) argument
42 lookupAndRecordAddrs( ExecutionSession &ES, LookupKind K, const JITDylibSearchOrder &SearchOrder, std::vector<std::pair<SymbolStringPtr, ExecutorAddr *>> Pairs, SymbolLookupFlags LookupFlags) argument
54 lookupAndRecordAddrs( ExecutorProcessControl &EPC, tpctypes::DylibHandle H, std::vector<std::pair<SymbolStringPtr, ExecutorAddr *>> Pairs, SymbolLookupFlags LookupFlags) argument
[all...]
H A DOrcV2CBindings.cpp164 toSymbolDependenceMap(LLVMOrcCDependenceMapPairs Pairs, size_t NumPairs) { argument
167 JITDylib *JD = unwrap(Pairs[I].JD);
170 for (size_t J = 0; J != Pairs[I].Names.Length; ++J) {
171 auto Sym = Pairs[I].Names.Symbols[J];
491 void LLVMOrcDisposeCSymbolFlagsMap(LLVMOrcCSymbolFlagsMapPairs Pairs) { argument
492 free(Pairs);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DLookupAndRecordAddrs.h47 std::vector<std::pair<SymbolStringPtr, ExecutorAddr *>> Pairs,
55 std::vector<std::pair<SymbolStringPtr, ExecutorAddr *>> Pairs,
64 std::vector<std::pair<SymbolStringPtr, ExecutorAddr *>> Pairs,
H A DExecutorProcessControl.h268 ArrayRef<std::pair<ExecutorAddr &, StringRef>> Pairs) const {
269 for (const auto &KV : Pairs) {
/freebsd-current/contrib/llvm-project/llvm/utils/TableGen/
H A DInfoByHwMode.cpp89 std::vector<const PairType*> Pairs; local
91 Pairs.push_back(&P);
92 llvm::sort(Pairs, deref<std::less<PairType>>());
96 for (const PairType *P : Pairs)
178 std::vector<const PairType*> Pairs; local
180 Pairs.push_back(&P);
181 llvm::sort(Pairs, deref<std::less<PairType>>());
185 for (const PairType *P : Pairs)
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DAutomaton.h89 /// Pairs defines a sequence of possible NFA transitions for a single DFA
91 void transition(ArrayRef<NfaStatePair> Pairs) { argument
99 auto PI = lower_bound(Pairs, NfaStatePair{Head->State, 0ULL});
100 auto PE = upper_bound(Pairs, NfaStatePair{Head->State, INT64_MAX});
134 ArrayRef<NfaStatePair> Pairs(&TransitionInfo[TransitionInfoIdx],
136 transition(Pairs);
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCloneChecker.cpp128 std::vector<VariablePattern::SuspiciousClonePair> Pairs; local
147 Pairs.push_back(ClonePair);
159 for (VariablePattern::SuspiciousClonePair &Pair : Pairs) {
/freebsd-current/sys/contrib/dev/acpica/common/
H A Dacfileio.c734 UINT32 Pairs = 0; local
754 Pairs++;
761 if (!Pairs)
775 AcpiOsPrintf ("All LFs (%u) were changed to CR/LF pairs\n", Pairs);
/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp887 void DependenceInfo::unifySubscriptType(ArrayRef<Subscript *> Pairs) { argument
894 for (Subscript *Pair : Pairs) {
919 for (Subscript *Pair : Pairs) {
3634 unsigned Pairs = 1; local
3635 SmallVector<Subscript, 2> Pair(Pairs);
3656 Pairs = Pair.size();
3660 for (unsigned P = 0; P < Pairs; ++P) {
3663 Pair[P].Group.resize(Pairs);
3679 SmallBitVector Separable(Pairs);
3680 SmallBitVector Coupled(Pairs);
4045 unsigned Pairs = 1; local
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm-c/
H A DOrc.h755 void LLVMOrcDisposeCSymbolFlagsMap(LLVMOrcCSymbolFlagsMapPairs Pairs);
837 LLVMOrcCSymbolFlagsMapPairs Pairs, size_t NumPairs);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h551 void unifySubscriptType(ArrayRef<Subscript *> Pairs);
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp2563 SmallVector<SmallVector<std::pair<unsigned, int>, 2>> Pairs;
2567 if (Pairs.empty() || Pairs.back().size() == 2)
2568 Pairs.emplace_back();
2570 Pairs.back().emplace_back(I, 0);
2574 Pairs.back().emplace_back(I, 1);
2577 if (!Pairs.empty() && Pairs.front().size() > 1) {
2584 Pairs, [SrcRegIdx](ArrayRef<std::pair<unsigned, int>> Idxs) {
2588 if (It == Pairs
[all...]

Completed in 205 milliseconds