Searched refs:allocated_current_ (Results 1 – 2 of 2) sorted by relevance
169 if (allocated_end_ - allocated_current_ < (sptr)size) { in Allocate()171 allocated_current_ = in Allocate()173 allocated_end_ = allocated_current_ + size_to_allocate; in Allocate()175 low_level_alloc_callback((uptr)allocated_current_, in Allocate()179 CHECK(allocated_end_ - allocated_current_ >= (sptr)size); in Allocate()180 void *res = allocated_current_; in Allocate()181 allocated_current_ += size; in Allocate()
166 char *allocated_current_; variable