reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
215 if (allocated_end_ - allocated_current_ < (sptr)size) { 217 allocated_current_ = 219 allocated_end_ = allocated_current_ + size_to_allocate; 221 low_level_alloc_callback((uptr)allocated_current_, 225 CHECK(allocated_end_ - allocated_current_ >= (sptr)size); 226 void *res = allocated_current_; 227 allocated_current_ += size;