HomeSort by relevance Sort by last modified time
    Searched refs:fence (Results 26 - 50 of 509) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
api_context.c 67 struct pipe_fence_handle *fence = NULL; local
75 pipe->flush(pipe, &fence);
76 if (fence) {
77 pipe->screen->fence_finish(pipe->screen, fence,
79 pipe->screen->fence_reference(pipe->screen, &fence, NULL);
  /external/mesa3d/src/gallium/drivers/i915/
i915_flush.c 42 struct pipe_fence_handle **fence )
46 /* Only shortcut this if we have no fence, otherwise we must flush the
47 * empty batchbuffer to get our fence back.
49 if (!fence && i915->batch && (i915->batch->map == i915->batch->ptr)) {
55 FLUSH_BATCH(fence);
69 void i915_flush(struct i915_context *i915, struct pipe_fence_handle **fence)
73 batch->iws->batchbuffer_flush(batch, fence);
i915_batch.h 50 #define FLUSH_BATCH(fence) \
51 i915_flush(i915, fence)
56 void i915_flush(struct i915_context *i915, struct pipe_fence_handle **fence);
  /external/mesa3d/src/gallium/state_trackers/vega/
api_context.c 67 struct pipe_fence_handle *fence = NULL; local
75 pipe->flush(pipe, &fence);
76 if (fence) {
77 pipe->screen->fence_finish(pipe->screen, fence,
79 pipe->screen->fence_reference(pipe->screen, &fence, NULL);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_flush.c 47 struct pipe_fence_handle **fence )
99 if (fence)
100 *fence = (void*)(intptr_t)1;
105 struct pipe_fence_handle **fence )
107 softpipe_flush(pipe, SP_FLUSH_TEXTURE_CACHE, fence);
149 struct pipe_fence_handle *fence = NULL; local
154 softpipe_flush(pipe, flush_flags, &fence);
156 if (fence) {
161 pipe->screen->fence_finish(pipe->screen, fence,
163 pipe->screen->fence_reference(pipe->screen, &fence, NULL)
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_flush.c 47 struct pipe_fence_handle **fence )
99 if (fence)
100 *fence = (void*)(intptr_t)1;
105 struct pipe_fence_handle **fence )
107 softpipe_flush(pipe, SP_FLUSH_TEXTURE_CACHE, fence);
149 struct pipe_fence_handle *fence = NULL; local
154 softpipe_flush(pipe, flush_flags, &fence);
156 if (fence) {
161 pipe->screen->fence_finish(pipe->screen, fence,
163 pipe->screen->fence_reference(pipe->screen, &fence, NULL)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_flush.c 43 * \param fence if non-null, returns pointer to a fence which can be waited on
47 struct pipe_fence_handle **fence,
55 lp_setup_flush(llvmpipe->setup, fence, reason);
81 struct pipe_fence_handle *fence = NULL; local
82 llvmpipe_flush(pipe, &fence, reason);
83 if (fence) {
84 pipe->screen->fence_finish(pipe->screen, fence, PIPE_TIMEOUT_INFINITE);
85 pipe->screen->fence_reference(pipe->screen, &fence, NULL);
lp_query.h 46 struct lp_fence *fence; /* fence from last scene this was binned in */ member in struct:llvmpipe_query
lp_query.c 70 if (pq->fence) {
71 if (!lp_fence_issued(pq->fence))
74 if (!lp_fence_signalled(pq->fence))
75 lp_fence_wait(pq->fence);
77 lp_fence_reference(&pq->fence, NULL);
94 if (!pq->fence) {
95 /* no fence because there was no scene, so results is zero */
100 if (!lp_fence_signalled(pq->fence)) {
101 if (!lp_fence_issued(pq->fence))
107 lp_fence_wait(pq->fence);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_flush.c 80 struct pipe_fence_handle **fence )
86 st->pipe->flush( st->pipe, fence );
95 struct pipe_fence_handle *fence = NULL; local
97 st_flush(st, &fence);
99 if(fence) {
100 st->pipe->screen->fence_finish(st->pipe->screen, fence,
102 st->pipe->screen->fence_reference(st->pipe->screen, &fence, NULL);
st_cb_flush.h 44 struct pipe_fence_handle **fence);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_flush.c 43 * \param fence if non-null, returns pointer to a fence which can be waited on
47 struct pipe_fence_handle **fence,
55 lp_setup_flush(llvmpipe->setup, fence, reason);
81 struct pipe_fence_handle *fence = NULL; local
82 llvmpipe_flush(pipe, &fence, reason);
83 if (fence) {
84 pipe->screen->fence_finish(pipe->screen, fence, PIPE_TIMEOUT_INFINITE);
85 pipe->screen->fence_reference(pipe->screen, &fence, NULL);
lp_query.h 46 struct lp_fence *fence; /* fence from last scene this was binned in */ member in struct:llvmpipe_query
  /external/mesa3d/src/mesa/state_tracker/
st_cb_flush.c 80 struct pipe_fence_handle **fence )
86 st->pipe->flush( st->pipe, fence );
95 struct pipe_fence_handle *fence = NULL; local
97 st_flush(st, &fence);
99 if(fence) {
100 st->pipe->screen->fence_finish(st->pipe->screen, fence,
102 st->pipe->screen->fence_reference(st->pipe->screen, &fence, NULL);
st_cb_flush.h 44 struct pipe_fence_handle **fence);
  /hardware/intel/common/libwsbm/src/
wsbm_fencemgr.h 43 * Do a quick check to see if the fence manager has registered the fence
47 extern uint32_t wsbmFenceSignaledTypeCached(struct _WsbmFenceObject *fence);
50 * Check if the fence object is signaled. This function can be substantially
55 extern int wsbmFenceSignaledType(struct _WsbmFenceObject *fence,
63 wsbmFenceSignaled(struct _WsbmFenceObject *fence, uint32_t flush_type)
66 int ret = wsbmFenceSignaledType(fence, flush_type, &signaled_types);
74 wsbmFenceSignaledCached(struct _WsbmFenceObject *fence, uint32_t flush_type)
76 uint32_t signaled_types = wsbmFenceSignaledTypeCached(fence);
82 * Reference a fence object
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_batch.h 50 #define FLUSH_BATCH(fence) \
51 i915_flush(i915, fence)
56 void i915_flush(struct i915_context *i915, struct pipe_fence_handle **fence);
  /bionic/libc/kernel/uapi/linux/
sw_sync.h 26 __s32 fence; member in struct:sw_sync_create_fence_data
  /development/ndk/platforms/android-L/include/linux/
sw_sync.h 26 __s32 fence; member in struct:sw_sync_create_fence_data
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_pipe_flush.c 35 struct pipe_fence_handle **fence )
45 svga_context_flush(svga, fence);
48 __FUNCTION__, fence ? *fence : 0x0);
  /external/kernel-headers/original/uapi/linux/
sw_sync.h 23 __s32 fence; /* fd of new fence */ member in struct:sw_sync_create_fence_data
  /external/mesa3d/src/gallium/drivers/svga/
svga_pipe_flush.c 35 struct pipe_fence_handle **fence )
45 svga_context_flush(svga, fence);
48 __FUNCTION__, fence ? *fence : 0x0);
  /prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/linux/
sw_sync.h 26 __s32 fence; member in struct:sw_sync_create_fence_data
  /prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/linux/
sw_sync.h 26 __s32 fence; member in struct:sw_sync_create_fence_data
  /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/linux/
sw_sync.h 26 __s32 fence; member in struct:sw_sync_create_fence_data

Completed in 647 milliseconds

12 3 4 5 6 7 8 91011>>