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 117 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;
sanitizer_common.h 122 char *allocated_current_; member in class:__sanitizer::LowLevelAllocator

Completed in 122 milliseconds