Lines Matching refs:Address
14 // Segments represent chunks of memory: They have starting address
33 Address start() const { return address(sizeof(Segment)); }
34 Address end() const { return address(size_); }
37 // Computes the address of the nth byte in this segment.
38 Address address(int n) const {
39 return Address(this) + n;
70 // address.
78 Address result = position_;
94 Address redzone_position = result + size;
140 Address start = keep->start();
201 Address Zone::NewExpand(int size) {
227 // exponentially, thus putting pressure on contiguous virtual address space.
243 Address result = RoundUp(segment->start(), kAlignment);
245 // Check for address overflow.