HomeSort by relevance Sort by last modified time
    Searched full:alloc_length_ (Results 1 - 1 of 1) sorted by null

  /art/runtime/hprof/
hprof.cc 188 alloc_length_ = 128;
189 body_ = reinterpret_cast<unsigned char*>(malloc(alloc_length_));
336 if (minSize > alloc_length_) {
337 size_t newAllocLen = alloc_length_ * 2;
339 newAllocLen = alloc_length_ + nmore + nmore/2;
344 alloc_length_ = newAllocLen;
351 CHECK_LE(length_ + nmore, alloc_length_);
355 size_t alloc_length_; member in class:art::hprof::HprofRecord
    [all...]

Completed in 123 milliseconds