Searched refs:previous (Results 1 - 25 of 274) sorted by relevance

1234567891011

/xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/nine/
H A Dthreadpool.c145 struct threadpool_task *task, *previous; local in function:_mesa_threadpool_queue_task
168 previous = pool->workqueue;
169 while (previous && previous->next)
170 previous = previous->next;
172 previous->next = task;
/xsrc/external/mit/MesaLib/dist/src/gallium/frontends/nine/
H A Dthreadpool.c145 struct threadpool_task *task, *previous; local in function:_mesa_threadpool_queue_task
168 previous = pool->workqueue;
169 while (previous && previous->next)
170 previous = previous->next;
172 previous->next = task;
/xsrc/external/mit/libdrm/dist/tests/
H A Ddrmsl.c64 unsigned long previous; local in function:do_time
79 previous = 0;
82 if (key <= previous) {
83 printf( "%lu !< %lu\n", previous, key);
85 previous = key;
/xsrc/external/mit/xorg-server/dist/present/
H A Dpresent_event.c32 present_event_ptr *previous, current; local in function:present_free_event
34 for (previous = &window_priv->events; (current = *previous); previous = &current->next) {
36 *previous = present_event->next;
/xsrc/external/mit/MesaLib.old/dist/src/glx/apple/
H A Dapple_glx_drawable.c150 if (d->previous) {
151 d->previous->next = d->next;
156 * has no previous pointer.
162 d->next->previous = d->previous;
296 d->previous = NULL;
309 drawables_list->previous = agd;
H A Dapple_glx_context.h70 struct apple_glx_context *previous, *next; member in struct:apple_glx_context
H A Dapple_glx_context.c196 context_list->previous = ac;
198 ac->previous = NULL;
235 if (ac->previous) {
236 ac->previous->next = ac->next;
243 ac->next->previous = ac->previous;
H A Dapple_glx_drawable.h139 /*END*/ struct apple_glx_drawable *previous, *next; member in struct:apple_glx_drawable
/xsrc/external/mit/MesaLib/dist/src/glx/apple/
H A Dapple_glx_drawable.c150 if (d->previous) {
151 d->previous->next = d->next;
156 * has no previous pointer.
162 d->next->previous = d->previous;
296 d->previous = NULL;
309 drawables_list->previous = agd;
H A Dapple_glx_context.h70 struct apple_glx_context *previous, *next; member in struct:apple_glx_context
H A Dapple_glx_context.c195 context_list->previous = ac;
197 ac->previous = NULL;
234 if (ac->previous) {
235 ac->previous->next = ac->next;
242 ac->next->previous = ac->previous;
H A Dapple_glx_drawable.h139 /*END*/ struct apple_glx_drawable *previous, *next; member in struct:apple_glx_drawable
/xsrc/external/mit/freetype/dist/builds/
H A Dlink_dos.mk21 # build the library with the previous variables defined.
H A Dlink_std.mk21 # build the library with the previous variables defined.
/xsrc/external/mit/MesaLib/dist/bin/pick/
H A Dcore.py307 async def resolve_fixes(commits: typing.List['Commit'], previous: typing.List['Commit']) -> None:
316 shas: typing.Set[str] = set(c.sha for c in previous if c.nominated)
341 async def gather_commits(version: str, previous: typing.List['Commit'],
365 await resolve_fixes(commits, previous)
/xsrc/external/mit/freetype/dist/builds/unix/
H A Dunix.mk34 # build the library with the previous variables defined.
/xsrc/external/mit/MesaLib/dist/docs/relnotes/
H A D10.1.rst5 stability and reliability should stick with a previous release or wait
H A D6.4.1.rst29 - OSMesa demos were missing from previous release tarballs
H A D7.7.rst5 stability and reliability should stick with a previous release or wait
H A D7.8.1.rst8 reliability should stick with a previous release, such as 7.7.1, or wait
H A D7.8.rst5 stability and reliability should stick with a previous release or wait
H A D8.0.rst5 stability and reliability should stick with a previous release or wait
H A D9.0.rst5 stability and reliability should stick with a previous release or wait
H A D9.1.rst5 stability and reliability should stick with a previous release or wait
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/
H A Dsi_query.c526 struct si_query_buffer *prev = buffer->previous;
531 prev = prev->previous;
542 while (buffer->previous) {
543 struct si_query_buffer *qbuf = buffer->previous;
544 buffer->previous = qbuf->previous;
575 buffer->previous = qbuf;
946 return; // previous buffer allocation failure
1035 for (qbuf = &query->buffer; qbuf; qbuf = qbuf->previous) {
1404 for (qbuf = &query->buffer; qbuf; qbuf = qbuf->previous) {
[all...]

Completed in 13 milliseconds

1234567891011