Searched refs:thr (Results 1 - 10 of 10) sorted by relevance

/xsrc/external/mit/MesaLib/dist/include/c11/
H A Dthreads_win32.h351 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 Dthreads_posix.h281 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 Dthreads_posix.h281 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 Dthreads_win32.h482 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 Deglcurrent.c298 _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 Deglapi.c271 _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 Deglcurrent.c305 _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 Deglapi.c270 _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 D17.0.3.rst95 - c11/threads: Include thr/xtimec.h for xtime definition when building
/xsrc/external/mit/xf86-input-synaptics/dist/src/
H A Dsynaptics.c731 double velocity, double thr, double acc)
729 SynapticsAccelerationProfile(DeviceIntPtr dev,DeviceVelocityPtr vel,double velocity,double thr,double acc) argument

Completed in 15 milliseconds