Searched refs:Key (Results 101 - 125 of 371) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDenseMap.h210 std::pair<iterator, bool> try_emplace(KeyT &&Key, Ts &&... Args) { argument
212 if (LookupBucketFor(Key, TheBucket))
219 InsertIntoBucket(TheBucket, std::move(Key), std::forward<Ts>(Args)...);
229 std::pair<iterator, bool> try_emplace(const KeyT &Key, Ts &&... Args) { argument
231 if (LookupBucketFor(Key, TheBucket))
237 TheBucket = InsertIntoBucket(TheBucket, Key, std::forward<Ts>(Args)...);
291 value_type& FindAndConstruct(const KeyT &Key) { argument
293 if (LookupBucketFor(Key, TheBucket))
296 return *InsertIntoBucket(TheBucket, Key);
299 ValueT &operator[](const KeyT &Key) { argument
303 FindAndConstruct(KeyT &&Key) argument
311 operator [](KeyT &&Key) argument
515 InsertIntoBucket(BucketT *TheBucket, KeyArg &&Key, ValueArgs &&... Values) argument
525 InsertIntoBucketWithLookup(BucketT *TheBucket, KeyT &&Key, ValueT &&Value, LookupKeyT &Lookup) argument
535 InsertIntoBucketImpl(const KeyT &Key, const LookupKeyT &Lookup, BucketT *TheBucket) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCSubtargetInfo.cpp29 if (F == A.end() || StringRef(F->Key) != S) return nullptr;
91 MaxLen = std::max(MaxLen, std::strlen(I.Key));
112 errs() << format(" %-*s - Select the %s processor.\n", MaxCPULen, CPU.Key,
113 CPU.Key);
119 errs() << format(" %-*s - %s.\n", MaxFeatLen, Feature.Key, Feature.Desc);
140 errs() << "\t" << CPU.Key << "\n";
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/pat_trie_/
H A Dpat_trie_.hpp79 template<typename Key, typename Mapped, typename Node_And_It_Traits, \
91 PB_DS_CLASS_NAME<Key, Mapped, Node_And_It_Traits, Allocator>
94 types_traits<Key, Mapped, Allocator, false>
98 map_debug_base<Key, eq_by_less<Key, \
99 std::less<Key> >, typename Allocator::template rebind<Key>::other::const_reference>
121 template<typename Key,
/freebsd-11-stable/crypto/heimdal/kdc/
H A Dkdc-private.h107 Key **/*ret_key*/);
130 Key **/*key*/);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DDiagnosticInfo.h419 std::string Key; member in struct:llvm::DiagnosticInfoOptimizationBase::Argument
424 explicit Argument(StringRef Str = "") : Key("String"), Val(Str) {}
425 Argument(StringRef Key, const Value *V);
426 Argument(StringRef Key, const Type *T);
427 Argument(StringRef Key, StringRef S);
428 Argument(StringRef Key, const char *S) : Argument(Key, StringRef(S)) {}; argument
429 Argument(StringRef Key, int N);
430 Argument(StringRef Key, float N);
431 Argument(StringRef Key, lon
436 Argument(StringRef Key, bool B) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DYAMLTraits.cpp151 bool Input::preflightKey(const char *Key, bool Required, bool, bool &UseDefault, argument
171 MN->ValidKeys.push_back(Key);
172 HNode *Value = MN->Mapping[Key].get();
175 setError(CurrentNode, Twine("missing required key '") + Key + "'");
396 ScalarNode *Key = dyn_cast_or_null<ScalarNode>(KeyNode); local
398 if (!Key || !Value) {
399 if (!Key)
406 StringRef KeyStr = Key->getValue(StringStorage);
498 bool Output::preflightKey(const char *Key, bool Required, bool SameAsDefault, argument
504 flowKey(Key);
816 flowKey(StringRef Key) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DModule.cpp301 MDString *Key = cast<MDString>(Flag->getOperand(1));
303 Flags.push_back(ModuleFlagEntry(MFB, Key, Val));
308 /// Return the corresponding value if Key appears in module flags, otherwise
310 Metadata *Module::getModuleFlag(StringRef Key) const {
314 if (Key == MFE.Key->getString())
337 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key,
342 MDString::get(Context, Key), Val};
345 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key,
347 addModuleFlag(Behavior, Key, ConstantAsMetadat
[all...]
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/rb_tree_map_/
H A Drb_tree_.hpp77 template<typename Key, typename Mapped, typename Cmp_Fn, \
97 PB_DS_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
100 PB_DS_BASE_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
114 template<typename Key,
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/splay_tree_/
H A Dsplay_tree_.hpp101 template<typename Key, typename Mapped, typename Cmp_Fn, \
121 PB_DS_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
124 PB_DS_BASE_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
139 template<typename Key, typename Mapped, typename Cmp_Fn,
/freebsd-11-stable/crypto/openssh/
H A Dssh-pkcs11-client.c109 Key key;
187 pkcs11_add_provider(char *name, char *pin, Key ***keysp)
189 Key *k;
207 *keysp = xcalloc(nkeys, sizeof(Key *));
/freebsd-11-stable/crypto/heimdal/lib/kadm5/
H A Dset_keys.c47 Key *keys;
88 Key *keys;
147 Key *keys;
206 Key *keys;
/freebsd-11-stable/sys/contrib/edk2/Include/Protocol/
H A DSimpleTextIn.h102 @param Key A pointer to a buffer that is filled in with the keystroke
115 OUT EFI_INPUT_KEY *Key
/freebsd-11-stable/contrib/llvm-project/clang/tools/driver/
H A Dcc1gen_reproducer_main.cpp78 auto EmitKey = [&](StringRef Key) {
82 OS << '"' << Key << "\": ";
84 auto EmitStringKey = [&](StringRef Key, StringRef Value) {
87 EmitKey(Key);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DObjCARCAliasAnalysis.h71 static AnalysisKey Key; member in class:llvm::objcarc::ObjCARCAA
H A DScalarEvolutionAliasAnalysis.h43 static AnalysisKey Key; member in class:llvm::SCEVAA
H A DScopedNoAliasAA.h57 static AnalysisKey Key; member in class:llvm::ScopedNoAliasAA
H A DTypeBasedAliasAnalysis.h63 static AnalysisKey Key; member in class:llvm::TypeBasedAA
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Linker/
H A DIRMover.h37 static unsigned getHashValue(const KeyTy &Key);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp329 AppleAcceleratorTable::equal_range(StringRef Key) const {
334 unsigned HashValue = djbHash(Key);
359 if (Key == StringSection.getCStr(&StringOffset))
772 DWARFDebugNames::NameIndex::equal_range(StringRef Key) const {
773 return make_range(ValueIterator(*this, Key), ValueIterator());
788 if (NTE.getString() == Key)
795 // Compute the Key Hash, if it has not been done already.
797 Hash = caseFoldingDjbHash(Key);
809 if (NTE.getString() == Key)
861 StringRef Key)
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/
H A DRemarkStringTable.cpp49 Impl(Arg.Key);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineOptimizationRemarkEmitter.cpp27 Key = MKey;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DDominanceFrontier.cpp79 AnalysisKey DominanceFrontierAnalysis::Key; member in class:DominanceFrontierAnalysis
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
H A Dov_tree_map_.hpp68 template<typename Key, typename Mapped, class Cmp_Fn, \
86 PB_DS_OV_TREE_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
89 types_traits<Key, Mapped, Allocator, false>
93 map_debug_base<Key, eq_by_less<Key, Cmp_Fn>, \
94 typename Allocator::template rebind<Key>::other::const_reference>
117 template<typename Key, typename Mapped, class Cmp_Fn,
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp454 MatchKey Key;
455 Key.MatcherID = Matcher.getID();
456 Key.Node = Node;
458 Key.BoundNodes = *Builder;
459 Key.Traversal = Ctx.getTraversalKind();
461 MemoizationMap::iterator I = ResultCache.find(Key);
472 MemoizedMatchResult &CachedResult = ResultCache[Key];
704 MatchKey Key;
705 Key.MatcherID = Matcher.getID();
706 Key
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h199 /// Look up all entries in the accelerator table matching \c Key.
200 iterator_range<ValueIterator> equal_range(StringRef Key) const;
456 /// Look up all entries in this Name Index matching \c Key.
457 iterator_range<ValueIterator> equal_range(StringRef Key) const;
483 std::string Key; ///< The Key we are searching for. member in class:llvm::DWARFDebugNames::ValueIterator
484 Optional<uint32_t> Hash; ///< Hash of Key, if it has been computed.
497 /// accelerator table matching Key. The iterator will run through all Name
499 ValueIterator(const DWARFDebugNames &AccelTable, StringRef Key);
503 ValueIterator(const NameIndex &NI, StringRef Key);
[all...]

Completed in 187 milliseconds

1234567891011>>