Searched refs:__oldval (Results 1 – 11 of 11) sorted by relevance
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/ia64/bits/ |
A D | atomic.h | 87 ({ __typeof (*mem) __oldval, __val; \ 93 __oldval = __val; \ 97 __oldval); \ 99 while (unlikely (__val != __oldval)); \ 100 __oldval; }) 103 ({ __typeof (*mem) __oldval, __val; \ 110 __oldval = __val; \ 112 __oldval | __mask, \ 113 __oldval); \ 115 while (unlikely (__val != __oldval)); \ [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/avr32/bits/ |
A D | atomic.h | 54 __typeof__(*(mem)) __oldval; \ 58 : [old] "=&r"(__oldval) \ 61 __oldval; \ 66 __typeof__(*(mem)) __oldval, __tmp; \ 74 : [old] "=&r"(__oldval), [tmp] "=&r"(__tmp), \ 78 __oldval; \ 83 __typeof__(*(mem)) __oldval, __tmp; \ 93 : [old] "=&r"(__oldval), [tmp] "=&r"(__tmp), \ 97 __oldval; \
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/i386/bits/ |
A D | atomic.h | 193 __typeof (*mem) __oldval = *__memp; \ 196 __tmpval = __oldval; \ 197 while ((__oldval = __arch_compare_and_exchange_val_64_acq \ 198 (__memp, __oldval + __addval, __oldval)) == __tmpval); \ 257 __typeof (*mem) __oldval = *__memp; \ 260 __tmpval = __oldval; \ 261 while ((__oldval = __arch_compare_and_exchange_val_64_acq \ 262 (__memp, __oldval + 1, __oldval)) == __tmpval); \ 302 __typeof (*mem) __oldval = *__memp; \ 305 __tmpval = __oldval; \ [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads.old/sysdeps/x86_64/ |
A D | pt-machine.h | 64 __compare_and_swap (long int *__p, long int __oldval, long int __newval) in __compare_and_swap() argument 71 : "r" (__newval), "m" (*__p), "a" (__oldval) in __compare_and_swap()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/sysdeps/unix/sysv/linux/arm/ |
A D | lowlevellock.h | 225 int __oldval = atomic_exchange_rel (__futex, 0); \ 226 if (__builtin_expect (__oldval > 1, 0)) \ 235 int __oldval = atomic_exchange_rel (__futex, 0); \ 236 if (__builtin_expect (__oldval & FUTEX_WAITERS, 0)) \
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/sysdeps/unix/sysv/linux/metag/ |
A D | lowlevellock.h | 223 int __oldval = atomic_exchange_rel (__futex, 0); \ 224 if (unlikely(__oldval > 1)) \ 233 int __oldval = atomic_exchange_rel (__futex, 0); \ 234 if (unlikely(__oldval & FUTEX_WAITERS)) \
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/sysdeps/unix/sysv/linux/alpha/ |
A D | lowlevellock.h | 235 int __oldval = atomic_exchange_rel (__futex, 0); \ 236 if (__builtin_expect (__oldval > 1, 0)) \ 245 int __oldval = atomic_exchange_rel (__futex, 0); \ 246 if (__builtin_expect (__oldval & FUTEX_WAITERS, 0)) \
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/include/bits/ |
A D | atomic_base.h | 948 _Val<_Tp> __oldval = load(__ptr, memory_order_relaxed); in _GLIBCXX_VISIBILITY() 949 _Val<_Tp> __newval = __oldval + __i; in _GLIBCXX_VISIBILITY() 952 __newval = __oldval + __i; in _GLIBCXX_VISIBILITY() 953 return __oldval; in _GLIBCXX_VISIBILITY() 961 _Val<_Tp> __newval = __oldval - __i; in _GLIBCXX_VISIBILITY() 964 __newval = __oldval - __i; in _GLIBCXX_VISIBILITY() 965 return __oldval; in _GLIBCXX_VISIBILITY() 973 _Val<_Tp> __newval = __oldval + __i; in _GLIBCXX_VISIBILITY() 977 __newval = __oldval + __i; in _GLIBCXX_VISIBILITY() 986 _Val<_Tp> __newval = __oldval - __i; in _GLIBCXX_VISIBILITY() [all …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/include/bits/ |
A D | atomic_base.h | 1096 _Val<_Tp> __oldval = load(__ptr, memory_order_relaxed); in _GLIBCXX_VISIBILITY() 1097 _Val<_Tp> __newval = __oldval + __i; in _GLIBCXX_VISIBILITY() 1100 __newval = __oldval + __i; in _GLIBCXX_VISIBILITY() 1101 return __oldval; in _GLIBCXX_VISIBILITY() 1109 _Val<_Tp> __newval = __oldval - __i; in _GLIBCXX_VISIBILITY() 1112 __newval = __oldval - __i; in _GLIBCXX_VISIBILITY() 1113 return __oldval; in _GLIBCXX_VISIBILITY() 1121 _Val<_Tp> __newval = __oldval + __i; in _GLIBCXX_VISIBILITY() 1125 __newval = __oldval + __i; in _GLIBCXX_VISIBILITY() 1134 _Val<_Tp> __newval = __oldval - __i; in _GLIBCXX_VISIBILITY() [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/include/sys/ |
A D | sysctl.h | 66 extern int sysctl (int *__name, int __nlen, void *__oldval,
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/ |
A D | sysctl.c | 23 extern int sysctl (int *__name, int __nlen, void *__oldval,
|
Completed in 16 milliseconds