Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator.cc204 if (allocated_end_ - allocated_current_ < (sptr)size) { in Allocate()
206 allocated_current_ = in Allocate()
208 allocated_end_ = allocated_current_ + size_to_allocate; in Allocate()
210 low_level_alloc_callback((uptr)allocated_current_, in Allocate()
214 CHECK(allocated_end_ - allocated_current_ >= (sptr)size); in Allocate()
215 void *res = allocated_current_; in Allocate()
216 allocated_current_ += size; in Allocate()
H A Dsanitizer_common.h174 char *allocated_current_; variable