Home | History | Annotate | Download | only in space

Lines Matching refs:Limit

280   uint8_t* Limit() const {
290 void SetLimit(uint8_t* limit) {
291 limit_ = limit;
304 return Limit() - Begin();
311 return byte_ptr >= Begin() && byte_ptr < Limit();
326 uint8_t* begin, uint8_t* end, uint8_t* limit) :
327 Space(name, gc_retention_policy), begin_(begin), end_(end), limit_(limit) {
336 // Limit of the space.
374 // Size of the space without a limit on its growth. By default this is just the Capacity, but
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),
449 uint8_t* end, uint8_t* limit, GcRetentionPolicy gc_retention_policy)
450 : MemMapSpace(name, mem_map, begin, end, limit, gc_retention_policy) {