| /openbmc/qemu/target/i386/emulate/ |
| H A D | x86_flags.c | 119 uint32_t diff) in SET_FLAGS_OSZAPC_SUB32() argument 121 SET_FLAGS_OSZAPC_32(SUB_COUT_VEC(v1, v2, diff), diff); in SET_FLAGS_OSZAPC_SUB32() 125 uint16_t diff) in SET_FLAGS_OSZAPC_SUB16() argument 127 SET_FLAGS_OSZAPC_16(SUB_COUT_VEC(v1, v2, diff), diff); in SET_FLAGS_OSZAPC_SUB16() 131 uint8_t diff) in SET_FLAGS_OSZAPC_SUB8() argument 133 SET_FLAGS_OSZAPC_8(SUB_COUT_VEC(v1, v2, diff), diff); in SET_FLAGS_OSZAPC_SUB8() 137 uint32_t diff) in SET_FLAGS_OSZAPC_ADD32() argument 139 SET_FLAGS_OSZAPC_32(ADD_COUT_VEC(v1, v2, diff), diff); in SET_FLAGS_OSZAPC_ADD32() 143 uint16_t diff) in SET_FLAGS_OSZAPC_ADD16() argument 145 SET_FLAGS_OSZAPC_16(ADD_COUT_VEC(v1, v2, diff), diff); in SET_FLAGS_OSZAPC_ADD16() [all …]
|
| H A D | x86_flags.h | 37 uint32_t diff); 39 uint16_t diff); 41 uint8_t diff); 44 uint32_t diff); 46 uint16_t diff); 48 uint8_t diff); 51 uint32_t diff); 53 uint16_t diff); 55 uint8_t diff); 58 uint32_t diff); [all …]
|
| /openbmc/qemu/ |
| H A D | .gitattributes | 1 *.c.inc diff=c 2 *.h.inc diff=c 3 *.m diff=objc 4 *.py diff=python 5 *.rs diff=rust 6 *.rs.inc diff=rust 7 Cargo.lock diff=toml merge=binary
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-dbs/rocksdb/files/ |
| H A D | 0001-replace-old-sync-with-new-atomic-builtin-equivalents.patch | 16 diff --git a/utilities/transactions/lock/range/range_tree/lib/portability/toku_atomic.h b/utilities… 22 U diff) { 24 - return __sync_fetch_and_add(addr, diff); 25 + return __atomic_fetch_add(addr, diff, 5); 29 U diff) { 31 - return __sync_add_and_fetch(addr, diff); 32 + return __atomic_add_fetch(addr, diff, 5); 36 U diff) { 38 - return __sync_fetch_and_sub(addr, diff); 39 + return __atomic_fetch_sub(addr, diff, 5); [all …]
|
| /openbmc/u-boot/post/drivers/ |
| H A D | rtc.c | 31 static int rtc_post_skip (ulong * diff) in rtc_post_skip() argument 51 *diff = start2 - start1; in rtc_post_skip() 71 ulong diff; in rtc_post_test() local 87 if (rtc_post_skip (&diff) != 0) { in rtc_post_test() 94 if (rtc_post_skip (&diff) != 0) { in rtc_post_test() 100 if (diff < 950 || diff > 1050) { in rtc_post_test() 109 if (rtc_post_skip (&diff) != 0) { in rtc_post_test() 131 if (rtc_post_skip (&diff) != 0) { in rtc_post_test() 163 if (rtc_post_skip (&diff) != 0) { in rtc_post_test()
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/kconfig-frontends/files/ |
| H A D | 0001-Switch-utils-kconfig-diff-to-use-Python-3.patch | 4 Subject: [PATCH] Switch utils/kconfig-diff to use Python 3 11 utils/kconfig-diff | 2 +- 14 diff --git a/utils/kconfig-diff b/utils/kconfig-diff 16 --- a/utils/kconfig-diff 17 +++ b/utils/kconfig-diff
|
| /openbmc/openbmc/poky/scripts/ |
| H A D | sstate-sysroot-cruft.sh | 26 Text file, each line is regular expression for paths we want to ignore in resulting diff. 27 You can use diff file from the script output, if it contains only expected exceptions. 161 diff ${OUTPUT}/master.list.all.txt ${OUTPUT}/master.list.txt > ${OUTPUT}/duplicates.txt 162 diff ${OUTPUT}/master.list.txt ${OUTPUT}/sysroot.list.txt > ${OUTPUT}/diff.all.txt 164 grep "^> ." ${OUTPUT}/diff.all.txt | sed 's/^> //g' > ${OUTPUT}/diff.txt 166 sed -i "\\#^${item}\$#d" ${OUTPUT}/diff.txt; 173 sed -i "\\#^${item}\$#d" ${OUTPUT}/diff.txt; 180 RESULT=`cat ${OUTPUT}/diff.txt | wc -l` 185 cat ${OUTPUT}/diff.txt
|
| H A D | buildstats-diff | 75 diff = BSVerDiff(bs1, bs2) 80 if diff.new: 83 for name, val in sorted(diff.new.items()): 86 if diff.dropped: 89 for name, val in sorted(diff.dropped.items()): 93 if diff.rchanged: 96 for name, val in sorted(diff.rchanged.items()): 101 if diff.vchanged: 104 for name, val in sorted(diff.vchanged.items()): 109 if diff.echanged: [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-gnome/recipes-support/accountsservice/accountsservice/ |
| H A D | accountsservice-23.13.9-c99-fixes.patch | 19 subprojects/packagefiles/mocklibc-print-indent.diff | 13 +++++++++++++ 21 create mode 100644 subprojects/packagefiles/mocklibc-print-indent.diff 23 diff --git a/subprojects/mocklibc.wrap b/subprojects/mocklibc.wrap 32 +diff_files = mocklibc-print-indent.diff 33 diff --git a/subprojects/packagefiles/mocklibc-print-indent.diff b/subprojects/packagefiles/mocklib… 37 +++ b/subprojects/packagefiles/mocklibc-print-indent.diff 39 +diff -up mocklibc-1.0/src/netgroup-debug.c.print-indent mocklibc-1.0/src/netgroup-debug.c
|
| /openbmc/qemu/tests/qtest/ |
| H A D | rtl8139-test.c | 75 unsigned cnt, diff; in test_timer() local 97 diff = (curr-prev) & 0xffffffffu; in test_timer() 98 if (diff < from || diff > to) { in test_timer() 99 fatal("Invalid diff %u (%u-%u)\n", diff, from, to); in test_timer() 157 diff = (curr-prev) & 0xffffffffu; in test_timer() 158 if (diff < from || diff > to) { in test_timer() 159 fatal("Invalid diff %u (%u-%u)\n", diff, from, to); in test_timer()
|
| /openbmc/bmcweb/include/ |
| H A D | human_sort.hpp | 57 const int diff = *l - *r; in alphanumComp() local 59 if (diff != 0) in alphanumComp() 61 return diff; in alphanumComp() 81 const int diff = lInt - rInt; in alphanumComp() local 82 if (diff != 0) in alphanumComp() 84 return diff; in alphanumComp()
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/canonical-multitouch/geis/ |
| H A D | 0001-provide-function-declaration-with-prototypes.patch | 60 diff --git a/libgeis/backend/grail/geis_grail_window_grab.c b/libgeis/backend/grail/geis_grail_wind… 73 diff --git a/libgeis/backend/grail/geis_ugsubscription_store.c b/libgeis/backend/grail/geis_ugsubsc… 86 diff --git a/libgeis/backend/grail/geis_ugsubscription_store.h b/libgeis/backend/grail/geis_ugsubsc… 99 diff --git a/libgeis/backend/test_fixture/geis_backend_test_fixture.c b/libgeis/backend/test_fixtur… 120 diff --git a/libgeis/geis.c b/libgeis/geis.c 133 diff --git a/libgeis/geis_backend_multiplexor.c b/libgeis/geis_backend_multiplexor.c 155 diff --git a/libgeis/geis_backend_multiplexor.h b/libgeis/geis_backend_multiplexor.h 168 diff --git a/libgeis/geis_class.c b/libgeis/geis_class.c 181 diff --git a/libgeis/geis_class.h b/libgeis/geis_class.h 194 diff --git a/libgeis/geis_device.c b/libgeis/geis_device.c [all …]
|
| /openbmc/openbmc/poky/meta/recipes-devtools/expect/expect/ |
| H A D | 0001-Replace-tclsh-with-tclsh8-in-the-scripts-used-in-the.patch | 56 diff --git a/example/archie b/example/archie 69 diff --git a/example/autoexpect b/example/autoexpect 82 diff --git a/example/autopasswd b/example/autopasswd 95 diff --git a/example/chess.exp b/example/chess.exp 108 diff --git a/example/cryptdir b/example/cryptdir 121 diff --git a/example/decryptdir b/example/decryptdir 134 diff --git a/example/dislocate b/example/dislocate 147 diff --git a/example/dvorak b/example/dvorak 160 diff --git a/example/ftp-inband b/example/ftp-inband 173 diff --git a/example/ftp-rfc b/example/ftp-rfc [all …]
|
| /openbmc/openbmc/poky/meta/lib/oeqa/runtime/cases/ |
| H A D | login.py | 76 diff = True 78 while diff != 0 and time.time() < timeout: 111 diff=float(compare_out.stderr.replace("(", "").replace(")","").split()[1]) 112 if diff > 0: 114 … self.fail("Screenshot diff is {0}. Failed image stored in {1}".format(str(diff), savedfile)) 116 self.assertEqual(0, diff, "Screenshot diff is {0}.".format(str(diff)))
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/daemontools/daemontools/ |
| H A D | 0001-Fix-signature-of-main-function.patch | 27 diff --git a/src/chkshsgr.c b/src/chkshsgr.c 40 diff --git a/src/tai64n.c b/src/tai64n.c 53 diff --git a/src/tai64nlocal.c b/src/tai64nlocal.c 66 diff --git a/src/trycpp.c b/src/trycpp.c 80 diff --git a/src/tryflock.c b/src/tryflock.c 95 diff --git a/src/trymkffo.c b/src/trymkffo.c 108 diff --git a/src/trypoll.c b/src/trypoll.c 123 diff --git a/src/trysgact.c b/src/trysgact.c 138 diff --git a/src/trysgprm.c b/src/trysgprm.c 153 diff --git a/src/tryshsgr.c b/src/tryshsgr.c [all …]
|
| /openbmc/qemu/replay/ |
| H A D | replay-internal.c | 246 int diff = (int)(current_icount - replay_state.current_icount); in replay_advance_current_icount() local 249 assert(diff >= 0); in replay_advance_current_icount() 252 if (diff > 0) { in replay_advance_current_icount() 254 replay_put_dword(diff); in replay_advance_current_icount() 255 replay_state.current_icount += diff; in replay_advance_current_icount() 258 if (diff > 0) { in replay_advance_current_icount() 259 replay_state.instruction_count -= diff; in replay_advance_current_icount() 260 replay_state.current_icount += diff; in replay_advance_current_icount()
|
| /openbmc/openbmc/poky/bitbake/lib/simplediff/ |
| H A D | __init__.py | 17 def diff(old, new): function 107 return diff(old[ : sub_start_old], new[ : sub_start_new]) + \ 109 diff(old[sub_start_old + sub_length : ], 139 return diff(old.split(), new.split()) 193 result = diff(old, new)
|
| /openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/libtext/ |
| H A D | libtext-diff-perl_1.41.bb | 2 DESCRIPTION = "diff() provides a basic set of services akin to the GNU diff \ 3 utility. It is not anywhere near as feature complete as GNU diff, but it is \ 5 faster than shelling out to a system's diff executable for small files, \ 24 RDEPENDS:${PN} = " libalgorithm-diff-perl \
|
| /openbmc/openbmc/poky/meta/recipes-support/libevent/libevent/ |
| H A D | 0002-test-regress.h-Increase-default-timeval-tolerance-50.patch | 21 diff --git a/test/regress.h b/test/regress.h 26 tt_int_op(labs(timeval_msec_diff((tv1), (tv2)) - diff), <=, tolerance) 28 #define test_timeval_diff_eq(tv1, tv2, diff) \ 29 - test_timeval_diff_leq((tv1), (tv2), (diff), 50) 30 + test_timeval_diff_leq((tv1), (tv2), (diff), 100)
|
| /openbmc/u-boot/test/ |
| H A D | time_ut.c | 13 ulong base, start, next, diff; in test_get_timer() local 35 diff = get_timer(base); in test_get_timer() 36 if (diff != iter && diff != iter + 1) { in test_get_timer() 38 __func__, diff, iter); in test_get_timer()
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-core/sdbus-c++/sdbus-c++-libsystemd/ |
| H A D | 0003-src-basic-missing.h-check-for-missing-strndupa.patch | 77 diff --git a/meson.build b/meson.build 89 diff --git a/src/backlight/backlight.c b/src/backlight/backlight.c 101 diff --git a/src/basic/cgroup-util.c b/src/basic/cgroup-util.c 113 diff --git a/src/basic/env-util.c b/src/basic/env-util.c 125 diff --git a/src/basic/log.c b/src/basic/log.c 137 diff --git a/src/basic/missing_stdlib.h b/src/basic/missing_stdlib.h 157 diff --git a/src/basic/mkdir.c b/src/basic/mkdir.c 169 diff --git a/src/basic/mountpoint-util.c b/src/basic/mountpoint-util.c 181 diff --git a/src/basic/parse-util.c b/src/basic/parse-util.c 193 diff --git a/src/basic/path-lookup.c b/src/basic/path-lookup.c [all …]
|
| /openbmc/qemu/target/arm/tcg/ |
| H A D | neon-dp.decode | 533 &3diff vm vn vd size 535 @3diff .... ... . . . size:2 .... .... .... . . . . .... \ 536 &3diff vm=%vm_dp vn=%vn_dp vd=%vd_dp 538 VADDL_S_3d 1111 001 0 1 . .. .... .... 0000 . 0 . 0 .... @3diff 539 VADDL_U_3d 1111 001 1 1 . .. .... .... 0000 . 0 . 0 .... @3diff 541 VADDW_S_3d 1111 001 0 1 . .. .... .... 0001 . 0 . 0 .... @3diff 542 VADDW_U_3d 1111 001 1 1 . .. .... .... 0001 . 0 . 0 .... @3diff 544 VSUBL_S_3d 1111 001 0 1 . .. .... .... 0010 . 0 . 0 .... @3diff 545 VSUBL_U_3d 1111 001 1 1 . .. .... .... 0010 . 0 . 0 .... @3diff 547 VSUBW_S_3d 1111 001 0 1 . .. .... .... 0011 . 0 . 0 .... @3diff [all …]
|
| /openbmc/openbmc/poky/meta/recipes-gnome/gtk-doc/files/ |
| H A D | 0001-Do-not-hardocode-paths-to-perl-python-in-scripts.patch | 26 diff --git a/gtkdoc-check.in b/gtkdoc-check.in 36 diff --git a/gtkdoc-depscan.in b/gtkdoc-depscan.in 46 diff --git a/gtkdoc-fixxref.in b/gtkdoc-fixxref.in 56 diff --git a/gtkdoc-mkdb.in b/gtkdoc-mkdb.in 66 diff --git a/gtkdoc-mkhtml.in b/gtkdoc-mkhtml.in 76 diff --git a/gtkdoc-mkman.in b/gtkdoc-mkman.in 86 diff --git a/gtkdoc-mkpdf.in b/gtkdoc-mkpdf.in 96 diff --git a/gtkdoc-rebase.in b/gtkdoc-rebase.in 106 diff --git a/gtkdoc-scan.in b/gtkdoc-scan.in 116 diff --git a/gtkdoc-scangobj.in b/gtkdoc-scangobj.in [all …]
|
| /openbmc/u-boot/arch/powerpc/lib/ |
| H A D | extable.c | 36 long diff; in search_one_table() local 38 diff = first->insn - value; in search_one_table() 39 if (diff == 0) in search_one_table()
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/uml-utilities/uml-utilities-20040406/ |
| H A D | 0001-makefiles-Append-to-CFLAGS-instead-of-re-assign.patch | 21 diff --git a/jailtest/Makefile b/jailtest/Makefile 33 diff --git a/mconsole/Makefile b/mconsole/Makefile 45 diff --git a/moo/Makefile b/moo/Makefile 58 diff --git a/port-helper/Makefile b/port-helper/Makefile 70 diff --git a/tunctl/Makefile b/tunctl/Makefile 82 diff --git a/uml_net/Makefile b/uml_net/Makefile 95 diff --git a/uml_router/Makefile b/uml_router/Makefile 108 diff --git a/watchdog/Makefile b/watchdog/Makefile
|