Home
last modified time | relevance | path

Searched full:diff (Results 226 – 250 of 1082) sorted by relevance

12345678910>>...44

/freebsd/crypto/openssl/crypto/
H A Dparams_dup.c154 int diff; in OSSL_PARAM_merge() local
208 diff = OPENSSL_strcasecmp((*p1cur)->key, (*p2cur)->key); in OSSL_PARAM_merge()
209 if (diff == 0) { in OSSL_PARAM_merge()
214 } else if (diff > 0) { in OSSL_PARAM_merge()
H A Dsparccpuid.S486 set 0,%g4 ! diff
498 sub %o4,%o5,%g4 ! diff=tick-lasttick
526 set 0,%g4 ! diff
538 sub %o4,%o5,%g4 ! diff=tick-lasttick
540 mov %g4,%g5 ! lastdiff=diff
556 sub %o4,%o5,%g4 ! diff=tick-lasttick
559 mov %g4,%g5 ! lastdiff=diff
H A Dx86cpuid.pl405 &sub ("eax",$lasttick); # diff
407 &mov ($lastdiff,"eax"); # lastdiff = diff
410 &add (&DWP(0,$out),"eax"); # accumulate diff
441 &rdtsc (); # collect 1st diff
443 &sub ("eax",$lasttick); # diff
445 &mov ($lastdiff,"eax"); # lastdiff = diff
451 &add (&DWP(0,$out),"eax"); # accumulate diff
458 &sub ("eax",$lasttick); # diff
461 &mov ($lastdiff,"eax"); # lastdiff = diff
/freebsd/contrib/one-true-awk/testdir/
H A DT.lilly27 diff glop1 glop2 >lilly.diff || echo 'bad: T.lilly is different'
/freebsd/contrib/netbsd-tests/ipf/
H A Dt_filter_exec.sh55 diff -u exp out || atf_fail "results differ"
78 diff -u exp out || atf_fail "results differ"
108 diff -u exp out || atf_fail "results differ"
/freebsd/sys/contrib/device-tree/Bindings/iio/adc/
H A Dadi,max11410.yaml105 diff-channels: true
163 diff-channels = <2 3>;
171 diff-channels = <7 9>;
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zinject/
H A Dzinject_counts.ksh82 typeset -i diff=$((($expect - $inject) / 10))
83 return [[ $diff -ge -1 && $diff -le 1 ]]
/freebsd/contrib/diff/src/
H A Dsdiff.c6 This file is part of GNU DIFF.
8 GNU DIFF is free software; you can redistribute it and/or modify
13 GNU DIFF is distributed in the hope that it will be useful,
140 {"diff-program", 1, 0, DIFF_PROGRAM_OPTION},
203 N_("--diff-program=PROGRAM Use PROGRAM to compare files."),
571 /* easy case: diff does everything for us */ in main()
1121 /* Alternately reveal bursts of diff output and handle user commands. */
1123 interact (struct line_filter *diff, in interact() argument
1133 int snarfed = lf_snarf (diff, diff_help, sizeof diff_help); in interact()
1161 lf_skip (diff, lenmax); in interact()
[all …]
/freebsd/crypto/openssh/
H A Dssh-rsa.c410 size_t diff, len = 0; in ssh_rsa_sign() local
438 diff = slen - len; in ssh_rsa_sign()
439 memmove(sig + diff, sig, len); in ssh_rsa_sign()
440 explicit_bzero(sig, diff); in ssh_rsa_sign()
479 size_t len = 0, diff, modlen, rsasize; in ssh_rsa_verify() local
528 diff = modlen - len; in ssh_rsa_verify()
535 memmove(sigblob + diff, sigblob, len); in ssh_rsa_verify()
536 explicit_bzero(sigblob, diff); in ssh_rsa_verify()
/freebsd/contrib/libfido2/src/
H A Ddiff_exports.sh22 diff -u "${GNU}" "${LLVM}" && diff -u "${MSVC}" "${LLVM}"
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stackdepot.cpp79 uptr diff = stackStore.Pack(static_cast<StackStore::Compression>( in CompressStackStore() local
81 if (!diff) in CompressStackStore()
85 uptr total_before = theDepot.GetStats().allocated + diff; in CompressStackStore()
87 SanitizerToolName, diff >> 10, total_before >> 10, in CompressStackStore()
/freebsd/usr.sbin/etcupdate/tests/
H A Dignore_test.sh200 diff -u -L "correct" $WORKDIR/correct.out -L "test" $WORKDIR/test.out \
221 diff -u -L "correct" $WORKDIR/correct1.out -L "test" $WORKDIR/test1.out \
242 diff -u -L "correct" $WORKDIR/correct2.out -L "test" $WORKDIR/test2.out \
266 diff -u -L "correct" $WORKDIR/correct3.out -L "test" $WORKDIR/test3.out \
/freebsd/contrib/libexecinfo/
H A Dbacktrace.c117 ptrdiff_t diff = (const char *)addr - (const char *)dli->dli_saddr; in format_string() local
132 if (diff) in format_string()
133 len = rasprintf(buf, bufsiz, o, "+0x%tx", diff); in format_string()
138 len = rasprintf(buf, bufsiz, o, "0x%tx", diff); in format_string()
/freebsd/tools/test/stress2/misc/
H A Dburnin.sh131 struct timeval t1, t2, diff;
197 timersub(&t2, &t1, &diff);
201 printf("%s %ld.%06ld\n", help, (long)diff.tv_sec,
202 diff.tv_usec);
/freebsd/sys/dev/iicbus/controller/twsi/
H A Dmv_twsi.c151 uint32_t cur, diff, diff0; in mv_twsi_cal_baud_rate() local
162 diff = ABSSUB(target, cur); in mv_twsi_cal_baud_rate()
163 if (diff < diff0) { in mv_twsi_cal_baud_rate()
166 diff0 = diff; in mv_twsi_cal_baud_rate()
/freebsd/crypto/openssl/util/
H A Dcheck-format-commit.sh10 # It accepts the same commit revision range as 'git diff' as arguments,
62 # as 'git diff' has a slightly different interpretation of a single commit id:
75 git diff -U0 $COMMIT_RANGE | awk '
125 # contains the corresponding end line. Note, since diff output gives us
H A Dc-compress-test.pl40 use Text::Diff;
52 print "MISMATCH:\n", diff \$expected, \$got;
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DConstantHoisting.cpp551 uint64_t Diff = LimVal1 - LimVal2; in calculateOffsetDiff() local
552 return APInt(BW, Diff, true); in calculateOffsetDiff()
611 std::optional<APInt> Diff = calculateOffsetDiff( in maximizeConstantsInRange() local
613 if (Diff) { in maximizeConstantsInRange()
615 TTI->getIntImmCodeSizeCost(Opcode, OpndIdx, *Diff, Ty); in maximizeConstantsInRange()
617 LLVM_DEBUG(dbgs() << "Offset " << *Diff << " " in maximizeConstantsInRange()
655 APInt Diff = ConstCand->ConstInt->getValue() - ConstInt->getValue(); in findAndMakeBaseConstant() local
656 Constant *Offset = Diff == 0 ? nullptr : ConstantInt::get(Ty, Diff); in findAndMakeBaseConstant()
705 APInt Diff = CC->ConstInt->getValue() - MinValItr->ConstInt->getValue(); in findBaseConstants() local
706 if ((Diff.getBitWidth() <= 64) && in findBaseConstants()
[all …]
/freebsd/usr.bin/patch/
H A Dpch.c46 /* Patch (diff listing) abstract type. */
171 /* True if the remainder of the patch file contains a diff of some sort. */
200 diff_type == UNI_DIFF ? "a unified diff" : in there_is_another_patch()
201 diff_type == CONTEXT_DIFF ? "a context diff" : in there_is_another_patch()
202 diff_type == NEW_CONTEXT_DIFF ? "a new-style context diff" : in there_is_another_patch()
203 diff_type == NORMAL_DIFF ? "a normal diff" : in there_is_another_patch()
263 /* Determine what kind of diff is in the remaining part of the patch file. */
351 } else if (strnEQ(s, "diff --git a/", 13)) { in intuit_diff_type()
384 * If this is a new context diff the character just in intuit_diff_type()
419 * If we've successfully determined a diff type, stored in in intuit_diff_type()
[all …]
/freebsd/tests/sys/cddl/zfs/tests/xattr/
H A Dxattr_008_pos.ksh83 log_must $DIFF $TMPDIR/output.${TESTCASE_ID} $TMPDIR/expected-output.${TESTCASE_ID}
89 log_must $DIFF $TMPDIR/output.${TESTCASE_ID} $TMPDIR/expected-output.${TESTCASE_ID}
94 log_must $DIFF $TMPDIR/output.${TESTCASE_ID} $TMPDIR/expected-output.${TESTCASE_ID}
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_mman.cpp44 uptr diff = RoundUp(p, kPageSize) - p; in OnUnmap() local
45 if (diff != 0) { in OnUnmap()
46 p += diff; in OnUnmap()
47 size -= diff; in OnUnmap()
49 diff = p + size - RoundDown(p + size, kPageSize); in OnUnmap()
50 if (diff != 0) in OnUnmap()
51 size -= diff; in OnUnmap()
/freebsd/tests/sys/net/routing/
H A Drtsock_common.h432 snprintf(msg, sz, "addr diff: %s vs %s", a_s, b_s); in sa_equal_msg_flags()
436 snprintf(msg, sz, "port diff: %d vs %d", in sa_equal_msg_flags()
444 snprintf(msg, sz, "zero diff: 0x%08X%08X vs 0x%08X%08X", in sa_equal_msg_flags()
456 snprintf(msg, sz, "addr diff: %s vs %s", a_s, b_s); in sa_equal_msg_flags()
460 snprintf(msg, sz, "scope diff: %u vs %u", a6->sin6_scope_id, b6->sin6_scope_id); in sa_equal_msg_flags()
469 snprintf(msg, sz, "sdl_index diff: %u vs %u", al->sdl_index, bl->sdl_index); in sa_equal_msg_flags()
477 snprintf(msg, sz, "sdl_alen diff: {%s} (%d) vs {%s} (%d)", in sa_equal_msg_flags()
483 snprintf(msg, sz, "sdl_type diff: %u vs %u", al->sdl_type, bl->sdl_type); in sa_equal_msg_flags()
494 snprintf(msg, sz, "sdl_nlen diff: {%s} (%d) vs {%s} (%d)", in sa_equal_msg_flags()
513 snprintf(msg, sz, "overall memcmp() reports diff for af %d offset %d", in sa_equal_msg_flags()
/freebsd/contrib/bmake/unit-tests/
H A Dmeta-output.mk24 # The diff at the end should produce nothing.
29 ${DIFF:Udiff} ${TMPDIR}/obj/output ${TMPDIR}/obj/output-meta; }
/freebsd/usr.bin/bsdiff/bspatch/
H A Dbspatch.c128 /* open patch file for diff block */ in main()
177 32+X Y bzip2(diff block) in main()
180 from oldfile to x bytes from the diff block; copy y bytes from the in main()
255 /* Read diff string */ in main()
261 /* Add old data to diff string */ in main()
/freebsd/usr.sbin/etcupdate/
H A Detcupdate.sh69 etcupdate diff [-d workdir] [-D destdir] [-I patterns] [-L logfile]
245 # Remove empty files. These just clutter the output of 'diff'.
396 diff -qI '\$FreeBSD.*\$' $1 $2 >/dev/null 2>&1
482 # Output a diff of two directory entries with the same relative name
536 diff -u $diffargs -L "$3 ($4)" $1/$3 -L "$3 ($5)" $2/$3
739 diff --changed-group-format='<<<<<<< (local)
936 echo -n "Select: (p) postpone, (df) diff-full, (e) edit,"
945 diff -u ${DESTDIR}$1 ${CONFLICTS}$1
953 (df) diff-full - show all changes made to merged file
1248 # nothing. Otherwise, generate a diff o
[all...]

12345678910>>...44