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

  /external/deqp/framework/delibs/decpp/
deSpinBarrier.hpp 37 * (WAIT_MODE_BUSY) or yield between iterations (WAIT_MODE_YIELD).
51 WAIT_MODE_YIELD, //! Call deYield() between spin loop iterations.
52 WAIT_MODE_AUTO, //! Use WAIT_MODE_BUSY loop if #threads <= #cores, otherwise WAIT_MODE_YIELD.
deSpinBarrier.cpp 63 return ((deUint32)numThreads <= numCores) ? SpinBarrier::WAIT_MODE_BUSY : SpinBarrier::WAIT_MODE_YIELD;
70 DE_ASSERT(mode == SpinBarrier::WAIT_MODE_YIELD || mode == SpinBarrier::WAIT_MODE_BUSY);
72 if (mode == SpinBarrier::WAIT_MODE_YIELD)
224 SpinBarrier::WAIT_MODE_YIELD,
332 singleThreadTest(SpinBarrier::WAIT_MODE_YIELD);
341 singleThreadRemoveTest(SpinBarrier::WAIT_MODE_YIELD);
349 multiThreadRemoveTest(1, SpinBarrier::WAIT_MODE_YIELD);
350 multiThreadRemoveTest(2, SpinBarrier::WAIT_MODE_YIELD);
351 multiThreadRemoveTest(4, SpinBarrier::WAIT_MODE_YIELD);
352 multiThreadRemoveTest(8, SpinBarrier::WAIT_MODE_YIELD);
    [all...]

Completed in 66 milliseconds