| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/nine/ |
| H A D | threadpool.c | 145 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 D | threadpool.c | 145 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 D | drmsl.c | 64 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 D | present_event.c | 32 present_event_ptr *previous, current; local in function:present_free_event 34 for (previous = &window_priv->events; (current = *previous); previous = ¤t->next) { 36 *previous = present_event->next;
|
| /xsrc/external/mit/MesaLib.old/dist/src/glx/apple/ |
| H A D | apple_glx_drawable.c | 150 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 D | apple_glx_context.h | 70 struct apple_glx_context *previous, *next; member in struct:apple_glx_context
|
| H A D | apple_glx_context.c | 196 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 D | apple_glx_drawable.h | 139 /*END*/ struct apple_glx_drawable *previous, *next; member in struct:apple_glx_drawable
|
| /xsrc/external/mit/MesaLib/dist/src/glx/apple/ |
| H A D | apple_glx_drawable.c | 150 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 D | apple_glx_context.h | 70 struct apple_glx_context *previous, *next; member in struct:apple_glx_context
|
| H A D | apple_glx_context.c | 195 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 D | apple_glx_drawable.h | 139 /*END*/ struct apple_glx_drawable *previous, *next; member in struct:apple_glx_drawable
|
| /xsrc/external/mit/freetype/dist/builds/ |
| H A D | link_dos.mk | 21 # build the library with the previous variables defined.
|
| H A D | link_std.mk | 21 # build the library with the previous variables defined.
|
| /xsrc/external/mit/MesaLib/dist/bin/pick/ |
| H A D | core.py | 307 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 D | unix.mk | 34 # build the library with the previous variables defined.
|
| /xsrc/external/mit/MesaLib/dist/docs/relnotes/ |
| H A D | 10.1.rst | 5 stability and reliability should stick with a previous release or wait
|
| H A D | 6.4.1.rst | 29 - OSMesa demos were missing from previous release tarballs
|
| H A D | 7.7.rst | 5 stability and reliability should stick with a previous release or wait
|
| H A D | 7.8.1.rst | 8 reliability should stick with a previous release, such as 7.7.1, or wait
|
| H A D | 7.8.rst | 5 stability and reliability should stick with a previous release or wait
|
| H A D | 8.0.rst | 5 stability and reliability should stick with a previous release or wait
|
| H A D | 9.0.rst | 5 stability and reliability should stick with a previous release or wait
|
| H A D | 9.1.rst | 5 stability and reliability should stick with a previous release or wait
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/ |
| H A D | si_query.c | 526 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...] |