Home
last modified time | relevance | path

Searched refs:allocated_current_ (Results 1 – 2 of 2) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_allocator.cc116 if (allocated_end_ - allocated_current_ < (sptr)size) { in Allocate()
118 allocated_current_ = in Allocate()
120 allocated_end_ = allocated_current_ + size_to_allocate; in Allocate()
122 low_level_alloc_callback((uptr)allocated_current_, in Allocate()
126 CHECK(allocated_end_ - allocated_current_ >= (sptr)size); in Allocate()
127 void *res = allocated_current_; in Allocate()
128 allocated_current_ += size; in Allocate()
Dsanitizer_common.h143 char *allocated_current_; variable