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

123456789

/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dmemcmp.c36 int diff; local
40 if (diff = *s1++ - *s2++)
41 return (diff);
/illumos-gate/usr/src/cmd/diff/
H A DMakefile26 PROG= diff diffh
28 BINDIFF= diff
40 POFILE= diff.po
41 DCFILE= diff.dc
42 #XGETFLAGS += -a -x diff.xcl
56 $(COMPILE.cpp) $(SRCS) > diff.po.i
57 $(XGETTEXT) $(XGETFLAGS) diff.po.i
59 $(RM) diff.po.i messages.po
63 $(COMPILE.cpp) $(SRCS) > diff.dc.i
64 $(XGETTEXT) -c TRANSLATION_NOTE_FOR_DC -t diff
[all...]
/illumos-gate/usr/src/lib/libc/port/i18n/
H A Dputws.c51 ptrdiff_t diff; local
66 diff = ptr - ptr0;
67 if (diff <= INT_MAX)
68 return ((int)diff);
/illumos-gate/usr/src/cmd/diffmk/
H A Ddiffmk.sh41 diff -e $1 $2 | (sed -n -e '
/illumos-gate/usr/src/cmd/fm/eversholt/common/
H A Dlut.c80 int diff; local
85 diff = (*cmp_func)(tmp->lut_lhs, lhs);
87 diff = (const char *)lhs - (const char *)tmp->lut_lhs;
89 if (diff == 0) {
93 } else if (diff > 0) {
118 int diff; local
124 diff = (*cmp_func)(root->lut_lhs, lhs);
126 diff = (const char *)lhs - (const char *)root->lut_lhs;
128 if (diff == 0)
130 else if (diff >
141 int diff; local
[all...]
/illumos-gate/usr/src/lib/libresolv2/common/nameser/
H A Dns_samedomain.c53 int diff, i, escaped; local
105 diff = la - lb;
112 if (diff < 2)
120 if (a[diff - 1] != '.')
128 for (i = diff - 2; i >= 0; i--)
140 cp = a + diff;
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DStddevValue.java83 BigInteger diff = BigInteger.valueOf(0);
95 diff = diff.shiftLeft(2);
96 diff = diff.add(BigInteger.valueOf(nextTwoBits));
104 if (nextTry.compareTo(diff) <= 0) {
105 diff = diff.subtract(nextTry);
/illumos-gate/usr/src/test/zfs-tests/tests/functional/xattr/
H A Dxattr_008_pos.ksh63 log_must diff /tmp/output.$$ /tmp/expected-output.$$
68 log_must diff /tmp/output.$$ /tmp/expected-output.$$
H A Dxattr_common.kshlib59 log_must diff /tmp/file1.$$ /tmp/file2.$$
70 log_must diff $XATTR_CONTENTS /tmp/$XATTR_NAME.$$
91 log_must diff /tmp/passwd_dd.$$ /tmp/$XATTR_NAME.$$
/illumos-gate/usr/src/uts/sun4/os/
H A Dmemlist.c240 diff_memlists(struct memlist *proto, struct memlist *diff, void (*func)()) argument
246 * find diff item which may overlap with proto item
249 while (diff != NULL &&
250 proto->ml_address >= diff->ml_address + diff->ml_size)
251 diff = diff->ml_next;
252 if (diff == NULL) {
257 if (proto->ml_address == diff->ml_address &&
258 proto->ml_size == diff
[all...]
/illumos-gate/usr/src/cmd/fm/modules/common/eversholt/
H A Diexpr.c141 int diff; local
184 diff = iexpr_cmp(np1->u.expr.left, np2->u.expr.left);
185 if (diff != 0)
186 return (diff);
192 diff = iexpr_cmp(np1->u.name.child, np2->u.name.child);
193 if (diff != 0)
194 return (diff);
198 diff = iexpr_cmp(np1->u.event.ename, np2->u.event.ename);
199 if (diff != 0)
200 return (diff);
[all...]
/illumos-gate/usr/src/test/os-tests/tests/secflags/
H A Dsecflags_psecflags.sh27 diff -u expected output || exit 1 # Make sure the setting of 'none' worked
46 diff -u expected output || exit 1
57 diff -u expected output || exit 1
68 diff -u expected output || exit 1
85 diff -u expected output || exit 1
101 diff -u expected output || exit 1
119 diff -u expected output || exit 1
137 diff -u expected output || exit 1
168 diff -u expected output || exit 1
180 diff
[all...]
H A Dsecflags_proc.sh37 if ! diff -u /tmp/expected.$$ /tmp/output.$$; then
/illumos-gate/usr/src/cmd/logadm/
H A Dlut.c72 int diff = 0; local
80 } else if (lhs != NULL && (diff = strcmp(root->lut_lhs, lhs)) == 0) {
83 } else if (diff > 0)
121 int diff; local
125 else if ((diff = strcmp(root->lut_lhs, lhs)) == 0)
127 else if (diff > 0)
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_rename/
H A Dzfs_rename_007_pos.ksh102 log_must diff $SRC_FILE $obj
104 log_must diff $SRC_FILE $obj
115 log_must diff $SRC_FILE $obj
135 log_must diff $SRC_FILE $DST_FILE
138 log_must diff $SRC_FILE $DST_FILE
148 log_must diff $SRC_FILE $DST_FILE
/illumos-gate/usr/src/lib/libslp/clib/
H A Dslp_utf8.c124 int diff = -1; local
141 if ((diff = strcasecmp(p1, p2)) == 0)
168 diff = wscasecmp(wcs1, wcs2);
175 return (diff);
/illumos-gate/usr/src/lib/libmvec/common/
H A D__vhypot.c103 int hx0, hx1, hy0, j0, diff; local
129 diff = hy0 - hx0;
130 j0 = diff >> 31;
131 j0 = hy0 - (diff & j0);
148 j0 = diff >> 31;
149 if (((diff ^ j0) - j0) < 0x03600000) /* max(|X|,|Y|)/min(|X|,|Y|) < 2**54 */
171 diff = hy0 - hx0;
172 j0 = diff >> 31;
173 j0 = hy0 - (diff & j0);
190 j0 = diff >> 3
[all...]
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/include/
H A Dcyclic_oper.h48 u32_t diff = _ABS_DIFF(x,y); local
49 return (diff < d) ? x < y : x > y;
54 u32_t diff = _ABS_DIFF(x,y); local
55 return (diff < d) ? x <= y : x >= y;
/illumos-gate/usr/src/uts/common/io/ib/clients/rdsv3/
H A Dib_ring.c84 uint32_t diff; local
87 diff = ring->w_alloc_ctr - (uint32_t)atomic_get(&ring->w_free_ctr);
88 ASSERT(diff <= ring->w_nr);
90 return (diff);
/illumos-gate/usr/src/common/avl/
H A Davl.c108 * Small arrays to translate between balance (or diff) values and child indices.
260 int diff; local
268 diff = tree->avl_compar(value, AVL_NODE2DATA(node, off));
269 ASSERT(-1 <= diff && diff <= 1);
270 if (diff == 0) {
277 child = avl_balance2child[1 + diff];
581 int diff; local
596 diff = tree->avl_compar(new_data, here);
597 ASSERT(-1 <= diff
[all...]
/illumos-gate/usr/src/uts/common/fs/smbclnt/netsmb/
H A Dsubr_mchain.c238 uint64_t diff; local
240 diff = (uintptr_t)mblk->b_datap->db_lim -
242 ASSERT(diff == (uint64_t)((unsigned int)diff));
243 return ((unsigned int)diff);
484 uint64_t diff; local
487 diff = MBLKTAIL(m);
488 ASSERT(diff == (uint64_t)((int)diff));
489 mleft = (int)diff;
820 uint64_t diff; local
885 uint64_t diff; local
1002 ptrdiff_t diff; local
1034 ptrdiff_t diff; local
[all...]
/illumos-gate/usr/src/cmd/diff3/
H A Ddiff3prog.c44 * d13 = diff report on f1 vs f3
45 * d23 = diff report on f2 vs f3
59 struct diff {struct range old, new; }; struct
69 static struct diff d13[NC];
70 static struct diff d23[NC];
77 static struct diff de[NC];
101 static int readin(char *name, struct diff *dd);
115 static int edit(struct diff *diff, int dup, int j);
184 readin(char *name, struct diff *d
515 edit(struct diff *diff, int dup, int j) argument
[all...]
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dstrftime.c412 int diff; local
437 diff = -timezone;
439 diff = -altzone;
440 if (diff < 0) {
442 diff = -diff;
446 diff /= SECSPERMIN;
447 diff = (diff / MINSPERHOUR) * 100 +
448 (diff
[all...]
/illumos-gate/usr/src/cmd/sgs/tools/
H A Dbld_lint.sh47 # Keep the first run as a backup, so that subsequent runs can diff against it.
86 # If there is a backup log, diff the current one against it.
90 echo "Running diff on log file..."
91 diff $LOG.bak $LOG
/illumos-gate/usr/src/psm/promif/ieee1275/sun4u/
H A Dprom_opl.c67 prom_opl_set_diff(int64_t diff) argument
74 ci[3] = (cell_t)diff; /* Arg1: time diff */

Completed in 124 milliseconds

123456789