Lines Matching refs:KEY
103 /** \class Key
104 * \brief Key to recognize a stub in the island.
107 class Key
110 Key(const Stub* pPrototype, const LDSymbol* pSymbol, Stub::SWord pAddend)
114 ~Key()
125 size_t operator() (const Key& KEY) const
127 llvm::StringRef sym_name(KEY.symbol()->name());
129 return (size_t((uintptr_t)KEY.prototype())) ^
131 KEY.addend();
137 bool operator() (const Key& KEY1, const Key& KEY2) const
151 typedef HashEntry<Key, Stub*, Key::Compare> StubEntryType;
154 Key::Hash,