HomeSort by: relevance | last modified time | path
    Searched refs:allocated_current_ (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_allocator.cc 204 if (allocated_end_ - allocated_current_ < (sptr)size) {
206 allocated_current_ =
208 allocated_end_ = allocated_current_ + size_to_allocate;
210 low_level_alloc_callback((uptr)allocated_current_,
214 CHECK(allocated_end_ - allocated_current_ >= (sptr)size);
215 void *res = allocated_current_;
216 allocated_current_ += size;
sanitizer_common.h 164 char *allocated_current_; member in class:__sanitizer::LowLevelAllocator

Completed in 15 milliseconds