Lines Matching refs:top
190 if (addr < the_space()->top()) return true;
192 else if (addr < ro_space()->top()) return true;
194 else if (addr < rw_space()->top()) return true;
200 if (addr < the_space()->top()) {
204 assert(addr == the_space()->top(), "non-block head arg to block_size");
205 return the_space()->end() - the_space()->top();
208 else if (addr < ro_space()->top()) {
212 assert(addr == ro_space()->top(), "non-block head arg to block_size");
213 return ro_space()->end() - ro_space()->top();
216 else if (addr < rw_space()->top()) {
220 assert(addr == rw_space()->top(), "non-block head arg to block_size");
221 return rw_space()->end() - rw_space()->top();