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

/macosx-10.10/apache-793/httpd/server/
H A Dutil_regex.c143 int startl, oldl, newl, diffsz; local
159 oldl = rx->pmatch[0].rm_eo - startl;
161 diffsz = newl - oldl;
162 remainder = pattern + startl + oldl;
/macosx-10.10/misc_cmds-33/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.10/objc4-646/runtime/
H A Dobjc-os.h386 static __inline BOOL OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst) argument
389 long original = InterlockedCompareExchange(dst, newl, oldl);
390 return (original == oldl);
399 static __inline BOOL OSAtomicCompareAndSwap32Barrier(int32_t oldl, int32_t newl, int32_t volatile *dst) argument
401 long original = InterlockedCompareExchange((volatile long *)dst, newl, oldl);
402 return (original == oldl);
/macosx-10.10/libclosure-65/
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.10/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.10/ruby-106/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.10/emacs-93/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.10/emacs-93/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 396 milliseconds