Searched refs:c (Results 1 – 3 of 3) sorted by relevance
28 __atomic_wide_counter_load_relaxed (__atomic_wide_counter *c) in __atomic_wide_counter_load_relaxed() argument30 return atomic_load_relaxed (&c->__value64); in __atomic_wide_counter_load_relaxed()34 __atomic_wide_counter_load_acquire (__atomic_wide_counter *c) in __atomic_wide_counter_load_acquire() argument36 return atomic_load_acquire (&c->__value64); in __atomic_wide_counter_load_acquire()43 return atomic_fetch_add_relaxed (&c->__value64, val); in __atomic_wide_counter_fetch_add_relaxed()50 return atomic_fetch_add_acquire (&c->__value64, val); in __atomic_wide_counter_fetch_add_acquire()54 __atomic_wide_counter_add_relaxed (__atomic_wide_counter *c, in __atomic_wide_counter_add_relaxed() argument57 atomic_store_relaxed (&c->__value64, in __atomic_wide_counter_add_relaxed()65 return atomic_fetch_xor_release (&c->__value64, val); in __atomic_wide_counter_fetch_xor_release()76 uint64_t r = __atomic_wide_counter_load_relaxed (c); in __atomic_wide_counter_load_acquire()[all …]
60 # define isdigit(c) ({ int __c = (c); __c >= '0' && __c <= '9'; }) argument62 # define isdigit_l(c, l) ({ int __c = (c); __c >= '0' && __c <= '9'; }) argument64 # define __isdigit_l(c, l) ({ int __c = (c); __c >= '0' && __c <= '9'; }) argument
66 # define iswdigit(c) ({ wint_t __c = (c); __c >= L'0' && __c <= L'9'; }) argument68 # define iswdigit_l(c, l) ({ wint_t __c = (c); __c >= L'0' && __c <= L'9'; }) argument70 # define __iswdigit_l(c, l) ({ wint_t __c = (c); __c >= L'0' && __c <= L'9'; }) argument
Completed in 7 milliseconds