Home
last modified time | relevance | path

Searched refs:deSemaphore_create (Results 1 – 8 of 8) sorted by relevance

/external/deqp/framework/delibs/decpp/
DdeBlockBuffer.hpp129 m_fill = deSemaphore_create(0, DE_NULL); in BlockBuffer()
130 m_empty = deSemaphore_create(numBlocks, DE_NULL); in BlockBuffer()
153 m_fill = deSemaphore_create(0, DE_NULL); in clear()
154 m_empty = deSemaphore_create(m_numBlocks, DE_NULL); in clear()
DdeSemaphore.cpp43 m_semaphore = deSemaphore_create(initialValue, &attribs); in Semaphore()
/external/deqp/framework/delibs/dethread/
DdeSemaphore.h41 deSemaphore deSemaphore_create (int initialValue, const deSemaphoreAttributes* attributes);
DdeThreadTest.c428 deSemaphore semaphore = deSemaphore_create(1, DE_NULL); in deSemaphore_selfTest()
447 testBuffer.empty = deSemaphore_create(DE_LENGTH_OF_ARRAY(testBuffer.buffer), DE_NULL); in deSemaphore_selfTest()
448 testBuffer.fill = deSemaphore_create(0, DE_NULL); in deSemaphore_selfTest()
/external/deqp/framework/delibs/dethread/win32/
DdeSemaphoreWin32.c36 deSemaphore deSemaphore_create (int initialValue, const deSemaphoreAttributes* attributes) in deSemaphore_create() function
/external/deqp/framework/delibs/dethread/unix/
DdeSemaphoreUnix.c34 deSemaphore deSemaphore_create (int initialValue, const deSemaphoreAttributes* attributes) in deSemaphore_create() function
DdeNamedSemaphoreUnix.c46 deSemaphore deSemaphore_create (int initialValue, const deSemaphoreAttributes* attributes) in deSemaphore_create() function
/external/deqp/framework/delibs/destream/
DdeRingbuffer.c64 ringbuffer->emptyCount = deSemaphore_create(ringbuffer->blockCount, DE_NULL); in deRingbuffer_create()
65 ringbuffer->fullCount = deSemaphore_create(0, DE_NULL); in deRingbuffer_create()