Home | History | Annotate | Download | only in tests

Lines Matching refs:kSmallestMinAllocCount

329     constexpr size_t kSmallestMinAllocCount = DataObjectPool::kSmallestMinAllocCount;
344 // Effective prealloc space capacity is >= kSmallestMinAllocCount.
346 DataObjectPool pool(kSmallestMinAllocCount / 3, 0);
350 REPORTER_ASSERT(reporter, preallocCount == kSmallestMinAllocCount);
355 DataObjectPool pool(kSmallestMinAllocCount, 2 * kSmallestMinAllocCount);
359 REPORTER_ASSERT(reporter, preallocCount == 2 * kSmallestMinAllocCount);
362 // Effective block capacity is >= kSmallestMinAllocCount.
364 DataObjectPool pool(kSmallestMinAllocCount, kSmallestMinAllocCount / 2);
371 REPORTER_ASSERT(reporter, minAllocCount == kSmallestMinAllocCount);
376 constexpr size_t kPreallocCount = kSmallestMinAllocCount * 7 / 3;
386 constexpr size_t kMinAllocCount = kSmallestMinAllocCount * 11 / 3;