Lines Matching refs:workerState
62 ThreadState workerState[64]; in SUITE() local
78 MT_ASSERT(workerIndex < MT_ARRAY_SIZE(workerState), "Invalid worker index"); in SUITE()
79 ThreadState& state = workerState[workerIndex]; in SUITE()
107 MT_ASSERT(workerIndex < MT_ARRAY_SIZE(workerState), "Invalid worker index"); in SUITE()
108 ThreadState& state = workerState[workerIndex]; in SUITE()
141 MT_ASSERT(workerIndex < MT_ARRAY_SIZE(workerState), "Invalid worker index"); in SUITE()
142 ThreadState& state = workerState[workerIndex]; in SUITE()
199 for(uint32 i = 0; i < MT_ARRAY_SIZE(workerState); i++) in SUITE()
201 workerState[i].Reset(); in SUITE()
218 lowProcessedTotal += workerState[j].lowProcessed; in SUITE()
219 normalProcessedTotal += workerState[j].normalProcessed; in SUITE()
220 highProcessedTotal += workerState[j].highProcessed; in SUITE()
231 CHECK_EQUAL((uint32)2, workerState[j].taskPrio); in SUITE()
232 CHECK(workerState[j].lowProcessed >= minTasksExecutedThreshold); in SUITE()
233 CHECK(workerState[j].normalProcessed >= minTasksExecutedThreshold); in SUITE()
234 CHECK(workerState[j].highProcessed >= minTasksExecutedThreshold); in SUITE()
236 printf(" low : %d\n", workerState[j].lowProcessed); in SUITE()
237 printf(" normal : %d\n", workerState[j].normalProcessed); in SUITE()
238 printf(" high : %d\n", workerState[j].highProcessed); in SUITE()