| /xsrc/external/mit/MesaLib/dist/include/c11/ |
| H A D | threads_win32.h | 351 thrd_create(thrd_t *thr, thrd_start_t func, void *arg) argument 355 assert(thr != NULL); 366 *thr = (thrd_t)handle; 413 thrd_detach(thrd_t thr) argument 415 CloseHandle(thr); 436 thrd_join(thrd_t thr, int *res) argument 439 w = WaitForSingleObject(thr, INFINITE); 443 if (!GetExitCodeThread(thr, &code)) { 444 CloseHandle(thr); 449 CloseHandle(thr); [all...] |
| H A D | threads_posix.h | 281 thrd_create(thrd_t *thr, thrd_start_t func, void *arg) argument 284 assert(thr != NULL); 289 if (pthread_create(thr, NULL, impl_thrd_routine, pack) != 0) { 305 thrd_detach(thrd_t thr) argument 307 return (pthread_detach(thr) == 0) ? thrd_success : thrd_error; 326 thrd_join(thrd_t thr, int *res) argument 329 if (pthread_join(thr, &code) != 0)
|
| /xsrc/external/mit/MesaLib.old/dist/include/c11/ |
| H A D | threads_posix.h | 281 thrd_create(thrd_t *thr, thrd_start_t func, void *arg) argument 284 assert(thr != NULL); 289 if (pthread_create(thr, NULL, impl_thrd_routine, pack) != 0) { 305 thrd_detach(thrd_t thr) argument 307 return (pthread_detach(thr) == 0) ? thrd_success : thrd_error; 326 thrd_join(thrd_t thr, int *res) argument 329 if (pthread_join(thr, &code) != 0)
|
| H A D | threads_win32.h | 482 thrd_create(thrd_t *thr, thrd_start_t func, void *arg) argument 486 if (!thr) return thrd_error; 497 *thr = (thrd_t)handle; 544 thrd_detach(thrd_t thr) argument 546 CloseHandle(thr); 567 thrd_join(thrd_t thr, int *res) argument 570 w = WaitForSingleObject(thr, INFINITE); 574 if (!GetExitCodeThread(thr, &code)) { 575 CloseHandle(thr); 580 CloseHandle(thr); [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/egl/main/ |
| H A D | eglcurrent.c | 298 _EGLThreadInfo *thr = _eglGetCurrentThread(); local in function:_eglDebugReport 303 funcName = thr->CurrentFuncName; 320 callback(error, funcName, type, thr->Label, thr->CurrentObjectLabel, 326 /* Note: _eglError() is often called with msg == thr->currentFuncName */
|
| H A D | eglapi.c | 271 _EGLThreadInfo *thr = _eglGetCurrentThread(); local in function:_eglSetFuncName 273 thr->CurrentFuncName = funcName; 274 thr->CurrentObjectLabel = NULL; 277 thr->CurrentObjectLabel = thr->Label; 279 thr->CurrentObjectLabel = disp->Label; 281 thr->CurrentObjectLabel = object->Label;
|
| /xsrc/external/mit/MesaLib/dist/src/egl/main/ |
| H A D | eglcurrent.c | 305 _EGLThreadInfo *thr = _eglGetCurrentThread(); local in function:_eglDebugReport 310 funcName = thr->CurrentFuncName; 327 callback(error, funcName, type, thr->Label, thr->CurrentObjectLabel, 333 /* Note: _eglError() is often called with msg == thr->currentFuncName */
|
| H A D | eglapi.c | 270 _EGLThreadInfo *thr = _eglGetCurrentThread(); local in function:_eglSetFuncName 272 thr->CurrentFuncName = funcName; 273 thr->CurrentObjectLabel = NULL; 276 thr->CurrentObjectLabel = thr->Label; 278 thr->CurrentObjectLabel = disp->Label; 280 thr->CurrentObjectLabel = object->Label;
|
| /xsrc/external/mit/MesaLib/dist/docs/relnotes/ |
| H A D | 17.0.3.rst | 95 - c11/threads: Include thr/xtimec.h for xtime definition when building
|
| /xsrc/external/mit/xf86-input-synaptics/dist/src/ |
| H A D | synaptics.c | 731 double velocity, double thr, double acc) 729 SynapticsAccelerationProfile(DeviceIntPtr dev,DeviceVelocityPtr vel,double velocity,double thr,double acc) argument
|