Home
last modified time | relevance | path

Searched refs:p_attr (Results 1 – 2 of 2) sorted by relevance

/external/igt-gpu-tools/tools/
Dintel_guc_logger.c230 pthread_attr_t p_attr; in init_flusher_thread() local
237 ret = pthread_attr_init(&p_attr); in init_flusher_thread()
240 ret = pthread_attr_setinheritsched(&p_attr, PTHREAD_EXPLICIT_SCHED); in init_flusher_thread()
243 ret = pthread_attr_setschedpolicy(&p_attr, SCHED_RR); in init_flusher_thread()
251 ret = pthread_attr_setschedparam(&p_attr, &thread_sched); in init_flusher_thread()
254 ret = pthread_create(&flush_thread, &p_attr, flusher, NULL); in init_flusher_thread()
257 ret = pthread_attr_destroy(&p_attr); in init_flusher_thread()
/external/python/cpython3/Modules/_decimal/tests/
Ddeccheck.py980 p_attr = set(dir(p_cls))
981 intersect = c_attr & p_attr
984 funcdict['p_only'] = tuple(sorted(p_attr-intersect))