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

/freebsd-10-stable/usr.bin/calendar/
H A Dday.c51 char *oldl, *lbufp; local
69 oldl = NULL;
71 if (lbufp != NULL && (oldl = strdup(lbufp)) == NULL)
74 (void)setlocale(LC_TIME, (oldl != NULL ? oldl : ""));
75 if (oldl != NULL)
76 free(oldl);
/freebsd-10-stable/contrib/compiler-rt/BlocksRuntime/
H A Druntime.c51 static __inline bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst) { argument
53 long original = InterlockedCompareExchange(dst, newl, oldl);
54 return (original == oldl);
72 static __inline bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst) { argument
73 return __sync_bool_compare_and_swap(dst, oldl, newl);

Completed in 102 milliseconds