Lines Matching defs:value
24 inline void Set(Type value, uint32_t index) {
25 uintptr_t key = Key(value);
26 LookupOrInsert(key, Hash(key))->value = index;
29 inline Maybe<uint32_t> Get(Type value) const {
30 uintptr_t key = Key(value);
33 return Just(entry->value);
37 static inline uintptr_t Key(Type value);
43 inline uintptr_t PointerToIndexHashMap<Address>::Key(Address value) {
44 return static_cast<uintptr_t>(value);
48 inline uintptr_t PointerToIndexHashMap<HeapObject>::Key(HeapObject value) {
49 return value.ptr();