Searched refs:condattr (Results 1 - 8 of 8) sorted by relevance
| /xsrc/external/mit/MesaLib/dist/src/util/ |
| H A D | cnd_monotonic.h | 57 pthread_condattr_t condattr; local in function:u_cnd_monotonic_init 58 if (pthread_condattr_init(&condattr) == 0) { 59 if ((pthread_condattr_setclock(&condattr, CLOCK_MONOTONIC) == 0) && 60 (pthread_cond_init(&cond->cond, &condattr) == 0)) { 64 pthread_condattr_destroy(&condattr);
|
| /xsrc/external/mit/MesaLib.old/dist/src/vulkan/wsi/ |
| H A D | wsi_common_queue.h | 51 pthread_condattr_t condattr; local in function:wsi_queue_init 52 ret = pthread_condattr_init(&condattr); 56 ret = pthread_condattr_setclock(&condattr, CLOCK_MONOTONIC); 60 ret = pthread_cond_init(&queue->cond, &condattr); 68 pthread_condattr_destroy(&condattr); 74 pthread_condattr_destroy(&condattr);
|
| H A D | wsi_common_display.c | 1794 pthread_condattr_t condattr; local in function:wsi_init_pthread_cond_monotonic 1797 if (pthread_condattr_init(&condattr) != 0) 1800 if (pthread_condattr_setclock(&condattr, CLOCK_MONOTONIC) != 0) 1803 if (pthread_cond_init(cond, &condattr) != 0) 1810 pthread_condattr_destroy(&condattr);
|
| /xsrc/external/mit/MesaLib/dist/src/vulkan/wsi/ |
| H A D | wsi_common_queue.h | 49 pthread_condattr_t condattr; local in function:wsi_queue_init 50 ret = pthread_condattr_init(&condattr); 54 ret = pthread_condattr_setclock(&condattr, CLOCK_MONOTONIC); 58 ret = pthread_cond_init(&queue->cond, &condattr); 66 pthread_condattr_destroy(&condattr); 72 pthread_condattr_destroy(&condattr);
|
| H A D | wsi_common_display.c | 1866 pthread_condattr_t condattr; local in function:wsi_init_pthread_cond_monotonic 1869 if (pthread_condattr_init(&condattr) != 0) 1872 if (pthread_condattr_setclock(&condattr, CLOCK_MONOTONIC) != 0) 1875 if (pthread_cond_init(cond, &condattr) != 0) 1882 pthread_condattr_destroy(&condattr);
|
| /xsrc/external/mit/MesaLib/dist/src/freedreno/vulkan/ |
| H A D | tu_device.c | 1602 pthread_condattr_t condattr; local in function:tu_CreateDevice 1603 if (pthread_condattr_init(&condattr) != 0) { 1606 "pthread condattr init"); 1609 if (pthread_condattr_setclock(&condattr, CLOCK_MONOTONIC) != 0) { 1610 pthread_condattr_destroy(&condattr); 1613 "pthread condattr clock setup"); 1616 if (pthread_cond_init(&device->timeline_cond, &condattr) != 0) { 1617 pthread_condattr_destroy(&condattr); 1623 pthread_condattr_destroy(&condattr);
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/ |
| H A D | anv_device.c | 2265 pthread_condattr_t condattr; local in function:anv_CreateDevice 2266 if (pthread_condattr_init(&condattr) != 0) { 2270 if (pthread_condattr_setclock(&condattr, CLOCK_MONOTONIC) != 0) { 2271 pthread_condattr_destroy(&condattr); 2275 if (pthread_cond_init(&device->queue_submit, &condattr) != 0) { 2276 pthread_condattr_destroy(&condattr); 2280 pthread_condattr_destroy(&condattr);
|
| /xsrc/external/mit/MesaLib/dist/src/intel/vulkan/ |
| H A D | anv_device.c | 3117 pthread_condattr_t condattr; local in function:anv_CreateDevice 3118 if (pthread_condattr_init(&condattr) != 0) { 3122 if (pthread_condattr_setclock(&condattr, CLOCK_MONOTONIC) != 0) { 3123 pthread_condattr_destroy(&condattr); 3127 if (pthread_cond_init(&device->queue_submit, &condattr) != 0) { 3128 pthread_condattr_destroy(&condattr); 3132 pthread_condattr_destroy(&condattr);
|
Completed in 22 milliseconds