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

  /external/chromium_org/third_party/skia/bench/
GrMemoryPoolBench.cpp 47 kMaxObjects = 4 * (1 << 10),
49 A* objects[kMaxObjects];
54 const int kSwitchThreshPeriod = loops / (2 * kMaxObjects);
65 (kMaxObjects == count || del < delThresh)) {
109 kMaxObjects = 4 * (1 << 10),
111 SkAutoTDelete<B> objects[kMaxObjects];
114 uint32_t idx = r.nextRangeU(0, kMaxObjects-1);
  /external/skia/bench/
GrMemoryPoolBench.cpp 47 kMaxObjects = 4 * (1 << 10),
49 A* objects[kMaxObjects];
54 const int kSwitchThreshPeriod = loops / (2 * kMaxObjects);
65 (kMaxObjects == count || del < delThresh)) {
109 kMaxObjects = 4 * (1 << 10),
111 SkAutoTDelete<B> objects[kMaxObjects];
114 uint32_t idx = r.nextRangeU(0, kMaxObjects-1);
  /external/chromium_org/third_party/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/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/chromium_org/third_party/skia/src/core/
SkSmallAllocator.h 22 * allocations. kMaxObjects is a hard limit on the number of objects that can
31 template<uint32_t kMaxObjects, size_t kTotalBytes>
57 * Note: If kMaxObjects have been created by this SkSmallAllocator, NULL
117 SkASSERT(fNumObjects < kMaxObjects);
119 if (kMaxObjects == fNumObjects) {
173 Rec fRecs[kMaxObjects];
  /external/skia/src/core/
SkSmallAllocator.h 22 * allocations. kMaxObjects is a hard limit on the number of objects that can
31 template<uint32_t kMaxObjects, size_t kTotalBytes>
57 * Note: If kMaxObjects have been created by this SkSmallAllocator, NULL
117 SkASSERT(fNumObjects < kMaxObjects);
119 if (kMaxObjects == fNumObjects) {
173 Rec fRecs[kMaxObjects];

Completed in 646 milliseconds