HomeSort by relevance Sort by last modified time
    Searched defs:fence (Results 51 - 75 of 258) sorted by null

1 23 4 5 6 7 8 91011

  /bionic/libc/kernel/uapi/linux/
sync_file.h 27 __s32 fence; member in struct:sync_merge_data
  /cts/tests/openglperf2/jni/primitive/contextswitch/
ContextSwitchRenderer.cpp 181 EGLSyncKHR fence = eglCreateSyncKHR(mEglDisplay, EGL_SYNC_FENCE_KHR, NULL); local
186 eglWaitSyncKHR(mEglDisplay, fence, 0);
187 eglDestroySyncKHR(mEglDisplay, fence);
204 fence = eglCreateSyncKHR(mEglDisplay, EGL_SYNC_FENCE_KHR, NULL);
226 eglWaitSyncKHR(mEglDisplay, fence, 0);
227 eglDestroySyncKHR(mEglDisplay, fence);
  /development/ndk/platforms/android-21/include/linux/
sync.h 27 __s32 fence; member in struct:sync_merge_data
  /external/deqp/external/vulkancts/modules/vulkan/synchronization/
vktSynchronizationBasicFenceTests.cpp 21 * \brief Synchronization fence basic tests
57 const Unique<VkFence> fence (createFence(vk, device, &fenceInfo));
71 if (VK_NOT_READY != vk.getFenceStatus(device, *fence))
72 return tcu::TestStatus::fail("Created fence should be in unsignaled state");
74 if (VK_TIMEOUT != vk.waitForFences(device, 1u, &fence.get(), VK_TRUE, SHORT_FENCE_WAIT))
77 if (VK_NOT_READY != vk.getFenceStatus(device, *fence))
78 return tcu::TestStatus::fail("Created fence should be in unsignaled state");
83 VK_CHECK(vk.queueSubmit(queue, 1u, &submitInfo, *fence));
85 if (VK_SUCCESS != vk.waitForFences(device, 1u, &fence.get(), DE_TRUE, LONG_FENCE_WAIT))
88 if (VK_SUCCESS != vk.getFenceStatus(device, *fence))
116 const VkFence fence[2] = { *ptrFence[FISRT_FENCE], *ptrFence[SECOND_FENCE] }; local
    [all...]
  /external/kernel-headers/original/uapi/linux/
sync_file.h 19 * @name: name of new fence
20 * @fd2: file descriptor of second fence
21 * @fence: returns the fd of the new fence to userspace
28 __s32 fence; member in struct:sync_merge_data
34 * struct sync_fence_info - detailed fence information
37 * @status: status of the fence 0:active 1:signaled <0:error
50 * struct sync_file_info - data returned from fence info ioctl
51 * @name: name of fence
52 * @status: status of fence. 1: signaled 0:active <0:erro
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_buffer.h 40 struct nouveau_fence *fence; member in struct:nv04_resource
nouveau_fence.c 34 nouveau_fence_new(struct nouveau_screen *screen, struct nouveau_fence **fence,
37 *fence = CALLOC_STRUCT(nouveau_fence);
38 if (!*fence)
41 (*fence)->screen = screen;
42 (*fence)->ref = 1;
43 LIST_INITHEAD(&(*fence)->work);
46 nouveau_fence_emit(*fence);
52 nouveau_fence_trigger_work(struct nouveau_fence *fence)
56 LIST_FOR_EACH_ENTRY_SAFE(work, tmp, &fence->work, list) {
64 nouveau_fence_work(struct nouveau_fence *fence,
139 struct nouveau_fence *fence; local
    [all...]
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_screen.h 27 struct nouveau_object *fence; member in struct:nv30_screen
  /external/mesa3d/src/gallium/state_trackers/clover/core/
event.cpp 130 hard_event::fence(pipe_fence_handle *fence) { function in class:hard_event
132 screen->fence_reference(screen, &__fence, fence);
  /external/mesa3d/src/gallium/state_trackers/egl/common/
egl_g3d_sync.c 73 * Insert a fence command to the command stream of the current context.
84 /* insert the fence command */
85 gctx->stctxi->flush(gctx->stctxi, 0x0, &gsync->fence);
86 if (!gsync->fence)
93 * Wait for the fence sync to be signaled.
100 if (gsync->fence) {
104 struct pipe_fence_handle *fence = gsync->fence; local
106 gsync->fence = NULL;
110 screen->fence_finish(screen, fence, PIPE_TIMEOUT_INFINITE)
    [all...]
  /external/skia/tools/gpu/vk/
VkTestContext.cpp 20 * it submits the command buffer with a new fence.
62 VkFence fence; variable
67 GR_VK_CALL_ERRCHECK(fVk, CreateFence(fDevice, &info, nullptr, &fence));
78 GR_VK_CALL_ERRCHECK(fVk, QueueSubmit(fQueue, 1, &submitInfo, fence));
80 return (sk_gpu_test::PlatformFence)fence;
84 VkFence fence = (VkFence)opaqueFence; variable
86 auto result = GR_VK_CALL(fVk, WaitForFences(fDevice, 1, &fence, true, kForever));
91 VkFence fence = (VkFence)opaqueFence; variable
92 GR_VK_CALL(fVk, DestroyFence(fDevice, fence, nullptr));
  /frameworks/av/media/libmedia/omx/1.0/
WOmxBufferSource.cpp 54 hidl_handle fence; local
56 if (!wrapAs(&fence, &fenceNh, fenceParcel)) {
59 "Invalid fence");
63 static_cast<uint32_t>(bufferId), fence));
95 uint32_t buffer, hidl_handle const& fence) {
97 if (!convertTo(&fenceParcelable, fence)) {
  /frameworks/av/media/libstagefright/omx/1.0/
WOmxBufferSource.cpp 54 hidl_handle fence; local
56 if (!wrapAs(&fence, &fenceNh, fenceParcel)) {
59 "Invalid fence");
63 static_cast<uint32_t>(bufferId), fence));
95 uint32_t buffer, hidl_handle const& fence) {
97 if (!convertTo(&fenceParcelable, fence)) {
  /frameworks/native/include/gui/
IGraphicBufferProducer.h 28 #include <ui/Fence.h>
153 // The fence parameter will be updated to hold the fence associated with
155 // fence signals. If the fence is Fence::NO_FENCE, the buffer may be written
197 virtual status_t dequeueBuffer(int* slot, sp<Fence>* fence, uint32_t w,
229 // equivalent to fence from the dequeueBuffer call.
238 sp<Fence>* outFence) = 0
365 sp<Fence> fence; member in struct:android::IGraphicBufferProducer::QueueBufferInput
    [all...]
  /frameworks/native/libs/vr/libbufferhub/
bufferhub_tests.cpp 47 LocalHandle fence; local
48 EXPECT_LE(0, c->Acquire(&fence, &context));
52 EXPECT_LE(0, c2->Acquire(&fence, &context));
61 EXPECT_EQ(0, p->Gain(&fence));
81 LocalHandle fence; local
83 EXPECT_EQ(0, c->Acquire(&fence, &m2));
123 LocalHandle fence; local
125 EXPECT_NE(0, c->Acquire(&fence, &sequence));
139 LocalHandle fence; local
140 EXPECT_EQ(0, c->Acquire(&fence));
151 LocalHandle fence; local
185 LocalHandle fence; local
215 LocalHandle fence; local
    [all...]
  /frameworks/native/services/vr/hardware_composer/tests/
vr_composer_test.cpp 22 ParcelableUniqueFd* /* fence */) override {
40 ParcelableUniqueFd* fence) override {
41 binder::Status status = TestComposerCallback::onNewFrame(frame, fence);
45 fence->set_fence(fd);
85 base::unique_fd fence = composer_->OnNewFrame(frame); local
86 ASSERT_EQ(-1, fence.get());
95 base::unique_fd fence = composer_->OnNewFrame(frame); local
96 ASSERT_EQ(-1, fence.get());
112 .fence = new Fence(eventfd(0, 0))
120 base::unique_fd fence = composer_->OnNewFrame(frame); local
    [all...]
  /prebuilts/ndk/r10/platforms/android-21/arch-arm/usr/include/linux/
sync.h 27 __s32 fence; member in struct:sync_merge_data
  /prebuilts/ndk/r10/platforms/android-21/arch-arm64/usr/include/linux/
sync.h 27 __s32 fence; member in struct:sync_merge_data
  /prebuilts/ndk/r10/platforms/android-21/arch-mips/usr/include/linux/
sync.h 27 __s32 fence; member in struct:sync_merge_data
  /prebuilts/ndk/r10/platforms/android-21/arch-mips64/usr/include/linux/
sync.h 27 __s32 fence; member in struct:sync_merge_data
  /prebuilts/ndk/r10/platforms/android-21/arch-x86/usr/include/linux/
sync.h 27 __s32 fence; member in struct:sync_merge_data
  /prebuilts/ndk/r10/platforms/android-21/arch-x86_64/usr/include/linux/
sync.h 27 __s32 fence; member in struct:sync_merge_data
  /prebuilts/ndk/r10/platforms/android-23/arch-arm/usr/include/linux/
sync.h 27 __s32 fence; member in struct:sync_merge_data
  /prebuilts/ndk/r10/platforms/android-23/arch-arm64/usr/include/linux/
sync.h 27 __s32 fence; member in struct:sync_merge_data
  /prebuilts/ndk/r10/platforms/android-23/arch-mips/usr/include/linux/
sync.h 27 __s32 fence; member in struct:sync_merge_data

Completed in 550 milliseconds

1 23 4 5 6 7 8 91011