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

/macosx-10.9.5/CF-855.17/
H A DCFWindowsUtilities.c46 CF_EXPORT bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst) argument
48 return oldl == InterlockedCompareExchange(dst, newl, oldl);
H A DCoreFoundation_Prefix.h153 bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst);
346 CF_EXPORT bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst);
H A DCFPlatform.c1063 bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst) argument
1065 return __sync_val_compare_and_swap(dst, oldl, newl);
/macosx-10.9.5/misc_cmds-32/calendar/
H A Dday.c143 char *oldl, *lbufp; local
167 oldl = NULL;
169 if (lbufp != NULL && (oldl = strdup(lbufp)) == NULL)
173 (void) setlocale(LC_TIME, (oldl != NULL ? oldl : ""));
174 if (oldl != NULL)
175 free(oldl);
/macosx-10.9.5/objc4-551.1/runtime/
H A Dobjc-os.h267 static __inline BOOL OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst) argument
270 long original = InterlockedCompareExchange(dst, newl, oldl);
271 return (original == oldl);
280 static __inline BOOL OSAtomicCompareAndSwap32Barrier(int32_t oldl, int32_t newl, int32_t volatile *dst) argument
282 long original = InterlockedCompareExchange((volatile long *)dst, newl, oldl);
283 return (original == oldl);
/macosx-10.9.5/xnu-2422.115.4/security/
H A Dmac_mach_internal.h99 int mac_port_check_label_update(struct label *task, struct label *oldl, struct label *newl);
/macosx-10.9.5/libclosure-63/
H A Druntime.c34 static __inline bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst) argument
37 long original = InterlockedCompareExchange(dst, newl, oldl);
38 return (original == oldl);
/macosx-10.9.5/procmail-14/procmail/src/
H A Dformail.c128 static void renfield(pointer,oldl,newname,newl)struct field**const pointer;
129 size_t oldl;const size_t newl;const char*const newname; /* rename fields */
143 oldl=p->id_len; /* replace the old one entirely */
144 p->id_len+=(int)newl-(int)oldl;p->fld_text[p->Tot_len-1]='\n';
145 p->Tot_len=(i=p->Tot_len-oldl)+newl;
146 if(newl>oldl)
148 chp=p->fld_text;tmemmove(chp+newl,chp+oldl,i);tmemmove(chp,newname,newl);
/macosx-10.9.5/ruby-104/ruby/
H A Druby.c214 static int newl, oldl, notfound; local
225 oldl = newp - oldp;
230 if (newl == 0 || oldl == 0) {
239 if (!newp || l < oldl || STRNCASECMP(oldp, s, oldl) != 0) {
242 ret = rb_str_new(0, l + newl - oldl);
245 memcpy(ptr + newl, s + oldl, l - oldl);
246 ptr[l + newl - oldl] = 0;
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dspeedbar.el3448 (let ((oldl speedbar-shown-directories)
3452 (while oldl
3453 (if (not (string-match (concat "^" (regexp-quote td)) (car oldl)))
3454 (setq newl (cons (car oldl) newl)))
3455 (setq oldl (cdr oldl)))
/macosx-10.9.5/emacs-92/emacs/lisp/progmodes/
H A Dvhdl-mode.el15003 (let ((oldl speedbar-shown-directories)
15007 (while oldl
15008 (if (not (string-match (concat "^" (regexp-quote td)) (car oldl)))
15009 (setq newl (cons (car oldl) newl)))
15010 (setq oldl (cdr oldl)))

Completed in 185 milliseconds