Searched defs:newl (Results 1 - 1 of 1) sorted by relevance

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

Completed in 158 milliseconds