Home | History | Annotate | Download | only in LD

Lines Matching refs:KEY

104   /** \class Key
105 * \brief Key to recognize a stub in the island.
108 class Key
111 Key(const Stub* pPrototype, const LDSymbol* pSymbol, Stub::SWord pAddend)
115 ~Key()
126 size_t operator() (const Key& KEY) const
128 llvm::StringRef sym_name(KEY.symbol()->name());
130 return (size_t((uintptr_t)KEY.prototype())) ^
132 KEY.addend();
138 bool operator() (const Key& KEY1, const Key& KEY2) const
152 typedef HashEntry<Key, Stub*, Key::Compare> StubEntryType;
155 Key::Hash,