Home
last modified time | relevance | path

Searched refs:SemaphoreObjects (Results 1 – 5 of 5) sorted by relevance

/third_party/mesa3d/src/mesa/main/
Dexternalobjects.c601 _mesa_HashLockMutex(ctx->Shared->SemaphoreObjects); in _mesa_GenSemaphoresEXT()
602 if (_mesa_HashFindFreeKeys(ctx->Shared->SemaphoreObjects, semaphores, n)) { in _mesa_GenSemaphoresEXT()
604 _mesa_HashInsertLocked(ctx->Shared->SemaphoreObjects, in _mesa_GenSemaphoresEXT()
609 _mesa_HashUnlockMutex(ctx->Shared->SemaphoreObjects); in _mesa_GenSemaphoresEXT()
636 _mesa_HashLockMutex(ctx->Shared->SemaphoreObjects); in _mesa_DeleteSemaphoresEXT()
643 _mesa_HashRemoveLocked(ctx->Shared->SemaphoreObjects, in _mesa_DeleteSemaphoresEXT()
649 _mesa_HashUnlockMutex(ctx->Shared->SemaphoreObjects); in _mesa_DeleteSemaphoresEXT()
884 _mesa_HashInsert(ctx->Shared->SemaphoreObjects, semaphore, semObj, true); in _mesa_ImportSemaphoreFdEXT()
Dshared.c141 shared->SemaphoreObjects = _mesa_NewHashTable(); in _mesa_alloc_shared_state()
456 if (shared->SemaphoreObjects) { in free_shared_state()
457 _mesa_HashDeleteAll(shared->SemaphoreObjects, delete_semaphore_object_cb, ctx); in free_shared_state()
458 _mesa_DeleteHashTable(shared->SemaphoreObjects); in free_shared_state()
Dexternalobjects.h67 _mesa_HashLookup(ctx->Shared->SemaphoreObjects, semaphore); in _mesa_lookup_semaphore_object()
77 _mesa_HashLookupLocked(ctx->Shared->SemaphoreObjects, semaphore); in _mesa_lookup_semaphore_object_locked()
Dmtypes.h3462 struct _mesa_HashTable *SemaphoreObjects; member
/third_party/mesa3d/src/mesa/state_tracker/
Dst_context.c861 _mesa_HashEnableNameReuse(ctx->Shared->SemaphoreObjects); in st_create_context_priv()