Lines Matching full:address
52 // Load value of type `T` at `offset`. The memory address corresponding
56 T* address = ComputeInternalPointer<T>(offset);
57 DCHECK(IsWordAligned(address));
58 return *address;
61 // Store `value` (of type `T`) at `offset`. The memory address
66 T* address = ComputeInternalPointer<T>(offset);
67 DCHECK(IsWordAligned(address));
68 *address = value;
71 // Load value of type `T` at `offset`. The memory address corresponding
86 // Store `value` (of type `T`) at `offset`. The memory address
180 // Is `address` aligned on a machine word?
181 template<typename T> static bool IsWordAligned(const T* address) {
184 return IsAlignedParam(address, kWordAlignment);