HomeSort by relevance Sort by last modified time
    Searched full:createsemaphore (Results 1 - 25 of 50) sorted by null

1 2

  /external/deqp/external/vulkancts/framework/vulkan/
vkDeviceFunctionPointers.inl 27 CreateSemaphoreFunc createSemaphore;
vkRefUtil.inl 8 Move<VkSemaphore> createSemaphore (const DeviceInterface& vk, VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL);
vkRefUtilImpl.inl 157 Move<VkSemaphore> createSemaphore (const DeviceInterface& vk, VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator)
160 VK_CHECK(vk.createSemaphore(device, pCreateInfo, pAllocator, &object));
vkInitDeviceFunctionPointers.inl 27 m_vk.createSemaphore = (CreateSemaphoreFunc) GET_PROC_ADDR("vkCreateSemaphore");
  /external/lzma/C/
Threads.c 69 *p = CreateSemaphore(NULL, (LONG)initCount, (LONG)maxCount, NULL);
  /external/v8/src/base/
win32-headers.h 76 #undef CreateSemaphore
  /external/deqp/framework/delibs/dethread/win32/
deSemaphoreWin32.c 42 handle = CreateSemaphore(DE_NULL, initialValue, WIN32_SEM_MAX_VALUE, DE_NULL);
  /external/skia/src/core/
SkSemaphore.cpp 28 fSemaphore = CreateSemaphore(nullptr /*security attributes, optional*/,
  /external/vulkan-validation-layers/loader/
vk_loader_platform.h 231 // WinBase.h defines CreateSemaphore and synchapi.h defines CreateEvent
233 #ifdef CreateSemaphore
234 #undef CreateSemaphore
table_ops.h 93 table->CreateSemaphore =
334 if (!strcmp(name, "CreateSemaphore"))
335 return (void *)table->CreateSemaphore;
    [all...]
  /external/opencv3/3rdparty/openexr/IlmThread/
IlmThreadSemaphoreWin32.cpp 88 if ((_semaphore = ::CreateSemaphore (0, value, 0x7fffffff, 0)) == 0)
  /frameworks/native/vulkan/libvulkan/
api_gen.h 78 PFN_vkCreateSemaphore CreateSemaphore;
  /external/libvpx/libvpx/vpx_util/
vpx_thread.h 110 condition->waiting_sem_ = CreateSemaphore(NULL, 0, MAX_DECODE_THREADS, NULL);
111 condition->received_sem_ = CreateSemaphore(NULL, 0, MAX_DECODE_THREADS, NULL);
  /external/opencv3/3rdparty/libwebp/utils/
thread.c 88 condition->waiting_sem_ = CreateSemaphore(NULL, 0, 1, NULL);
89 condition->received_sem_ = CreateSemaphore(NULL, 0, 1, NULL);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_thread.h 107 condition->waiting_sem_ = CreateSemaphore(NULL, 0, 1, NULL);
108 condition->received_sem_ = CreateSemaphore(NULL, 0, 1, NULL);
  /external/webp/src/utils/
thread.c 148 condition->waiting_sem_ = CreateSemaphore(NULL, 0, 1, NULL);
149 condition->received_sem_ = CreateSemaphore(NULL, 0, 1, NULL);
  /external/libvpx/libvpx/vp8/common/
threading.h 88 #define sem_init(sem, sem_attr1, sem_init_value) (int)((*sem = CreateSemaphore(NULL,0,32768,NULL))==NULL)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
threading.h 88 #define sem_init(sem, sem_attr1, sem_init_value) (int)((*sem = CreateSemaphore(NULL,0,32768,NULL))==NULL)
  /external/vulkan-validation-layers/demos/smoke/
Shell.cpp 358 vk::assert_success(vk::CreateSemaphore(ctx_.dev, &sem_info, nullptr, &buf.acquire_semaphore));
359 vk::assert_success(vk::CreateSemaphore(ctx_.dev, &sem_info, nullptr, &buf.render_semaphore));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
gthr-default.h 638 __mutex->sema = CreateSemaphore (NULL, 0, 65535, NULL);
700 __mutex->sema = CreateSemaphore (NULL, 0, 65535, NULL);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
gthr-default.h 638 __mutex->sema = CreateSemaphore (NULL, 0, 65535, NULL);
700 __mutex->sema = CreateSemaphore (NULL, 0, 65535, NULL);
  /external/libevent/
event_iocp.c 199 port->shutdownSemaphore = CreateSemaphore(NULL, 0, 1, NULL);
  /external/skia/src/gpu/vk/
GrVkInterface.cpp 58 GET_PROC(CreateSemaphore);
  /external/vulkan-validation-layers/include/vulkan/
vk_layer.h 70 PFN_vkCreateSemaphore CreateSemaphore;
  /frameworks/native/vulkan/nulldrv/
null_driver_gen.cpp 127 {"vkCreateSemaphore", reinterpret_cast<PFN_vkVoidFunction>(static_cast<PFN_vkCreateSemaphore>(CreateSemaphore))},

Completed in 2850 milliseconds

1 2