Lines Matching defs:value
81 // Sets the entry at the given index to the given value.
84 inline void Set(uint32_t index, Address value, ExternalPointerTag tag);
135 // Loads the value at the given index. This method is non-atomic, only use it
141 // Stores the provided value at the given index. This method is non-atomic,
143 inline void store(uint32_t index, Address value) {
144 base::Memory<Address>(entry_address(index)) = value;
147 // Atomically loads the value at the given index.
153 // Atomically stores the provided value at the given index.
154 inline void store_atomic(uint32_t index, Address value) {
156 base::Relaxed_Store(addr, value);