Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/BlocksRuntime/
H A Druntime.c51 static __inline bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst) { in OSAtomicCompareAndSwapLong() argument
53 long original = InterlockedCompareExchange(dst, newl, oldl); in OSAtomicCompareAndSwapLong()
54 return (original == oldl); in OSAtomicCompareAndSwapLong()
72 static __inline bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst) { in OSAtomicCompareAndSwapLong() argument
73 return __sync_bool_compare_and_swap(dst, oldl, newl); in OSAtomicCompareAndSwapLong()
/freebsd/usr.bin/diff/
H A Ddiffreg.c628 int oldc, tc, oldl, sq; in stone()
645 oldl = 0; in stone()
652 if (l != oldl + 1) in stone()
660 oldl = l; in stone()
624 int oldc, tc, oldl, sq; stone() local