Home
last modified time | relevance | path

Searched refs:kMaxObjects (Results 1 – 18 of 18) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/bench/
H A DGrMemoryPoolBench.cpp45 static const int kMaxObjects = 4 * (1 << 10); in run_stack() local
46 T* objs[kMaxObjects]; in run_stack()
49 for (int j = 0; j < kMaxObjects; ++j) { in run_stack()
70 T* objs[kMaxObjects]; in run_queue()
73 for (int j = 0; j < kMaxObjects; ++j) { in run_queue()
77 for (int j = 0; j < kMaxObjects; ++j) { in run_queue()
94 T* objs[kMaxObjects]; in run_pushpop()
97 for (int j = 0; j < kMaxObjects; ++j) { in run_pushpop()
115 T* objs[kMaxObjects]; in run_random()
116 for (int i = 0; i < kMaxObjects; ++i) { in run_random()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/bench/
H A DGrMemoryPoolBench.cpp41 static const int kMaxObjects = 4 * (1 << 10); in run_stack() local
42 T* objs[kMaxObjects]; in run_stack()
45 for (int j = 0; j < kMaxObjects; ++j) { in run_stack()
66 T* objs[kMaxObjects]; in run_queue()
69 for (int j = 0; j < kMaxObjects; ++j) { in run_queue()
73 for (int j = 0; j < kMaxObjects; ++j) { in run_queue()
90 T* objs[kMaxObjects]; in run_pushpop()
93 for (int j = 0; j < kMaxObjects; ++j) { in run_pushpop()
111 T* objs[kMaxObjects]; in run_random()
112 for (int i = 0; i < kMaxObjects; ++i) { in run_random()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/skia/skia/src/core/
H A DSkSmallAllocator.h31 template<uint32_t kMaxObjects, size_t kTotalBytes>
75 SkASSERT(fNumObjects < kMaxObjects);
77 if (kMaxObjects == fNumObjects) {
135 char fBytes[kTotalBytes + kMaxObjects * 15];
142 Rec fRecs[kMaxObjects];
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/prince/
H A Dsaveload.cpp254 for (int objectSlot = 0; objectSlot < kMaxObjects; objectSlot++) { in syncGame()
351 for (int objectSlot = 0; objectSlot < kMaxObjects; objectSlot++) { in syncGame()
H A Dmob.cpp146 if (mob->_mask < kMaxObjects) { in getMob()
H A Dprince.cpp375 _objSlot = (uint16 *)malloc(kMaxObjects * sizeof(uint16)); in init()
376 for (int i = 0; i < kMaxObjects; i++) { in init()
H A Dprince.h407 static const int kMaxObjects = 64; variable
H A Ddraw.cpp493 for (int i = 0; i < kMaxObjects; i++) { in showObjects()
H A Dscript.cpp362 for (int i = 0; i < _vm->kMaxObjects; i++) { in installObjects()
/dports/games/scummvm/scummvm-2.5.1/engines/prince/
H A Dsaveload.cpp250 for (int objectSlot = 0; objectSlot < kMaxObjects; objectSlot++) { in syncGame()
347 for (int objectSlot = 0; objectSlot < kMaxObjects; objectSlot++) { in syncGame()
H A Dmob.cpp146 if (mob->_mask < kMaxObjects) { in getMob()
H A Dprince.cpp366 _objSlot = (uint16 *)malloc(kMaxObjects * sizeof(uint16)); in init()
367 for (int i = 0; i < kMaxObjects; i++) { in init()
H A Dprince.h403 static const int kMaxObjects = 64; variable
H A Ddraw.cpp495 for (int i = 0; i < kMaxObjects; i++) { in showObjects()
H A Dscript.cpp362 for (int i = 0; i < _vm->kMaxObjects; i++) { in installObjects()
/dports/games/scummvm-tools/scummvm-tools-2.5.0/engines/prince/
H A Ddeprince.cpp38 static const int kMaxObjects = 64; variable
891 printArray(rooms[i].obj, 1, kMaxObjects, false); in main()
/dports/games/NBlood/NBlood-a1689a4/source/exhumed/src/
H A Dobject.cpp50 #define kMaxObjects 128 macro
202 Object ObjectList[kMaxObjects];
1815 if (ObjectCount >= kMaxObjects) { in BuildObject()
/dports/lang/v8/v8-9.6.180.12/test/cctest/heap/
H A Dtest-heap.cc4908 const int kMaxObjects = 10000; in HEAP_TEST() local
4910 Handle<FixedArray> objects[kMaxObjects]; in HEAP_TEST()
4911 for (int i = 0; (i < kMaxObjects) && in HEAP_TEST()