Home
last modified time | relevance | path

Searched refs:QUEUE_SIZE (Results 1 – 4 of 4) sorted by relevance

/frameworks/native/libs/renderengine/skia/debug/
DCommonPool.cpp64 while (mWorkQueue.size() > QUEUE_SIZE) { in enqueue()
66 ALOGW("Queue is full: %d, waiting before adding more tasks.", QUEUE_SIZE); in enqueue()
DCommonPool.h48 static constexpr auto QUEUE_SIZE = 128; variable
/frameworks/base/libs/hwui/thread/
DCommonPool.h82 static constexpr auto QUEUE_SIZE = 128; variable
122 ArrayQueue<Task, QUEUE_SIZE> mWorkQueue;
/frameworks/base/libs/hwui/tests/unit/
DCommonPoolTests.cpp106 static constexpr auto QUEUE_COUNT = CommonPool::THREAD_COUNT + CommonPool::QUEUE_SIZE + 10; in TEST()
128 EXPECT_GT(queuedCount.load(), CommonPool::QUEUE_SIZE); in TEST()