Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator.cpp147 if (allocated_end_ - allocated_current_ < (sptr)size) { in Allocate()
149 allocated_current_ = in Allocate()
151 allocated_end_ = allocated_current_ + size_to_allocate; in Allocate()
153 low_level_alloc_callback((uptr)allocated_current_, in Allocate()
157 CHECK(allocated_end_ - allocated_current_ >= (sptr)size); in Allocate()
158 void *res = allocated_current_; in Allocate()
159 allocated_current_ += size; in Allocate()
H A Dsanitizer_common.h216 char *allocated_current_; variable