Home
last modified time | relevance | path

Searched refs:seq (Results 1 – 7 of 7) sorted by relevance

/nptl/
A Dpthread_key_create.c29 uintptr_t seq = __pthread_keys[cnt].seq; in ___pthread_key_create() local
31 if (KEY_UNUSED (seq) && KEY_USABLE (seq) in ___pthread_key_create()
33 && ! atomic_compare_and_exchange_bool_acq (&__pthread_keys[cnt].seq, in ___pthread_key_create()
34 seq + 1, seq)) in ___pthread_key_create()
A Dpthread_key_delete.c30 unsigned int seq = __pthread_keys[key].seq; in ___pthread_key_delete() local
32 if (__builtin_expect (! KEY_UNUSED (seq), 1) in ___pthread_key_delete()
33 && ! atomic_compare_and_exchange_bool_acq (&__pthread_keys[key].seq, in ___pthread_key_delete()
34 seq + 1, seq)) in ___pthread_key_delete()
A Dpthread_setspecific.c30 unsigned int seq; in ___pthread_setspecific() local
39 if (KEY_UNUSED ((seq = __pthread_keys[key].seq))) in ___pthread_setspecific()
52 || KEY_UNUSED ((seq = __pthread_keys[key].seq))) in ___pthread_setspecific()
86 level2->seq = seq; in ___pthread_setspecific()
A Dpthread_getspecific.c57 uintptr_t seq = data->seq; in ___pthread_getspecific() local
59 if (__glibc_unlikely (seq != __pthread_keys[key].seq)) in ___pthread_getspecific()
A Dpthread_cond_wait.c78 __condvar_cancel_waiting (pthread_cond_t *cond, uint64_t seq, unsigned int g, in __condvar_cancel_waiting() argument
88 if (g1_start > seq) in __condvar_cancel_waiting()
96 if (g1_start + __condvar_get_orig_size (cond) <= seq) in __condvar_cancel_waiting()
405 uint64_t seq = wseq >> 1; in __pthread_cond_wait_common() local
422 __condvar_cancel_waiting (cond, seq, g, private); in __pthread_cond_wait_common()
453 if (seq < (__condvar_load_g1_start_relaxed (cond) >> 1)) in __pthread_cond_wait_common()
486 || (seq < (__condvar_load_g1_start_relaxed (cond) >> 1))) in __pthread_cond_wait_common()
516 __condvar_cancel_waiting (cond, seq, g, private); in __pthread_cond_wait_common()
540 if (seq < (g1_start >> 1)) in __pthread_cond_wait_common()
A Dnptl_deallocate_tsd.c67 if (level2[inner].seq in __nptl_deallocate_tsd()
68 == __pthread_keys[idx].seq in __nptl_deallocate_tsd()
A Ddescr.h305 uintptr_t seq; member

Completed in 7 milliseconds