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

  /external/v8/src/zone/
zone.h 64 size_t allocation_size() const { return allocation_size_; }
85 size_t allocation_size_; member in class:v8::internal::final
  /system/core/libmemunreachable/
Allocator.cpp 191 unsigned int allocation_size_; // size of allocations in chunk, min 8 bytes member in class:android::Chunk
207 return offset / allocation_size_;
209 void* n_to_ptr(unsigned int n) { return data_ + n * allocation_size_; }
234 allocation_size_(bucket_to_size(bucket)),
235 max_allocations_(kUsableChunkSize / allocation_size_),
259 unsigned int page = n * allocation_size_ / kPageSize;
294 if (frees_since_purge_++ * allocation_size_ > 16 * kPageSize) {
302 // unsigned int allocsPerPage = kPageSize / allocation_size_;

Completed in 1338 milliseconds