HomeSort by relevance Sort by last modified time
    Searched defs:fenced (Results 1 - 3 of 3) sorted by null

  /external/mesa3d/src/gallium/auxiliary/pipebuffer/
pb_buffer_fenced.c 30 * Implementation of fenced buffers.
87 * Fenced buffer list.
89 * All fenced buffers are placed in this listed, ordered from the oldest
92 struct list_head fenced; member in struct:fenced_manager
106 * Fenced buffer.
192 * Dump the fenced buffer list.
221 curr = fenced_mgr->fenced.next;
223 while (curr != &fenced_mgr->fenced) {
265 * Add the buffer to the fenced list.
282 LIST_ADDTAIL(&fenced_buf->head, &fenced_mgr->fenced);
    [all...]
  /external/mesa3d/src/gallium/winsys/svga/drm/
pb_buffer_simple_fenced.c 30 * Implementation of fenced buffers.
76 * Fenced buffer list.
78 * All fenced buffers are placed in this listed, ordered from the oldest
81 struct list_head fenced; member in struct:fenced_manager
91 * Fenced buffer.
156 * Dump the fenced buffer list.
185 curr = fenced_mgr->fenced.next;
187 while(curr != &fenced_mgr->fenced) {
228 * Add the buffer to the fenced list.
245 LIST_ADDTAIL(&fenced_buf->head, &fenced_mgr->fenced);
    [all...]
  /external/libdrm/intel/
intel_bufmgr_fake.c 94 * fenced.
98 * Marks that the block is currently fenced (being used by rendering)
101 unsigned fenced:1; member in struct:block
125 * fenced yet.
132 struct block fenced; member in struct:_bufmgr_fake
461 block->on_hardware, block->fenced);
479 } else if (block->fenced) {
586 * Removes all objects from the fenced list older than the given fence.
595 DRMLISTFOREACHSAFE(block, tmp, &bufmgr_fake->fenced) {
596 assert(block->fenced);
    [all...]

Completed in 487 milliseconds