Searched refs:diff (Results 401 - 425 of 736) sorted by relevance

<<11121314151617181920>>

/macosx-10.10.1/zsh-61/zsh/Src/
H A Dhashnameddir.c240 * initialising the `diff' member. */
248 nd->diff = strlen(nd->dir) - strlen(nam);
H A Dglob.c3481 time_t now, diff; local
3484 diff = now - (g_amc == 0 ? buf->st_atime : g_amc == 1 ? buf->st_mtime :
3489 diff /= 86400l;
3492 diff /= 3600l;
3495 diff /= 60l;
3498 diff /= 604800l;
3501 diff /= 2592000l;
3505 return (g_range < 0 ? diff < days :
3506 g_range > 0 ? diff > days :
3507 diff
[all...]
/macosx-10.10.1/zsh-61/zsh/Test/
H A Dztst.zsh286 # diff wrapper
303 print "Bad ZTST_diff code: d for diff, p for pattern match"
329 diff_out=$(diff "$@")
/macosx-10.10.1/tcl-105/tcl/tcl/unix/
H A DtclUnixChan.c1193 int bestIdx, bestDiff, i, diff;
1205 diff = speeds[i].baud - baud;
1206 if (diff < 0) {
1207 diff = -diff;
1209 if (diff < bestDiff) {
1211 bestDiff = diff;
1181 int bestIdx, bestDiff, i, diff; local
/macosx-10.10.1/tcl-105/tcl84/tcl/unix/
H A DtclUnixChan.c1352 int bestIdx, bestDiff, i, diff;
1364 diff = speeds[i].baud - baud;
1365 if (diff < 0) {
1366 diff = -diff;
1368 if (diff < bestDiff) {
1370 bestDiff = diff;
1338 int bestIdx, bestDiff, i, diff; local
/macosx-10.10.1/tcl-105/tk/tk/unix/
H A DtkUnixFont.c2692 int diff;
2698 diff = (-gotPtr->fa.size - -wantPtr->fa.size);
2699 if (diff > 0) {
2701 } else if (diff < 0) {
2703 diff = -diff;
2705 penalty += 150 * diff;
2662 int diff; local
/macosx-10.10.1/tcl-105/tk84/tk/unix/
H A DtkUnixFont.c2582 int diff;
2588 diff = (-gotPtr->fa.size - -wantPtr->fa.size);
2589 if (diff > 0) {
2591 } else if (diff < 0) {
2593 diff = -diff;
2595 penalty += 150 * diff;
2555 int diff; local
/macosx-10.10.1/dtrace-147/libdtrace/
H A Ddt_consume.c329 uint64_t diff[2] = { 0, 0 }; local
349 dt_shift_128(diff, 2);
350 dt_add_128(diff, next_pair, diff);
360 if (dt_le_128(next_try, diff)) {
361 dt_subtract_128(diff, next_try, diff);
382 uint64_t diff[2]; local
399 dt_subtract_128(avg_of_squares, square_of_avg, diff);
401 return (dt_sqrt_128(diff));
[all...]
/macosx-10.10.1/msdosfs-209.1.1/msdosfs.kextproj/msdosfs.kmodproj/
H A Dmsdosfs_vnops.c795 uint32_t diff; local
826 diff = pmp->pm_bpcluster - on;
827 n = diff > (uint32_t)uio_resid(uio) ? (uint32_t)uio_resid(uio) : diff;
828 diff = (uint32_t)(dep->de_FileSize - uio_offset(uio));
829 if (diff < n)
830 n = diff;
831 diff = blsize - buf_resid(bp);
832 if (diff < n)
833 n = diff;
[all...]
/macosx-10.10.1/Heimdal-398.1.2/kcm/
H A Dcache.c91 uint64_t now, diff; local
98 diff = NOTIFY_TIME_LIMIT;
100 diff = now - last_change;
102 if (diff >= NOTIFY_TIME_LIMIT) {
108 dispatch_after(dispatch_time(DISPATCH_TIME_NOW, NOTIFY_TIME_LIMIT - diff), dispatch_get_main_queue(), ^{
/macosx-10.10.1/file_cmds-242/gzip/
H A Dgzip.c2008 off_t diff; local
2012 diff = in - out/2;
2013 if (diff <= 0)
2025 diff >>= 1;
2029 percent10 = ((u_int)diff * 2000) / (u_int)in - 1000;
/macosx-10.10.1/vim-55/runtime/syntax/
H A D2html.vim122 " separate the two classes by a space to apply them both if there is a diff
140 " Add normal groups to the beginning so diff groups can override them.
150 " Add the diff highlight class to class list if used and it's not there yet.
151 " Add diff groups to the end so they override the other highlighting.
652 let s:difffillchar = &fillchars[matchend(&fillchars, 'diff:')]
661 " If there are filler lines for diff mode, show these above the line.
824 " Get the diff attribute, if any.
1018 " Replace spans of this class name AND a diff class with non-CSS style
1019 " markup surrounding a span of just the diff class. The diff clas
[all...]
/macosx-10.10.1/xnu-2782.1.97/iokit/Kernel/
H A DIODeviceTreeSupport.cpp1000 SInt64 diff, diff2, endDiff; local
1049 diff = (*compare)( childAddressCells, cell, range );
1062 if ((diff < 0) || (diff2 >= 0))
1086 if ((endDiff - len + 1 + lookRangeStart) == (diff + rangeStart))
1095 offset += diff;
/macosx-10.10.1/libpthread-105.1.4/kern/
H A Dkern_synch.c1414 int diff; local
1433 diff = find_diff(lgenval, ugenval);
1435 if (find_seq_till(kwq, curgen, diff, &count) == 0) {
1436 if ((count == 0) || (count < (uint32_t)diff))
1470 kwq->kw_pre_rwwc = (diff - count);
1760 __darwin_time_t diff = t.tv_sec - kwq->kw_ts.tv_sec; local
1761 if (diff < 0)
1762 diff *= -1;
1763 if (diff >= KSYN_CLEANUP_DEADLINE) {
/macosx-10.10.1/xnu-2782.1.97/bsd/net/
H A Dpf_norm.c232 int diff; local
234 if ((diff = a->fr_af - b->fr_af))
235 return (diff);
236 else if ((diff = a->fr_p - b->fr_p))
237 return (diff);
247 if ((diff = a->fr_id - b->fr_id))
248 return (diff);
261 if ((diff = a->fr_id6 - b->fr_id6))
262 return (diff);
/macosx-10.10.1/xnu-2782.1.97/bsd/netinet6/
H A Dipsec.c2692 u_int32_t diff; local
2732 diff = replay->lastseq - seq;
2735 if (diff >= wsizeb) {
2740 fr = frlast - diff / 8;
2743 if ((replay->bitmap)[fr] & (1 << (diff % 8))) {
2765 u_int32_t diff; local
2798 diff = seq - replay->lastseq;
2801 if (diff < wsizeb) {
2804 vshiftl((unsigned char *) replay->bitmap, diff, replay->wsize);
2816 diff
[all...]
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dmulti.c2141 long diff = curlx_tvdiff(*(struct timeval *)e->ptr, now); local
2142 if(diff <= 0)
2424 * and the diff might be less than one millisecond here, we don't
2426 * processors while the diff is still present but less than one
2545 long diff = curlx_tvdiff(*checktime, *timedup); local
2546 if(diff > 0)
2625 long diff = curlx_tvdiff(set, *nowp); local
2626 if(diff > 0) {
/macosx-10.10.1/emacs-93/emacs/lisp/calendar/
H A Dcal-hebrew.el948 (diff (- yr h-year))
950 (if (and (> diff 0) (or (= y d) (= y (1+ d))))
955 diff
956 (cond ((= (% diff 10) 1) "st")
957 ((= (% diff 10) 2) "nd")
958 ((= (% diff 10) 3) "rd")
/macosx-10.10.1/emacs-93/emacs/lisp/progmodes/
H A Dantlr-mode.el1015 (defvar antlr-slow-cache-diff-threshold 5000
1066 ;;;(defvar antlr-statistics-full-diff 0)
1092 (let ((orig (point)) diff state
1099 (>= (setq diff (- orig (cadr antlr-slow-context-cache))) 0)
1100 (< diff antlr-slow-cache-diff-threshold)
1107 (if (>= orig antlr-slow-cache-diff-threshold)
1110 ;;; (cond ((and diff (< diff 0)) (incf antlr-statistics-full-neg))
1111 ;;; ((and diff (>
[all...]
/macosx-10.10.1/groff-38/groff/src/devices/grops/
H A Dps.cpp734 int diff = env->hpos - sbuf_end_hpos - sbuf_space_width; local
735 if (diff == 0 || (equalise_spaces && (diff == 1 || diff == -1))) {
740 if (diff == 1)
742 else if (diff == -1)
/macosx-10.10.1/vim-55/runtime/lang/
H A Dmenu_it_it.latin1.vim43 if has("diff")
213 if has("diff")
219 endif " has diff
H A Dmenu_sl_si.cp1250.vim30 if has("diff")
141 menutrans &Diff Razlike\ (&diff)
152 if has("diff")
H A Dmenu_sl_si.latin2.vim30 if has("diff")
141 menutrans &Diff Razlike\ (&diff)
152 if has("diff")
H A Dmenu_sl_si.utf-8.vim30 if has("diff")
141 menutrans &Diff Razlike\ (&diff)
152 if has("diff")
/macosx-10.10.1/emacs-93/emacs/lisp/calc/
H A Dcalc.el2716 (let ((diff (math-sub-bignum (cdr b) (cdr a))))
2717 (if (eq diff 'neg)
2719 (cons 'bigpos diff)))))
2722 (let ((diff (math-sub-bignum (cdr a) (cdr b))))
2723 (if (eq diff 'neg)
2725 (cons 'bigpos diff))))
2779 (let* ((a (copy-sequence a)) (aa a) (borrow nil) sum diff)
2782 (if (>= (setq diff (- (car aa) (car b))) 1)
2784 (setcar aa (1- diff))
2786 (setcar aa (+ diff 99
[all...]

Completed in 470 milliseconds

<<11121314151617181920>>