Home
last modified time | relevance | path

Searched refs:old (Results 1 – 25 of 567) sorted by relevance

12345678910>>...23

/openbmc/openbmc/poky/bitbake/lib/simplediff/
H A D__init__.py17 def diff(old, new): argument
57 for i, val in enumerate(old):
103 return (old and [('-', old)] or []) + (new and [('+', new)] or [])
107 return diff(old[ : sub_start_old], new[ : sub_start_new]) + \
109 diff(old[sub_start_old + sub_length : ],
113 def string_diff(old, new): argument
139 return diff(old.split(), new.split())
142 def html_diff(old, new): argument
166 return " ".join([(con[a])(" ".join(b)) for a, b in string_diff(old, new)])
169 def check_diff(old, new): argument
[all …]
/openbmc/qemu/tests/tcg/hexagon/
H A Datomics.c32 int32_t old, dummy; in atomic_inc32() local
38 : "=&r"(old), "=&r"(dummy) in atomic_inc32()
41 return old; in atomic_inc32()
46 int64_t old, dummy; in atomic_inc64() local
53 : "=&r"(old), "=&r"(dummy) in atomic_inc64()
56 return old; in atomic_inc64()
61 int32_t old, dummy; in atomic_dec32() local
67 : "=&r"(old), "=&r"(dummy) in atomic_dec32()
70 return old; in atomic_dec32()
75 int64_t old, dummy; in atomic_dec64() local
[all …]
/openbmc/qemu/linux-user/hppa/
H A Dcpu_loop.c31 abi_ulong old = env->gr[25]; in hppa_lws() local
43 old = tswap32(old); in hppa_lws()
45 ret = qatomic_cmpxchg((uint32_t *)g2h(cs, addr), old, new); in hppa_lws()
54 if (((addr | old | new) & ((1 << size) - 1)) in hppa_lws()
56 || !access_ok(cs, VERIFY_READ, old, 1 << size) in hppa_lws()
64 old = *(uint8_t *)g2h(cs, old); in hppa_lws()
66 ret = qatomic_cmpxchg((uint8_t *)g2h(cs, addr), old, new); in hppa_lws()
67 ret = ret != old; in hppa_lws()
70 old = *(uint16_t *)g2h(cs, old); in hppa_lws()
72 ret = qatomic_cmpxchg((uint16_t *)g2h(cs, addr), old, new); in hppa_lws()
[all …]
/openbmc/u-boot/arch/nios2/include/asm/bitops/
H A Datomic.h131 unsigned long old; in test_and_set_bit() local
135 old = *p; in test_and_set_bit()
136 *p = old | mask; in test_and_set_bit()
139 return (old & mask) != 0; in test_and_set_bit()
155 unsigned long old; in test_and_clear_bit() local
159 old = *p; in test_and_clear_bit()
160 *p = old & ~mask; in test_and_clear_bit()
163 return (old & mask) != 0; in test_and_clear_bit()
178 unsigned long old; in test_and_change_bit() local
182 old = *p; in test_and_change_bit()
[all …]
H A Dnon-atomic.h65 unsigned long old = *p; in __test_and_set_bit() local
67 *p = old | mask; in __test_and_set_bit()
68 return (old & mask) != 0; in __test_and_set_bit()
84 unsigned long old = *p; in __test_and_clear_bit() local
86 *p = old & ~mask; in __test_and_clear_bit()
87 return (old & mask) != 0; in __test_and_clear_bit()
96 unsigned long old = *p; in __test_and_change_bit() local
98 *p = old ^ mask; in __test_and_change_bit()
99 return (old & mask) != 0; in __test_and_change_bit()
/openbmc/qemu/host/include/generic/host/
H A Dstore-insert-al16.h.inc24 Int128Alias old, new;
28 old.u = *pu;
31 new.s = int128_and(old.s, msk);
33 } while (!__atomic_compare_exchange_n(pu, &old.u, new.u, true,
36 Int128 old, new, cmp;
39 old = *ps;
42 cmp = old;
43 new = int128_and(old, msk);
45 old = atomic16_cmpxchg(ps, cmp, new);
46 } while (int128_ne(cmp, old));
/openbmc/phosphor-gpio-monitor/multi-presence/
H A Dgpio_presence.hpp77 GpioPresence(GpioPresence&& old) noexcept : in GpioPresence() argument
78 gpioLine(old.gpioLine), gpioConfig(old.gpioConfig), in GpioPresence()
79 gpioEventDescriptor(old.gpioEventDescriptor.get_executor()), in GpioPresence()
80 inventory(std::move(old.inventory)), in GpioPresence()
81 interfaces(std::move(old.interfaces)), name(std::move(old.name)), in GpioPresence()
82 gpioLineMsg(std::move(old.gpioLineMsg)) in GpioPresence()
84 old.cancelEventHandler(); in GpioPresence()
86 gpioEventDescriptor = std::move(old.gpioEventDescriptor); in GpioPresence()
/openbmc/u-boot/Documentation/sphinx/
H A Dparse-headers.pl178 my ($type, $old, $new, $reftype);
182 $old = $2;
197 $new = "$reftype:`$old <$new>`";
200 $ioctls{$old} = $new if (exists($ioctls{$old}));
204 $defines{$old} = $new if (exists($defines{$old}));
208 $enum_symbols{$old} = $new if (exists($enum_symbols{$old}));
212 $typedefs{$old} = $new if (exists($typedefs{$old}));
216 $enums{$old} = $new if (exists($enums{$old}));
220 $structs{$old} = $new if (exists($structs{$old}));
/openbmc/u-boot/tools/libfdt/
H A Dfdt_rw.c5 int fdt_remove_unused_strings(const void *old, void *new) in fdt_remove_unused_strings() argument
9 int size = fdt_totalsize(old); in fdt_remove_unused_strings()
16 memcpy(new, old, size); in fdt_remove_unused_strings()
21 tag = fdt_next_tag(old, offset, &next_offset); in fdt_remove_unused_strings()
24 old_prop = fdt_get_property_by_offset(old, offset, NULL); in fdt_remove_unused_strings()
27 str = fdt_string(old, fdt32_to_cpu(old_prop->nameoff)); in fdt_remove_unused_strings()
/openbmc/openbmc/poky/meta/recipes-devtools/rsync/files/
H A Dmakefile-no-rebuild.patch27 - @if test -f configure.sh; then cp -p configure.sh configure.sh.old; else touch configure.sh.old; …
28 - @if test -f config.h.in; then cp -p config.h.in config.h.in.old; else touch config.h.in.old; fi
31 - @if diff configure.sh configure.sh.old >/dev/null 2>&1; then \
33 - rm configure.sh.old; \
37 - @if diff config.h.in config.h.in.old >/dev/null 2>&1; then \
39 - rm config.h.in.old; \
43 - @if test -f configure.sh.old || test -f config.h.in.old; then \
63 - @if test -f Makefile; then cp -p Makefile Makefile.old; else touch Makefile.old; fi
65 - @if diff Makefile Makefile.old >/dev/null 2>&1; then \
67 - rm Makefile.old; \
/openbmc/qemu/accel/tcg/
H A Datomic_template.h162 XDATA_TYPE *haddr, cmp, old, new, val = xval; \ in GEN_ATOMIC_HELPER()
167 old = cmp; new = FN(old, val); \ in GEN_ATOMIC_HELPER()
168 cmp = qatomic_cmpxchg__nocheck(haddr, old, new); \ in GEN_ATOMIC_HELPER()
169 } while (cmp != old); \ in GEN_ATOMIC_HELPER()
172 VALUE_LOW(old), \ in GEN_ATOMIC_HELPER()
173 VALUE_HIGH(old), \ in GEN_ATOMIC_HELPER()
180 GEN_ATOMIC_HELPER_FN(fetch_smin, MIN, SDATA_TYPE, old)
181 GEN_ATOMIC_HELPER_FN(fetch_umin, MIN, DATA_TYPE, old)
182 GEN_ATOMIC_HELPER_FN(fetch_smax, MAX, SDATA_TYPE, old)
183 GEN_ATOMIC_HELPER_FN(fetch_umax, MAX, DATA_TYPE, old)
[all …]
/openbmc/u-boot/arch/sandbox/include/asm/
H A Dbitops.h55 unsigned long old = *p; in __test_and_set_bit() local
57 *p = old | mask; in __test_and_set_bit()
58 return (old & mask) != 0; in __test_and_set_bit()
77 unsigned long old = *p; in __test_and_clear_bit() local
79 *p = old & ~mask; in __test_and_clear_bit()
80 return (old & mask) != 0; in __test_and_clear_bit()
101 unsigned long old = *p; in __test_and_change_bit() local
103 *p = old ^ mask; in __test_and_change_bit()
104 return (old & mask) != 0; in __test_and_change_bit()
/openbmc/u-boot/arch/powerpc/include/asm/
H A Dbitops.h33 unsigned long old; in set_bit() local
43 : "=&r" (old), "=m" (*p) in set_bit()
50 unsigned long old; in clear_bit() local
60 : "=&r" (old), "=m" (*p) in clear_bit()
67 unsigned long old; in change_bit() local
77 : "=&r" (old), "=m" (*p) in change_bit()
84 unsigned int old, t; in test_and_set_bit() local
94 : "=&r" (old), "=&r" (t), "=m" (*p) in test_and_set_bit()
98 return (old & mask) != 0; in test_and_set_bit()
103 unsigned int old, t; in test_and_clear_bit() local
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/rdist/rdist-6.1.5/
H A Drdist-6.1.5-oldpath.patch9 * don't have the old rdist, then uncomment the "#undef" line.
22 was compiled with the location of the old rdist
26 -.I /usr/old/rdist)
46 The way the old rdist started a server rdist is to run "rdist
48 -will exec a copy of the old rdist (usually /usr/old/rdist or
50 +will exec a copy of the old rdist (the path /usr/bin/oldrdist in Red
52 running the old rdist attempting to rdist to a machine running new
54 running the old rdist, then it must run the old rdist program
55 -(/usr/old/rdist or /usr/ucb/oldrdist).
59 location of the old rdist. If this is not defined, or the defined
/openbmc/openbmc/poky/scripts/
H A Doepydevshell-internal.py21 old = termios.tcgetattr(fd)
22 old[3] = old[3] | termios.ECHO | termios.ICANON
23 termios.tcsetattr(fd, termios.TCSADRAIN, old)
26 old = termios.tcgetattr(fd)
27 old[3] = old[3] &~ termios.ECHO &~ termios.ICANON
28 termios.tcsetattr(fd, termios.TCSADRAIN, old)
/openbmc/qemu/include/qemu/
H A Dbitops.h136 unsigned long old = *p; in test_and_set_bit() local
138 *p = old | mask; in test_and_set_bit()
139 return (old & mask) != 0; in test_and_set_bit()
151 unsigned long old = *p; in test_and_clear_bit() local
153 *p = old & ~mask; in test_and_clear_bit()
154 return (old & mask) != 0; in test_and_clear_bit()
166 unsigned long old = *p; in test_and_change_bit() local
168 *p = old ^ mask; in test_and_change_bit()
169 return (old & mask) != 0; in test_and_change_bit()
339 uint32_t old = *p; in test_and_set_bit32() local
[all …]
/openbmc/u-boot/arch/arm/include/asm/
H A Dbitops.h48 unsigned long old = *p; in __test_and_set_bit() local
50 *p = old | mask; in __test_and_set_bit()
51 return (old & mask) != 0; in __test_and_set_bit()
70 unsigned long old = *p; in __test_and_clear_bit() local
72 *p = old & ~mask; in __test_and_clear_bit()
73 return (old & mask) != 0; in __test_and_clear_bit()
94 unsigned long old = *p; in __test_and_change_bit() local
96 *p = old ^ mask; in __test_and_change_bit()
97 return (old & mask) != 0; in __test_and_change_bit()
/openbmc/u-boot/include/linux/
H A Drbtree_augmented.h27 void (*copy)(struct rb_node *old, struct rb_node *new);
28 void (*rotate)(struct rb_node *old, struct rb_node *new);
32 void (*augment_rotate)(struct rb_node *old, struct rb_node *new));
57 rbstruct *old = rb_entry(rb_old, rbstruct, rbfield); \
59 new->rbaugmented = old->rbaugmented; \
64 rbstruct *old = rb_entry(rb_old, rbstruct, rbfield); \
66 new->rbaugmented = old->rbaugmented; \
67 old->rbaugmented = rbcompute(old); \
98 __rb_change_child(struct rb_node *old, struct rb_node *new, in __rb_change_child() argument
102 if (parent->rb_left == old) in __rb_change_child()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/libsoup/libsoup-2.4/
H A D0001-Fix-build-with-libxml2-2.12.0-and-clang-17.patch9 | ../libsoup-2.74.3/libsoup/soup-xmlrpc-old.c:512:8: error: call to undeclared function 'xmlParseMe…
14 libsoup/soup-xmlrpc-old.c | 1 +
18 diff --git a/libsoup/soup-xmlrpc-old.c b/libsoup/soup-xmlrpc-old.c
20 --- a/libsoup/soup-xmlrpc-old.c
21 +++ b/libsoup/soup-xmlrpc-old.c
29 #include "soup-xmlrpc-old.h"
/openbmc/openbmc/meta-google/recipes-google/networking/gbmc-bridge/
H A Dgbmc-br-nft.sh69 local old=${gbmc_br_nft_pfx["$pfx"]-0}
72 new=$((old + 1))
74 new=$((old - 1))
82 if (( old <= 0 && new >= 1 || old >= 1 && new <= 0 )); then
/openbmc/u-boot/arch/arm/cpu/arm926ejs/mxs/
H A Dtimer.c123 uint32_t old, new, incr; in __udelay() local
126 old = readl(MXS_HW_DIGCTL_MICROSECONDS); in __udelay()
132 if (new < old) { in __udelay()
133 incr = 0xffffffff - old; in __udelay()
136 incr = new - old; in __udelay()
148 old = new; in __udelay()
/openbmc/qemu/target/mips/system/
H A Dcp0.c64 target_ulong old = env->CP0_Status; in cpu_mips_store_status() local
80 env->CP0_Status = (old & ~mask) | (val & mask); in cpu_mips_store_status()
82 if ((env->CP0_Status ^ old) & (old & (7 << CP0St_UX))) { in cpu_mips_store_status()
97 uint32_t old = env->CP0_Cause; in cpu_mips_store_cause() local
109 if ((old ^ env->CP0_Cause) & (1 << CP0Ca_DC)) { in cpu_mips_store_cause()
119 if ((old ^ env->CP0_Cause) & (1 << (CP0Ca_IP + i))) { in cpu_mips_store_cause()
/openbmc/u-boot/drivers/sound/
H A Dmaxim_codec.c72 unsigned char old, new; in maxim_bic_or() local
74 if (maxim_i2c_read(priv, reg, &old) != 0) in maxim_bic_or()
76 new = (old & ~mask) | (value & mask); in maxim_bic_or()
77 change = (old != new) ? 1 : 0; in maxim_bic_or()
/openbmc/qemu/migration/
H A Dcolo-failover.c63 FailoverStatus old; in failover_set_state() local
65 old = qatomic_cmpxchg(&failover_state, old_state, new_state); in failover_set_state()
66 if (old == old_state) { in failover_set_state()
69 return old; in failover_set_state()
/openbmc/openbmc/meta-openembedded/meta-xfce/recipes-art/xfwm4-themes/
H A Dxfwm4-themes_4.10.0.bb1 SUMMARY = "Additional (old) themes for Xfwm4"
12 # multiple providers. So we use xfwm4-old-theme here.
15 do_split_packages(d, themedir, '^(.*)', 'xfwm4-old-theme-%s', 'XFWM4 theme %s', allow_dirs=True)
18 PACKAGES_DYNAMIC += "^xfwm4-old-theme-.*"

12345678910>>...23