Home
last modified time | relevance | path

Searched refs:Lookup (Results 1 – 25 of 82) sorted by relevance

1234

/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/MCTargetDesc/
H A DSPIRVBaseInfo.cpp59 const SPIRV::SymbolicOperand *Lookup = in getSymbolicOperandMnemonic() local
62 if (Lookup) in getSymbolicOperandMnemonic()
63 return Lookup->Mnemonic.str(); in getSymbolicOperandMnemonic()
94 const SPIRV::SymbolicOperand *Lookup = in getSymbolicOperandMinVersion() local
97 if (Lookup) in getSymbolicOperandMinVersion()
98 return VersionTuple(Lookup->MinVersion / 10, Lookup->MinVersion % 10); in getSymbolicOperandMinVersion()
106 const SPIRV::SymbolicOperand *Lookup = in getSymbolicOperandMaxVersion() local
109 if (Lookup) in getSymbolicOperandMaxVersion()
110 return VersionTuple(Lookup->MaxVersion / 10, Lookup->MaxVersion % 10); in getSymbolicOperandMaxVersion()
168 const SPIRV::SymbolicOperand *Lookup = in getLinkStringForBuiltIn() local
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DEPCGenericDylibManager.h36 ExecutorAddr Lookup; member
54 lookup(tpctypes::DylibHandle H, const SymbolLookupSet &Lookup) { in lookup() argument
57 lookupAsync(H, Lookup, [&RP](auto R) { RP.set_value(std::move(R)); }); in lookup()
63 lookup(tpctypes::DylibHandle H, const RemoteSymbolLookupSet &Lookup) { in lookup() argument
66 lookupAsync(H, Lookup, [&RP](auto R) { RP.set_value(std::move(R)); }); in lookup()
74 void lookupAsync(tpctypes::DylibHandle H, const SymbolLookupSet &Lookup,
78 void lookupAsync(tpctypes::DylibHandle H, const RemoteSymbolLookupSet &Lookup,
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DPointerSumType.h90 typename HelperT::template Lookup<HelperT::MinTag>::PointerT MinTagPointer;
100 void set(typename HelperT::template Lookup<N>::PointerT Pointer) { in set()
101 void *V = HelperT::template Lookup<N>::TraitsT::getAsVoidPointer(Pointer); in set()
110 create(typename HelperT::template Lookup<N>::PointerT Pointer) { in create()
125 template <TagT N> typename HelperT::template Lookup<N>::PointerT get() const { in get()
127 return HelperT::template Lookup<N>::TraitsT::getFromVoidPointer(P); in get()
131 typename HelperT::template Lookup<N>::PointerT cast() const { in cast()
133 return HelperT::template Lookup<N>::TraitsT::getFromVoidPointer( in cast()
140 typename HelperT::template Lookup<HelperT::MinTag>::PointerT const *
148 typename HelperT::template Lookup<HelperT::MinTag>::PointerT *
[all …]
H A DDenseMap.h599 ValueT &&Value, LookupKeyT &Lookup) { in InsertIntoBucketWithLookup() argument
600 TheBucket = InsertIntoBucketImpl(Key, Lookup, TheBucket); in InsertIntoBucketWithLookup()
608 BucketT *InsertIntoBucketImpl(const KeyT &Key, const LookupKeyT &Lookup, in InsertIntoBucketImpl() argument
625 LookupBucketFor(Lookup, TheBucket); in InsertIntoBucketImpl()
630 LookupBucketFor(Lookup, TheBucket); in InsertIntoBucketImpl()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DComparisonCategories.cpp82 DeclContextLookupResult Lookup = Record->getCanonicalDecl()->lookup( in lookupValueInfo() local
84 if (Lookup.empty() || !isa<VarDecl>(Lookup.front())) in lookupValueInfo()
86 Objects.emplace_back(ValueKind, cast<VarDecl>(Lookup.front())); in lookupValueInfo()
93 DeclContextLookupResult Lookup = in lookupStdNamespace() local
95 if (!Lookup.empty()) in lookupStdNamespace()
96 StdNS = dyn_cast<NamespaceDecl>(Lookup.front()); in lookupStdNamespace()
105 DeclContextLookupResult Lookup = StdNS->lookup(&Ctx.Idents.get(Name)); in lookupCXXRecordDecl() local
106 if (!Lookup.empty()) in lookupCXXRecordDecl()
107 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Lookup.front())) in lookupCXXRecordDecl()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DEPCGenericDylibManager.cpp69 {SAs.Lookup, rt::SimpleExecutorDylibManagerLookupWrapperName}})) in CreateWithDefaultBootstrapSymbols()
85 const SymbolLookupSet &Lookup, in lookupAsync() argument
88 SAs.Lookup, in lookupAsync()
99 SAs.Instance, H, Lookup); in lookupAsync()
103 const RemoteSymbolLookupSet &Lookup, in lookupAsync() argument
106 SAs.Lookup, in lookupAsync()
117 SAs.Instance, H, Lookup); in lookupAsync()
/freebsd/tests/sys/fs/fusefs/
H A Dlookup.cc44 class Lookup: public FuseTest {}; class
46 class Lookup_7_8: public Lookup {
50 Lookup::SetUp(); in SetUp()
54 class LookupExportable: public Lookup {
58 Lookup::SetUp(); in SetUp()
66 TEST_F(Lookup, attr_cache) in TEST_F() argument
130 TEST_F(Lookup, attr_cache_timeout) in TEST_F() argument
155 TEST_F(Lookup, dot) in TEST_F() argument
177 TEST_F(Lookup, dotdot) in TEST_F() argument
203 TEST_F(Lookup, dotdot_entry_cache_timeout) in TEST_F() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DAssumeBundleQueries.cpp88 auto Lookup = Result.find(Key); in fillMapFromAssume() local
89 if (Lookup == Result.end() || !Lookup->second.count(&Assume)) { in fillMapFromAssume()
93 Lookup->second[&Assume].Min = std::min(Val, Lookup->second[&Assume].Min); in fillMapFromAssume()
94 Lookup->second[&Assume].Max = std::max(Val, Lookup->second[&Assume].Max); in fillMapFromAssume()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DAssumeBundleBuilder.cpp181 auto Lookup = AssumedKnowledgeMap.find(Key); in addKnowledge() local
182 if (Lookup == AssumedKnowledgeMap.end()) { in addKnowledge()
186 assert(((Lookup->second == 0 && RK.ArgValue == 0) || in addKnowledge()
187 (Lookup->second != 0 && RK.ArgValue != 0)) && in addKnowledge()
192 Lookup->second = std::max(Lookup->second, RK.ArgValue); in addKnowledge()
444 auto &Lookup = Knowledge[{RK.WasOn, RK.AttrKind}]; in dropRedundantKnowledge() local
445 for (MapValue &Elem : Lookup) { in dropRedundantKnowledge()
459 Lookup.push_back({Assume, RK.ArgValue, &BOI}); in dropRedundantKnowledge()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTrace.cpp53 static std::optional<V> Lookup(DenseMap<K, V> &map, K k) { in Lookup() function
70 static std::optional<V> Lookup(DenseMap<K1, DenseMap<K2, V>> &map, K1 k1, in Lookup() function
75 return Lookup(it->second, k2); in Lookup()
190 return Lookup(storage.live_thread_data, tid, ConstString(kind)); in GetLiveThreadBinaryDataSize()
196 return Lookup(storage.live_cpu_data_sizes, cpu_id, ConstString(kind)); in GetLiveCpuBinaryDataSize()
202 return Lookup(storage.live_process_data, ConstString(kind)); in GetLiveProcessBinaryDataSize()
378 Lookup(storage.postmortem_thread_data, tid, ConstString(kind))) in GetPostMortemThreadDataFile()
391 Lookup(storage.postmortem_cpu_data, cpu_id, ConstString(kind))) in GetPostMortemCpuDataFile()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DThreadSafeDenseMap.h35 _ValueType Lookup(_KeyType k) { in Lookup() function
40 bool Lookup(_KeyType k, _ValueType &v) { in Lookup() function
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DDynamicLibrary.cpp96 void *Lookup(const char *Symbol, DynamicLibrary::SearchOrdering Order) { in Lookup() function in DynamicLibrary::HandleSet
230 if (void *Ptr = G.OpenedHandles.Lookup(SymbolName, SearchOrder)) in SearchForAddressOfSymbol()
232 if (void *Ptr = G.OpenedTemporaryHandles.Lookup(SymbolName, SearchOrder)) in SearchForAddressOfSymbol()
/freebsd/contrib/tcsh/
H A Ded.xmap.c119 static int Lookup (struct Strbuf *, const CStr *,
450 if (Lookup(&buf, &cs, Xmap) <= -1) in PrintXkey()
461 Lookup(struct Strbuf *buf, const CStr *str, const XmapNode *ptr) in Lookup() function
481 return (Lookup(buf, &tstr, ptr->next)); in Lookup()
498 return (Lookup(buf, str, ptr->sibling)); in Lookup()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DXCore.cpp461 int Lookup = 0; in appendQualifier() local
463 Lookup += 1<<0; in appendQualifier()
465 Lookup += 1<<1; in appendQualifier()
467 Lookup += 1<<2; in appendQualifier()
468 Enc += Table[Lookup]; in appendQualifier()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DDynamicType.cpp79 const auto *Lookup = State->get<DynamicCastMap>().lookup(MR); in getDynamicCastInfo() local
80 if (!Lookup) in getDynamicCastInfo()
86 for (const DynamicCastInfo &Cast : *Lookup) in getDynamicCastInfo()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DConstantsContext.h625 LookupKeyHashed Lookup(MapInfo::getHashValue(Key), Key);
629 auto I = Map.find_as(Lookup);
631 Result = create(Ty, V, Lookup);
653 LookupKeyHashed Lookup(MapInfo::getHashValue(Key), Key);
655 auto ItMap = Map.find_as(Lookup);
671 Map.insert_as(CP, Lookup);
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_dense_map.h407 ValueT &&Value, LookupKeyT &Lookup) { in InsertIntoBucketWithLookup() argument
408 TheBucket = InsertIntoBucketImpl(Key, Lookup, TheBucket); in InsertIntoBucketWithLookup()
416 BucketT *InsertIntoBucketImpl(const KeyT &Key, const LookupKeyT &Lookup, in InsertIntoBucketImpl() argument
431 LookupBucketFor(Lookup, TheBucket); in InsertIntoBucketImpl()
436 LookupBucketFor(Lookup, TheBucket); in InsertIntoBucketImpl()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCastValueChecker.cpp468 const auto *Lookup = CDM.lookup(Call); in evalCall() local
469 if (!Lookup) in evalCall()
472 const CastCheck &Check = Lookup->first; in evalCall()
473 CallKind Kind = Lookup->second; in evalCall()
/freebsd/contrib/bearssl/T0/
H A DTPointerXT.cs53 Target = ctx.Lookup(Name); in Resolve()
H A DWordData.cs63 WordData wd = TC.Lookup(baseBlobName) as WordData; in Resolve()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DThreadSafeDenseSet.h38 bool Lookup(_ElementType e) { in Lookup() function
/freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp210 Lookup("lookup", variable
552 auto DIEsForAddr = DICtx.getDIEsForAddress(Lookup, DumpNonSkeleton); in lookup()
569 {Lookup, object::SectionedAddress::UndefSection})) in lookup()
696 if (Lookup) in dumpObjectFile()
697 return lookup(Obj, DICtx, Lookup, OS); in dumpObjectFile()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp253 UnresolvedLookupExpr *Lookup) { in BuildOperatorCoawaitCall() argument
255 Functions.append(Lookup->decls_begin(), Lookup->decls_end()); in BuildOperatorCoawaitCall()
804 ExprResult Lookup = BuildOperatorCoawaitLookupExpr(S, Loc); in ActOnCoawaitExpr() local
805 if (Lookup.isInvalid()) in ActOnCoawaitExpr()
808 cast<UnresolvedLookupExpr>(Lookup.get())); in ActOnCoawaitExpr()
832 UnresolvedLookupExpr *Lookup) { in BuildUnresolvedCoawaitExpr() argument
847 DependentCoawaitExpr(Loc, Context.DependentTy, Operand, Lookup); in BuildUnresolvedCoawaitExpr()
864 ExprResult Awaiter = BuildOperatorCoawaitCall(Loc, Transformed, Lookup); in BuildUnresolvedCoawaitExpr()
/freebsd/sys/kern/
H A Dlinker_if.m33 # Lookup a symbol in the file's symbol table. If the symbol is not
130 # Lookup a symbol in the file's symbol table and the file's CTF info.
/freebsd/sys/contrib/device-tree/Bindings/arm/bcm/
H A Dbrcm,bcm63138.txt18 - reg: register base address and length for the Boot Lookup table

1234