/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/ |
A D | pthread_key_create.c | 34 uintptr_t seq = __pthread_keys[cnt].seq; in __pthread_key_create() local 36 if (KEY_UNUSED (seq) && KEY_USABLE (seq) in __pthread_key_create() 38 && ! atomic_compare_and_exchange_bool_acq (&__pthread_keys[cnt].seq, in __pthread_key_create() 39 seq + 1, seq)) in __pthread_key_create()
|
A D | pthread_key_delete.c | 31 unsigned int seq = __pthread_keys[key].seq; in pthread_key_delete() local 33 if (__builtin_expect (! KEY_UNUSED (seq), 1) in pthread_key_delete() 34 && ! atomic_compare_and_exchange_bool_acq (&__pthread_keys[key].seq, in pthread_key_delete() 35 seq + 1, seq)) in pthread_key_delete()
|
A D | pthread_setspecific.c | 34 unsigned int seq; in __pthread_setspecific() local 43 if (KEY_UNUSED ((seq = __pthread_keys[key].seq))) in __pthread_setspecific() 56 || KEY_UNUSED ((seq = __pthread_keys[key].seq))) in __pthread_setspecific() 90 level2->seq = seq; in __pthread_setspecific()
|
A D | pthread_getspecific.c | 59 uintptr_t seq = data->seq; in __pthread_getspecific() local 61 if (__builtin_expect (seq != __pthread_keys[key].seq, 0)) in __pthread_getspecific()
|
A D | DESIGN-condvar.txt | 66 val = seq = cv->wakeup_seq; 87 if (val != seq && cv->woken_seq != val) {
|
/l4re-core-master/uclibc/lib/contrib/uclibc/test/locale-mbwc/ |
A D | tst_types.h | 125 seq[WCSTOK_SEQNUM]; member 149 seq[MBRTOWC_SEQNUM]; member 160 seq[MBRTOWC_SEQNUM]; member 182 seq[MBSRTOWCS_SEQNUM]; member 193 seq[MBSRTOWCS_SEQNUM]; member 213 seq[MBSTOWCS_SEQNUM]; member 236 seq[MBTOWC_SEQNUM]; member 592 seq[WCSTOK_SEQNUM]; member 603 seq[WCSTOK_SEQNUM]; member
|
A D | tst_funcs.h | 77 tst_##func##_loc[ loc ].rec[ rec ].input.seq[ seq_num ] 79 tst_##func##_loc[ loc ].rec[ rec ].expect.seq[ seq_num ] 198 } seq[ _count_ ]; \
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl_db/ |
A D | td_ta_tsd_iter.c | 61 psaddr_t seq, destr; in td_ta_tsd_iter() local 62 err = DB_GET_FIELD_LOCAL (seq, ta, keys, pthread_key_struct, seq, 0); in td_ta_tsd_iter() 65 if (((uintptr_t) seq) & 1) in td_ta_tsd_iter()
|
A D | td_thr_tsd.c | 27 psaddr_t tk_seq, level1, level2, seq, value; in td_thr_tsd() local 82 err = DB_GET_FIELD_LOCAL (seq, th->th_ta_p, copy, pthread_key_data, seq, 0); in td_thr_tsd() 85 if (seq != tk_seq) in td_thr_tsd()
|
A D | structs.def | 61 DB_STRUCT_FIELD (pthread_key_struct, seq) 65 DB_STRUCT_FIELD (pthread_key_data, seq)
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/inet/ |
A D | netlinkaccess.h | 34 uint32_t seq; /* sequential number we used. */ member 42 uint32_t seq; /* The sequence number we use currently. */ member
|
A D | ifaddrs.c | 94 if (h->seq == 0) in __netlink_sendreq() 95 h->seq = time (NULL); in __netlink_sendreq() 101 req.nlh.nlmsg_seq = h->seq; in __netlink_sendreq() 201 h->seq++; in __netlink_request() 216 || nlmh->nlmsg_seq != h->seq) in __netlink_request() 249 nlm_next->seq = h->seq; in __netlink_request() 376 ++nh.seq; in getifaddrs() 399 if ((pid_t) nlh->nlmsg_pid != nh.pid || nlh->nlmsg_seq != nlp->seq) in getifaddrs() 471 if ((pid_t) nlh->nlmsg_pid != nh.pid || nlh->nlmsg_seq != nlp->seq) in getifaddrs()
|
A D | if_index.c | 191 if ((pid_t) nlh->nlmsg_pid != nh.pid || nlh->nlmsg_seq != nlp->seq) 225 if ((pid_t) nlh->nlmsg_pid != nh.pid || nlh->nlmsg_seq != nlp->seq)
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/sysdeps/pthread/ |
A D | pthread_cond_wait.c | 135 unsigned long long int seq; in __pthread_cond_wait() local 136 val = seq = cond->__data.__wakeup_seq; in __pthread_cond_wait() 166 while (val == seq || cond->__data.__woken_seq == val); in __pthread_cond_wait()
|
A D | pthread_cond_timedwait.c | 91 unsigned long long int seq; in __pthread_cond_timedwait() local 92 val = seq = cond->__data.__wakeup_seq; in __pthread_cond_timedwait() 174 if (val != seq && cond->__data.__woken_seq != val) in __pthread_cond_timedwait()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/include/pstl/ |
A D | glue_execution_defs.h | 39 using __pstl::execution::seq;
|
A D | execution_defs.h | 112 constexpr sequenced_policy seq{};
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/include/pstl/ |
A D | glue_execution_defs.h | 40 using __pstl::execution::seq;
|
A D | execution_defs.h | 110 constexpr sequenced_policy seq{};
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/include/pstl/ |
A D | glue_execution_defs.h | 40 using __pstl::execution::seq;
|
A D | execution_defs.h | 110 constexpr sequenced_policy seq{};
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/sysdeps/unix/sysv/linux/ |
A D | internaltypes.h | 118 uintptr_t seq; member
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/src/c++11/ |
A D | debug.cc | 391 if (auto seq = __atomic_load_n(&_M_sequence, __ATOMIC_ACQUIRE)) in _M_detach() local 393 __gnu_cxx::__scoped_lock sentry(get_safe_base_mutex(seq)); in _M_detach() 473 if (auto seq = __atomic_load_n(&_M_sequence, __ATOMIC_ACQUIRE)) in _M_detach() local 475 __gnu_cxx::__scoped_lock sentry(get_safe_base_mutex(seq)); in _M_detach()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/src/c++11/ |
A D | debug.cc | 391 if (auto seq = __atomic_load_n(&_M_sequence, __ATOMIC_ACQUIRE)) in _M_detach() local 393 __gnu_cxx::__scoped_lock sentry(get_safe_base_mutex(seq)); in _M_detach() 476 if (auto seq = __atomic_load_n(&_M_sequence, __ATOMIC_ACQUIRE)) in _M_detach() local 478 __gnu_cxx::__scoped_lock sentry(get_safe_base_mutex(seq)); in _M_detach()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/src/c++11/ |
A D | debug.cc | 391 if (auto seq = __atomic_load_n(&_M_sequence, __ATOMIC_ACQUIRE)) in _M_detach() local 393 __gnu_cxx::__scoped_lock sentry(get_safe_base_mutex(seq)); in _M_detach() 476 if (auto seq = __atomic_load_n(&_M_sequence, __ATOMIC_ACQUIRE)) in _M_detach() local 478 __gnu_cxx::__scoped_lock sentry(get_safe_base_mutex(seq)); in _M_detach()
|