Home | History | Annotate | Download | only in src

Lines Matching refs:address

36 Address Zone::position_ = 0;
37 Address Zone::limit_ = 0;
45 // Segments represent chunks of memory: They have starting address
59 Address start() const { return address(sizeof(Segment)); }
60 Address end() const { return address(size_); }
87 // Computes the address of the nth byte in this segment.
88 Address address(int n) const {
89 return Address(this) + n;
139 Address start = keep->start();
155 Address Zone::NewExpand(int size) {
173 // exponentially, thus putting pressure on contiguous virtual address space.
185 Address result = RoundUp(segment->start(), kAlignment);