Home
last modified time | relevance | path

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

/frameworks/compile/libbcc/runtime/BlocksRuntime/
Druntime.c52 static __inline bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst) { in OSAtomicCompareAndSwapLong() argument
54 long original = InterlockedCompareExchange(dst, newl, oldl); in OSAtomicCompareAndSwapLong()
73 static __inline bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst) { in OSAtomicCompareAndSwapLong() argument
74 return __sync_bool_compare_and_swap(dst, oldl, newl); in OSAtomicCompareAndSwapLong()