HomeSort by: relevance | last modified time | path
    Searched defs:work (Results 1 - 25 of 30) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/
swr_fence.h 46 } work; member in struct:swr_fence
swr_fence_work.cpp 31 * Called by swr_fence_cb to complete the work queue
36 struct swr_fence_work *work, *tmp; local
38 if (fence->work.head.next) {
39 work = fence->work.head.next;
40 /* Immediately clear the head so any new work gets added to a new work
42 p_atomic_set(&fence->work.head.next, 0);
43 p_atomic_set(&fence->work.tail, &fence->work.head)
125 struct swr_fence_work *work = CALLOC_STRUCT(swr_fence_work); local
143 struct swr_fence_work *work = CALLOC_STRUCT(swr_fence_work); local
158 struct swr_fence_work *work = CALLOC_STRUCT(swr_fence_work); local
173 struct swr_fence_work *work = CALLOC_STRUCT(swr_fence_work); local
188 struct swr_fence_work *work = CALLOC_STRUCT(swr_fence_work); local
204 struct swr_fence_work *work = CALLOC_STRUCT(swr_fence_work); local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/nine/
threadpool.h 46 threadpool_task_func work; member in struct:threadpool_task
swapchain9.c 685 struct end_present_struct *work = data; local
686 if (work->fence_to_wait) {
687 (void) work->screen->fence_finish(work->screen, NULL, work->fence_to_wait, PIPE_TIMEOUT_INFINITE);
688 work->screen->fence_reference(work->screen, &(work->fence_to_wait), NULL);
690 ID3DPresent_PresentBuffer(work->present, work->present_handle, work->hDestWindowOverride, NULL, NULL, NULL, 0)
699 struct end_present_struct *work = calloc(1, sizeof(struct end_present_struct)); local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/
swr_fence.h 46 } work; member in struct:swr_fence
swr_fence_work.cpp 31 * Called by swr_fence_cb to complete the work queue
36 struct swr_fence_work *work, *tmp; local
38 if (fence->work.head.next) {
39 work = fence->work.head.next;
40 /* Immediately clear the head so any new work gets added to a new work
42 p_atomic_set(&fence->work.head.next, 0);
43 p_atomic_set(&fence->work.tail, &fence->work.head)
112 struct swr_fence_work *work = CALLOC_STRUCT(swr_fence_work); local
130 struct swr_fence_work *work = CALLOC_STRUCT(swr_fence_work); local
145 struct swr_fence_work *work = CALLOC_STRUCT(swr_fence_work); local
160 struct swr_fence_work *work = CALLOC_STRUCT(swr_fence_work); local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/nine/
threadpool.h 46 threadpool_task_func work; member in struct:threadpool_task
swapchain9.c 685 struct end_present_struct *work = data; local
686 if (work->fence_to_wait) {
687 (void) work->screen->fence_finish(work->screen, NULL, work->fence_to_wait, PIPE_TIMEOUT_INFINITE);
688 work->screen->fence_reference(work->screen, &(work->fence_to_wait), NULL);
690 ID3DPresent_PresentBuffer(work->present, work->present_handle, work->hDestWindowOverride, NULL, NULL, NULL, 0)
699 struct end_present_struct *work = calloc(1, sizeof(struct end_present_struct)); local
    [all...]
  /xsrc/external/mit/glu/dist/src/libnurbs/internals/
displaylist.h 50 PFVS work; member in struct:Dlnode
59 work = _work;
70 void append( PFVS work, void *arg, PFVS cleanup );
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/
nouveau_fence.h 29 struct list_head work; member in struct:nouveau_fence
nouveau_fence.c 41 list_inithead(&(*fence)->work);
49 struct nouveau_fence_work *work, *tmp; local
51 LIST_FOR_EACH_ENTRY_SAFE(work, tmp, &fence->work, list) {
52 work->func(work->data);
53 list_del(&work->list);
54 FREE(work);
103 if (!list_is_empty(&fence->work)) {
104 debug_printf("WARNING: deleting fence with work still pending !\n")
272 struct nouveau_fence_work *work; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/
nouveau_fence.h 29 struct list_head work; member in struct:nouveau_fence
nouveau_fence.c 41 LIST_INITHEAD(&(*fence)->work);
49 struct nouveau_fence_work *work, *tmp; local
51 LIST_FOR_EACH_ENTRY_SAFE(work, tmp, &fence->work, list) {
52 work->func(work->data);
53 LIST_DEL(&work->list);
54 FREE(work);
103 if (!LIST_IS_EMPTY(&fence->work)) {
104 debug_printf("WARNING: deleting fence with work still pending !\n")
256 struct nouveau_fence_work *work; local
    [all...]
  /xsrc/external/mit/freetype/dist/builds/
toplevel.mk 175 work := $(strip $(shell $(CAT) \ macro
177 work := $(subst |,x,$(work)) macro
178 work := $(subst $(space),|,$(work)) macro
179 work := $(subst \#define|FREETYPE_MAJOR|,$(space),$(work)) macro
180 work := $(word 2,$(work)) macro
181 major := $(subst |,$(space),$(work))
184 work := $(subst \\#define|FREETYPE_MINOR|,$(space),$(work)) macro
185 work := $(word 2,$(work)) macro
189 work := $(subst \\#define|FREETYPE_PATCH|,$(space),$(work)) macro
190 work := $(word 2,$(work)) macro
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
lp_cs_tpool.h 27 * It allows the queuing of a number of tasks per work item.
28 * The item is added to the work queue once, but it must execute
62 lp_cs_tpool_task_func work; member in struct:lp_cs_tpool_task
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/
si_nir_optim.c 58 nir_instr_worklist *work = nir_instr_worklist_create(); local
61 add_src_instr_to_worklist(&store->src[0], work);
63 nir_foreach_instr_in_worklist(instr, work) {
73 if (!nir_foreach_src(instr, add_src_instr_to_worklist, work))
90 nir_instr_worklist_destroy(work);
  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
nir_phi_builder.c 42 unsigned *work; member in struct:nir_phi_builder
110 pb->work = rzalloc_array(pb, unsigned, pb->num_blocks);
136 if (pb->work[i] < pb->iter_count)
138 pb->work[i] = pb->iter_count;
163 if (pb->work[next->index] < pb->iter_count) {
164 pb->work[next->index] = pb->iter_count;
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
nir_phi_builder.c 42 unsigned *work; member in struct:nir_phi_builder
110 pb->work = rzalloc_array(pb, unsigned, pb->num_blocks);
137 if (pb->work[i] < pb->iter_count)
139 pb->work[i] = pb->iter_count;
164 if (pb->work[next->index] < pb->iter_count) {
165 pb->work[next->index] = pb->iter_count;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/core/core/
frontend.cpp 62 BE_WORK work; local
63 work.type = SYNC;
64 work.pfnWork = ProcessSyncBE;
67 pTileMgr->enqueue(0, 0, &work);
78 BE_WORK work; local
79 work.type = SHUTDOWN;
80 work.pfnWork = ProcessShutdownBE;
83 // Enqueue at least 1 work item for each worker thread
91 pTileMgr->enqueue(i, n, &work);
115 BE_WORK work; local
150 BE_WORK work; local
204 BE_WORK work; local
    [all...]
binner.cpp 347 /// @param oneTileMask - defines triangles for ER to work on
1117 BE_WORK work; local
1118 work.type = DRAW;
1125 work.pfnWork =
1139 work.pfnWork = pfnWork;
1149 TRIANGLE_WORK_DESC& desc = work.desc.tri;
1189 pTileMgr->enqueue(x, y, &work);
1358 BE_WORK work; local
1359 work.type = DRAW;
1361 TRIANGLE_WORK_DESC& desc = work.desc.tri
1514 BE_WORK work; local
1814 BE_WORK work; local
    [all...]
  /xsrc/external/mit/MesaGLUT/dist/src/glut/glx/
glut_event.c 61 to work on an HP 715. It would be better if HP generated
195 /* Update work mask and add to window work list. */
199 not be the head of the work list. */
989 /* Capture work mask for work that needs to be done to this
990 window, then clear the window's work mask (excepting the
991 dummy work bit, see below). Then, process the captured
992 work mask. This allows callbacks in the processing the
993 captured work mask to set the window's work mask fo
1353 GLUTwindow *remainder, *work; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/codegen/
nv50_ir_ssa.cpp 338 int *work = &hasAlready[allBBlocks.getSize()]; local
361 if (work[bb->getId()] == iterCount)
363 work[bb->getId()] = iterCount;
392 if (work[dfBB->getId()] < iterCount) {
393 work[dfBB->getId()] = iterCount;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/codegen/
nv50_ir_ssa.cpp 338 int *work = &hasAlready[allBBlocks.getSize()]; local
361 if (work[bb->getId()] == iterCount)
363 work[bb->getId()] = iterCount;
392 if (work[dfBB->getId()] < iterCount) {
393 work[dfBB->getId()] = iterCount;
  /xsrc/external/mit/MesaLib/dist/src/compiler/spirv/
vtn_cfg.c 488 struct vtn_cfg_work_item *work = ralloc(b, struct vtn_cfg_work_item); local
489 work->cf_parent = cf_parent;
490 work->cf_list = cf_list;
491 work->start_block = start_block;
492 list_addtail(&work->link, work_list);
651 /* Note: The work item for the main loop body will start with the
855 struct vtn_cfg_work_item *work = local
857 list_del(&work->link);
859 for (struct vtn_block *block = work->start_block; block; ) {
860 block = vtn_process_block(b, &work_list, work->cf_parent
    [all...]
  /xsrc/external/mit/xorg-server/dist/hw/xwin/glx/
indirect.c 52 - XGetImage() doesn't work on pixmaps; need to do more work to make the format and location
668 but it doesn't work usefully, so we have to be prepared for it
1161 2) Applications may assume that visuals selected with glXChooseVisual() work with
1164 (it's arguable this is an error in the application, but we try to make it work)
1445 * feature so just error out if it can't work.
1843 GLXWinConfig *work; local
2011 work = malloc(sizeof(GLXWinConfig));
2012 if (NULL == work) {
2016 *work = temp
2155 GLXWinConfig *work; local
    [all...]

Completed in 21 milliseconds

1 2