Lines Matching defs:End
275 uint8_t* End() const {
279 // The end of the address range covered by the space.
284 // Change the end of the space. Be careful with use since changing the end of a space to an
286 void SetEnd(uint8_t* end) {
287 end_.StoreRelaxed(end);
296 return End() - Begin();
307 // Is object within this space? We check to see if the pointer is beyond the end first as
326 uint8_t* begin, uint8_t* end, uint8_t* limit) :
327 Space(name, gc_retention_policy), begin_(begin), end_(end), limit_(limit) {
333 // Current end of the space.
393 MemMapSpace(const std::string& name, MemMap* mem_map, uint8_t* begin, uint8_t* end, uint8_t* limit,
395 : ContinuousSpace(name, gc_retention_policy, begin, end, limit),
450 uint8_t* end, uint8_t* limit, GcRetentionPolicy gc_retention_policy)
451 : MemMapSpace(name, mem_map, begin, end, limit, gc_retention_policy) {