HomeSort by relevance Sort by last modified time
    Searched refs:kMaxObjects (Results 1 - 4 of 4) sorted by null

  /external/skia/bench/
GrMemoryPoolBench.cpp 49 kMaxObjects = 4 * (1 << 10),
51 A* objects[kMaxObjects];
56 const int kSwitchThreshPeriod = loops / (2 * kMaxObjects);
67 (kMaxObjects == count || del < delThresh)) {
111 kMaxObjects = 4 * (1 << 10),
113 SkAutoTDelete<B> objects[kMaxObjects];
116 uint32_t idx = r.nextRangeU(0, kMaxObjects-1);
  /external/skia/src/core/
SkSmallAllocator.h 18 * allocations. kMaxObjects is a hard limit on the number of objects that can
27 template<uint32_t kMaxObjects, size_t kTotalBytes>
51 * Note: If kMaxObjects have been created by this SkSmallAllocator, nullptr
71 SkASSERT(fNumObjects < kMaxObjects);
73 if (kMaxObjects == fNumObjects) {
133 Rec fRecs[kMaxObjects];
  /external/skia/tests/
SmallAllocatorTest.cpp 30 template<uint32_t kMaxObjects, size_t kBytes> void test_allocator(skiatest::Reporter* reporter) {
32 SkSmallAllocator<kMaxObjects, kBytes> alloc;
33 for (uint32_t i = 0; i < kMaxObjects; ++i) {
47 // will stop once it reaches kMaxObjects).
  /external/v8/test/cctest/heap/
test-heap.cc     [all...]

Completed in 214 milliseconds