Searched refs:allocated_current_ (Results 1 – 2 of 2) sorted by relevance
117 if (allocated_end_ - allocated_current_ < (sptr)size) { in Allocate()119 allocated_current_ = in Allocate()121 allocated_end_ = allocated_current_ + size_to_allocate; in Allocate()123 low_level_alloc_callback((uptr)allocated_current_, in Allocate()127 CHECK(allocated_end_ - allocated_current_ >= (sptr)size); in Allocate()128 void *res = allocated_current_; in Allocate()129 allocated_current_ += size; in Allocate()
160 char *allocated_current_; variable