Searched refs:diff (Results 1 - 25 of 802) sorted by relevance

1234567891011>>

/macosx-10.9.5/postfix-252/postfix/mantools/
H A Dhchangered11 diff -e $1 $2 | (sed -n -e '
H A Ddocuseparam5 diff /tmp/doc /tmp/use
/macosx-10.9.5/text_cmds-87/sort/
H A Dmemcoll.c37 int diff; local
47 while (! (errno = 0, (diff = strcoll (s1, s2)) || errno))
62 diff = -1;
67 diff = 1;
77 diff = memcmp (s1, s2, s1len < s2len ? s1len : s2len);
78 if (! diff)
79 diff = s1len < s2len ? -1 : s1len != s2len;
84 return diff;
/macosx-10.9.5/man-16/
H A DMakefile28 AEP_Patches = Makefile.in.diff \
29 configure.diff \
30 man__Makefile.in.diff \
31 src__Makefile.in.diff \
32 src__man-getopt.c.diff \
33 src__man.c.diff \
34 src__man.conf.in.diff \
35 src__manpath.c.diff \
36 src__util.c.diff \
37 PR3845474.diff \
[all...]
/macosx-10.9.5/ntp-88/util/
H A Dprecision.c69 long diff; local
77 diff = tp.tv_usec - last;
78 if (diff < 0) diff += DUSECS;
79 if (diff > MINSTEP) if (minsteps-- <= 0) break;
84 diff, i, (i==1) ? "" : "s");
86 diff = (diff *3)/2;
91 diff = 1; /* No STEP, so FAST machine */
96 diff
127 long diff; local
[all...]
/macosx-10.9.5/bind9-45.100/bind9/unit/atf-src/atf-report/
H A Dmisc_helpers.cpp38 ATF_TEST_CASE(diff); variable
39 ATF_TEST_CASE_HEAD(diff)
43 ATF_TEST_CASE_BODY(diff)
48 std::cout << " This test is meant to simulate a diff.\n";
67 ATF_ADD_TEST_CASE(tcs, diff);
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dbocsu.cpp31 u_writeDiff(int32_t diff, uint8_t *p) { argument
32 if(diff>=SLOPE_REACH_NEG_1) {
33 if(diff<=SLOPE_REACH_POS_1) {
34 *p++=(uint8_t)(SLOPE_MIDDLE+diff);
35 } else if(diff<=SLOPE_REACH_POS_2) {
36 *p++=(uint8_t)(SLOPE_START_POS_2+(diff/SLOPE_TAIL_COUNT));
37 *p++=(uint8_t)(SLOPE_MIN+diff%SLOPE_TAIL_COUNT);
38 } else if(diff<=SLOPE_REACH_POS_3) {
39 p[2]=(uint8_t)(SLOPE_MIN+diff%SLOPE_TAIL_COUNT);
40 diff/
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Ducnvbocu.cpp212 /* Faster versions of packDiff() for single-byte-encoded diff values. */
214 /** Is a diff value encodable in a single byte? */
215 #define DIFF_IS_SINGLE(diff) (BOCU1_REACH_NEG_1<=(diff) && (diff)<=BOCU1_REACH_POS_1)
217 /** Encode a diff value in a single byte. */
218 #define PACK_SINGLE_DIFF(diff) (BOCU1_MIDDLE+(diff))
220 /** Is a diff value encodable in two bytes? */
221 #define DIFF_IS_DOUBLE(diff) (BOCU1_REACH_NEG_
285 packDiff(int32_t diff) argument
398 int32_t prev, c, diff; local
651 int32_t prev, c, diff; local
867 int32_t diff, count; local
947 int32_t prev, count, diff, c; local
1169 int32_t prev, count, diff, c; local
[all...]
/macosx-10.9.5/CPANInternal-140/YAML-Syck/t/
H A Dleak.t19 my $diff;
22 # Devel::Leak test before it's stable. The first time diff ends up
29 $diff = Devel::Leak::NoteSV($handle) - $before;
36 $diff = Devel::Leak::NoteSV($handle) - $before;
37 is( $diff, 0, "No leaks - array" );
49 $diff = Devel::Leak::NoteSV($handle) - $before;
50 is( $diff, 0, "No leaks - hash" );
71 $diff = Devel::Leak::NoteSV($handle) - $before;
72 is( $diff, 0, "No leaks - code" );
86 $diff
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-diff/
H A DMakefile1 ##===- tools/llvm-diff/Makefile ----------------------------*- Makefile -*-===##
11 TOOLNAME := llvm-diff
/macosx-10.9.5/awk-18/
H A DMakefile10 Patches = main.c.diff makefile.diff awk.h.diff awkgram.y.diff \
11 b.c.diff lib.c.diff main.c.diff2 run.c.diff tran.c.diff \
12 run-makefile-gcc4.diff awk.1.diff
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/dns/include/dns/
H A Ddiff.h18 /* $Id: diff.h,v 1.19 2010/06/04 23:51:14 tbox Exp $ */
27 /*! \file dns/diff.h
29 * A diff is a convenience type representing a list of changes to be
167 dns_diff_init(isc_mem_t *mctx, dns_diff_t *diff);
169 * Initialize a diff.
172 * \li 'diff' points to an uninitialized dns_diff_t
176 * \li '*diff' is a valid, empty diff.
180 dns_diff_clear(dns_diff_t *diff);
182 * Clear a diff, destroyin
[all...]
/macosx-10.9.5/rsync-42/rsync/patches/
H A Dverify-patches64 @ARGV = glob('patches/*.diff') unless @ARGV;
67 foreach my $diff (@ARGV) {
68 next unless $diff =~ /\.diff$/;
69 next if $diff =~ /gzip-rsyncable[-_a-z]*\.diff$/;
70 $diff =~ s#^(patches|\.\.)/##;
73 open(IN, "patches/$diff") or die $!;
76 if (m#^\s+patch -p1 <patches/(\S+.diff)# && $1 ne $diff) {
[all...]
/macosx-10.9.5/tcpdump-56/tcpdump/tests/
H A Dprint-flags.sh23 if (../tcpdump -$i -s0 -nr print-flags.pcap | tee NEW/print-$printname.new | diff - print-$printname.out >DIFF/print-$printname.out.diff )
H A Dlmp.sh5 if diff lmp.new lmp.out
/macosx-10.9.5/bash-92/bash-3.2/tests/
H A Drun-dbg-support8 diff $TEST_FILE ${TEST_NAME}.right && rm -f $TEST_FILE
H A Drun-dbg-support28 diff $TEST_FILE ${TEST_NAME}.right && rm -f $TEST_FILE
H A Drun-set-x8 diff $TEST_FILE ${TEST_NAME}.right && rm -f $TEST_FILE
/macosx-10.9.5/cxxfilt-11/cxxfilt/libiberty/
H A Dternary.c39 int diff; local
48 diff = *s - curr->splitchar;
50 if (diff == 0)
62 else if (diff < 0)
114 int diff, spchar; local
121 diff = spchar - curr->splitchar;
123 if (diff == 0)
131 else if (diff < 0)
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/patches/v8.1/
H A Dgendiff11 diff -c $1/$f.orig $1/$f >> standard.patch
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/patches/v8.1b3/
H A Dgendiff11 diff -c $1/$f.orig $1/$f >> standard.patch
/macosx-10.9.5/WebCore-7537.78.1/rendering/svg/
H A DRenderSVGBlock.cpp95 void RenderSVGBlock::styleWillChange(StyleDifference diff, const RenderStyle* newStyle) argument
97 if (diff == StyleDifferenceLayout)
99 RenderBlock::styleWillChange(diff, newStyle);
102 void RenderSVGBlock::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) argument
104 RenderBlock::styleDidChange(diff, oldStyle);
105 SVGResourcesCache::clientStyleChanged(this, diff, style());
/macosx-10.9.5/cups-372.4/cups/cups/
H A Doptions.c60 diff; /* Result of search */ local
79 diff = 1;
84 &diff);
86 if (diff > 0)
90 if (diff)
183 int diff, /* Result of comparison */ local
196 match = cups_find_option(name, num_options, options, -1, &diff);
198 if (!diff)
612 diff; /* Result of comparison */ local
634 if ((diff
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderLayerModelObject.cpp92 void RenderLayerModelObject::styleWillChange(StyleDifference diff, const RenderStyle* newStyle) argument
107 if (diff == StyleDifferenceRepaintLayer) {
111 } else if (diff == StyleDifferenceRepaint || newStyle->outlineSize() < oldStyle->outlineSize())
115 if (diff == StyleDifferenceLayout || diff == StyleDifferenceSimplifiedLayout) {
139 RenderObject::styleWillChange(diff, newStyle);
142 void RenderLayerModelObject::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) argument
144 RenderObject::styleDidChange(diff, oldStyle);
170 layer()->styleChanged(diff, oldStyle);
/macosx-10.9.5/gnutar-452/
H A DMakefile26 AEP_Patches = Makefile.in.diff tar-1.17-buildfix.diff \
27 EA.diff preallocate.diff quarantine.diff \
28 PR5405409.diff PR5605786.diff PR6450027.diff \
29 PR7691662.diff

Completed in 309 milliseconds

1234567891011>>