HomeSort by relevance Sort by last modified time
    Searched refs:allocated_current_ (Results 1 - 2 of 2) sorted by null

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.cc 169 if (allocated_end_ - allocated_current_ < (sptr)size) {
171 allocated_current_ =
173 allocated_end_ = allocated_current_ + size_to_allocate;
175 low_level_alloc_callback((uptr)allocated_current_,
179 CHECK(allocated_end_ - allocated_current_ >= (sptr)size);
180 void *res = allocated_current_;
181 allocated_current_ += size;
sanitizer_common.h 166 char *allocated_current_; member in class:__sanitizer::LowLevelAllocator

Completed in 63 milliseconds