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

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator.cc117 if (allocated_end_ - allocated_current_ < (sptr)size) {
119 allocated_current_ =
121 allocated_end_ = allocated_current_ + size_to_allocate;
123 low_level_alloc_callback((uptr)allocated_current_,
127 CHECK(allocated_end_ - allocated_current_ >= (sptr)size);
128 void *res = allocated_current_;
129 allocated_current_ += size;
H A Dsanitizer_common.h122 char *allocated_current_; member in class:__sanitizer::LowLevelAllocator

Completed in 627 milliseconds