OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:desemaphore_create
(Results
1 - 8
of
8
) sorted by null
/external/deqp/framework/delibs/decpp/
deBlockBuffer.hpp
129
m_fill =
deSemaphore_create
(0, DE_NULL);
130
m_empty =
deSemaphore_create
(numBlocks, DE_NULL);
153
m_fill =
deSemaphore_create
(0, DE_NULL);
154
m_empty =
deSemaphore_create
(m_numBlocks, DE_NULL);
deSemaphore.cpp
43
m_semaphore =
deSemaphore_create
(initialValue, &attribs);
/external/deqp/framework/delibs/dethread/unix/
deSemaphoreUnix.c
34
deSemaphore
deSemaphore_create
(int initialValue, const deSemaphoreAttributes* attributes)
deNamedSemaphoreUnix.c
46
deSemaphore
deSemaphore_create
(int initialValue, const deSemaphoreAttributes* attributes)
/external/deqp/framework/delibs/dethread/win32/
deSemaphoreWin32.c
36
deSemaphore
deSemaphore_create
(int initialValue, const deSemaphoreAttributes* attributes)
/external/deqp/framework/delibs/dethread/
deSemaphore.h
41
deSemaphore
deSemaphore_create
(int initialValue, const deSemaphoreAttributes* attributes);
deThreadTest.c
428
deSemaphore semaphore =
deSemaphore_create
(1, DE_NULL);
447
testBuffer.empty =
deSemaphore_create
(DE_LENGTH_OF_ARRAY(testBuffer.buffer), DE_NULL);
448
testBuffer.fill =
deSemaphore_create
(0, DE_NULL);
/external/deqp/framework/delibs/destream/
deRingbuffer.c
64
ringbuffer->emptyCount =
deSemaphore_create
(ringbuffer->blockCount, DE_NULL);
65
ringbuffer->fullCount =
deSemaphore_create
(0, DE_NULL);
Completed in 2569 milliseconds