Searched refs:Lookup (Results 1 - 25 of 43) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DFormatters.cpp27 static const char *Lookup = "0123456789ABCDEF"; local
35 Stream << Lookup[HighNibble] << Lookup[LowNibble]; local
/freebsd-11-stable/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) {
101 void *V = HelperT::template Lookup<N>::TraitsT::getAsVoidPointer(Pointer);
110 create(typename HelperT::template Lookup<N>::PointerT Pointer) {
125 template <TagT N> typename HelperT::template Lookup<N>::PointerT get() const {
127 return HelperT::template Lookup<N>::TraitsT::getFromVoidPointer(P);
131 typename HelperT::template Lookup<N>::PointerT cast() const {
133 return HelperT::template Lookup<N>::TraitsT::getFromVoidPointer(
140 typename HelperT::template Lookup<HelperT::MinTag>::PointerT const *
148 typename HelperT::template Lookup<Helper
216 template <TagT N> struct Lookup { struct in struct:llvm::detail::PointerSumTypeHelper
[all...]
H A DDenseMap.h526 ValueT &&Value, LookupKeyT &Lookup) {
527 TheBucket = InsertIntoBucketImpl(Key, Lookup, TheBucket);
535 BucketT *InsertIntoBucketImpl(const KeyT &Key, const LookupKeyT &Lookup, argument
552 LookupBucketFor(Lookup, TheBucket);
557 LookupBucketFor(Lookup, TheBucket);
573 /// LookupBucketFor - Lookup the appropriate bucket for Val, returning it in
525 InsertIntoBucketWithLookup(BucketT *TheBucket, KeyT &&Key, ValueT &&Value, LookupKeyT &Lookup) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DComparisonCategories.cpp78 // We don't have a cached result. Lookup the variable declaration and create
80 DeclContextLookupResult Lookup = Record->getCanonicalDecl()->lookup(
82 if (Lookup.empty() || !isa<VarDecl>(Lookup.front()))
84 Objects.emplace_back(ValueKind, cast<VarDecl>(Lookup.front()));
91 DeclContextLookupResult Lookup = local
93 if (!Lookup.empty())
94 StdNS = dyn_cast<NamespaceDecl>(Lookup.front());
103 DeclContextLookupResult Lookup = StdNS->lookup(&Ctx.Idents.get(Name)); local
104 if (!Lookup
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DThreadSafeDenseMap.h39 _ValueType Lookup(_KeyType k) { function in class:lldb_private::ThreadSafeDenseMap
44 bool Lookup(_KeyType k, _ValueType &v) { function in class:lldb_private::ThreadSafeDenseMap
H A DThreadSafeDenseSet.h38 bool Lookup(_ElementType e) { function in class:lldb_private::ThreadSafeDenseSet
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DLegacy.h53 LookupFnRef &&Lookup)
56 Lookup(std::forward<LookupFnRef>(Lookup)) {}
64 return Lookup(std::move(Query), std::move(Symbols));
69 LookupFn Lookup; member in class:llvm::orc::final
81 LookupFn &&Lookup) {
89 std::forward<LookupFn>(Lookup));
52 LambdaSymbolResolver(GetResponsibilitySetFnRef &&GetResponsibilitySet, LookupFnRef &&Lookup) argument
80 createSymbolResolver(GetResponsibilitySetFn &&GetResponsibilitySet, LookupFn &&Lookup) argument
H A DRemoteObjectLayer.h80 class Lookup class in class:llvm::orc::RemoteObjectLayerAPI
81 : public rpc::Function<Lookup,
84 static const char *getName() { return "Lookup"; }
292 using Lookup = RemoteObjectLayerAPI::Lookup;
322 Remote.template addHandler<Lookup>(*this, &ThisT::lookup);
412 using Lookup = RemoteObjectLayerAPI::Lookup;
461 this->Remote.template callB<Lookup>(Id, Name));
541 Remote.template addHandler<Lookup>(*thi
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DDynamicLibrary.cpp91 void *Lookup(const char *Symbol, DynamicLibrary::SearchOrdering Order) { function in class:DynamicLibrary::HandleSet
193 if (void *Ptr = OpenedHandles->Lookup(SymbolName, SearchOrder))
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DDynamicType.cpp68 const auto *Lookup = State->get<DynamicCastMap>().lookup(MR); local
69 if (!Lookup)
72 for (const DynamicCastInfo &Cast : *Lookup)
/freebsd-11-stable/contrib/tcsh/
H A Ded.xmap.c119 static int Lookup (struct Strbuf *, const CStr *,
450 if (Lookup(&buf, &cs, Xmap) <= -1)
456 /* Lookup():
461 Lookup(struct Strbuf *buf, const CStr *str, const XmapNode *ptr) function
481 return (Lookup(buf, &tstr, ptr->next));
498 return (Lookup(buf, str, ptr->sibling));
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp155 Lookup("lookup",
156 desc("Lookup <address> in the debug information and print out any "
390 auto DIEsForAddr = DICtx.getDIEsForAddress(Lookup);
407 {Lookup, object::SectionedAddress::UndefSection}))
425 if (Lookup)
426 return lookup(Obj, DICtx, Lookup, OS);
/freebsd-11-stable/crypto/heimdal/tools/
H A Dkdc-log-analyze.pl411 } elsif (/Lookup (.*) failed: No such entry in the database/) {
416 } elsif (/Lookup .* succeeded$/) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantsContext.h651 LookupKeyHashed Lookup(MapInfo::getHashValue(Key), Key);
655 auto I = Map.find_as(Lookup);
657 Result = create(Ty, V, Lookup);
679 LookupKeyHashed Lookup(MapInfo::getHashValue(Key), Key);
681 auto ItMap = Map.find_as(Lookup);
697 Map.insert_as(CP, Lookup);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp278 UnresolvedLookupExpr *Lookup) {
280 Functions.append(Lookup->decls_begin(), Lookup->decls_end());
706 ExprResult Lookup = buildOperatorCoawaitLookupExpr(*this, S, Loc); local
707 if (Lookup.isInvalid())
710 cast<UnresolvedLookupExpr>(Lookup.get()));
714 UnresolvedLookupExpr *Lookup) {
729 new (Context) DependentCoawaitExpr(Loc, Context.DependentTy, E, Lookup);
744 ExprResult Awaitable = buildOperatorCoawaitCall(*this, Loc, E, Lookup);
1130 // Lookup allocatio
276 buildOperatorCoawaitCall(Sema &SemaRef, SourceLocation Loc, Expr *E, UnresolvedLookupExpr *Lookup) argument
713 BuildUnresolvedCoawaitExpr(SourceLocation Loc, Expr *E, UnresolvedLookupExpr *Lookup) argument
[all...]
H A DSemaAttr.cpp19 #include "clang/Sema/Lookup.h"
557 LookupResult Lookup(*this, Name, IdTok.getLocation(), LookupOrdinaryName);
558 LookupParsedName(Lookup, curScope, nullptr, true);
560 if (Lookup.empty()) {
566 VarDecl *VD = Lookup.getAsSingle<VarDecl>();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Demangle/
H A DMicrosoftDemangle.cpp1057 const char *Lookup = ",/\\:. \n\t'-"; local
1058 char C = Lookup[MangledName[0] - '0'];
1064 char Lookup[26] = {'\xE1', '\xE2', '\xE3', '\xE4', '\xE5', '\xE6', '\xE7', local
1068 char C = Lookup[MangledName[0] - 'a'];
1074 char Lookup[26] = {'\xC1', '\xC2', '\xC3', '\xC4', '\xC5', '\xC6', '\xC7', local
1078 char C = Lookup[MangledName[0] - 'A'];
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramStateTrait.h162 static lookup_type Lookup(data_type B, key_type K) { function in struct:clang::ento::ProgramStatePartialTrait
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DPPMacroExpansion.cpp1259 const DirectoryLookup *Lookup = PP.GetCurDirLookup();
1266 Lookup = nullptr;
1273 Lookup = nullptr;
1274 } else if (!Lookup) {
1278 ++Lookup;
1281 return EvaluateHasIncludeCommon(Tok, II, PP, Lookup, LookupFromFile);
H A DPPDirectives.cpp2225 const DirectoryLookup *Lookup = CurDirLookup; local
2232 Lookup = nullptr;
2239 Lookup = nullptr;
2240 } else if (!Lookup) {
2248 ++Lookup;
2251 return HandleIncludeDirective(HashLoc, IncludeNextTok, Lookup,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h617 SmallDenseMap<uint32_t, IrrNode *, 4> Lookup; member in struct:llvm::bfi_detail::IrreducibleGraph
665 StartIrr = Lookup[Start.Index];
672 auto L = Lookup.find(Node.Index);
673 if (L == Lookup.end())
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp648 Lookup[I.Node.Index] = &I;
655 auto L = Lookup.find(Succ.Index);
656 if (L == Lookup.end())
/freebsd-11-stable/stand/pc98/cdboot/
H A Dcdboot.S106 .set MEM_DIR,MEM_VOLDESC+SECTOR_SIZE # Lookup buffer
536 # Lookup the file in the path at [SI] from the root directory.
560 call find_file # Lookup first path item
576 # Lookup file at [SI] in directory whose record is at [BX].
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/
H A DObjCLanguageRuntime.cpp317 size = m_type_size_cache.Lookup(opaque_ptr);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FloatingPoint.cpp581 // Efficient Lookup Table Support
599 static int Lookup(ArrayRef<TableEntry> Table, unsigned Opcode) { function
792 int Opc = Lookup(OpcodeTable, Opcode);
846 int Opcode = Lookup(PopTable, I->getOpcode());
1357 int Opcode = Lookup(InstTable, MI.getOpcode());

Completed in 333 milliseconds

12