Home
last modified time | relevance | path

Searched full:old (Results 1 – 25 of 1251) sorted by relevance

12345678910>>...51

/openbmc/openbmc/poky/bitbake/lib/simplediff/
H A D__init__.py17 def diff(old, new): argument
25 old the old list of immutable, comparable values (ie. a list
32 the original old and/or new lists. The first part of the pair
55 # Create a map from old values to their indices
57 for i, val in enumerate(old):
60 # Find the largest substring common to old and new.
65 # length of the largest suffix of `old[:i]` equal to a suffix
66 # of `new[:inew]` (or unset when `old[i]` != `new[inew]`).
70 # is built from the old one.
78 # substring in the old list. `sub_start_new` is the index of the beginning
[all …]
/openbmc/qemu/bsd-user/freebsd/
H A Dsyscall_nr.h16 /* 8 is old creat */
27 /* 19 is old lseek */
46 /* 38 is old stat */
48 /* 40 is old lstat */
54 /* 46 is old sigaction */
56 /* 48 is old sigprocmask */
60 /* 52 is old sigpending */
70 /* 62 is old fstat */
71 /* 63 is old getkerninfo */
72 /* 64 is old getpagesize */
[all …]
/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/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/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/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/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/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/nios2/include/asm/bitops/
H A Dnon-atomic.h53 * __test_and_set_bit - Set a bit and return its old value
65 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()
72 * __test_and_clear_bit - Clear a bit and return its old value
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()
[all …]
H A Datomic.h119 * test_and_set_bit - Set a bit and return its old value
131 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()
143 * test_and_clear_bit - Clear a bit and return its old value
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()
[all …]
/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/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/phosphor-gpio-monitor/multi-presence/
H A Dgpio_presence.hpp74 GpioPresence(GpioPresence&& old) noexcept : in GpioPresence() argument
75 gpioLine(old.gpioLine), gpioConfig(old.gpioConfig), in GpioPresence()
76 gpioEventDescriptor(old.gpioEventDescriptor.get_executor()), in GpioPresence()
77 inventory(std::move(old.inventory)), in GpioPresence()
78 interfaces(std::move(old.interfaces)), name(std::move(old.name)), in GpioPresence()
79 gpioLineMsg(std::move(old.gpioLineMsg)) in GpioPresence()
81 old.cancelEventHandler(); in GpioPresence()
83 gpioEventDescriptor = std::move(old.gpioEventDescriptor); in GpioPresence()
/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/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/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/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-.*"
/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/tools/
H A Dfdt_host.h19 * @old: Old device tree blog
21 * @old
28 int fdt_remove_unused_strings(const void *old, void *new);
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-multimedia/libmad/libmad/
H A Dadd-pkgconfig.patch19 diff -Naur libmad-0.15.1b.old/configure.ac libmad-0.15.1b/configure.ac
20 --- libmad-0.15.1b.old/configure.ac 2004-01-23 10:41:32.000000000 +0100
29 diff -Naur libmad-0.15.1b.old/mad.pc.in libmad-0.15.1b/mad.pc.in
30 --- libmad-0.15.1b.old/mad.pc.in 1970-01-01 01:00:00.000000000 +0100
47 diff -Naur libmad-0.15.1b.old/Makefile.am libmad-0.15.1b/Makefile.am
48 --- libmad-0.15.1b.old/Makefile.am 2004-02-17 03:02:03.000000000 +0100
/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/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/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/docs/
H A Dqdev-device-use.txt41 The old ways to define block devices define host and guest part
48 The various old ways to define drives all boil down to the common form
62 The old OPTS get split into HOST-OPTS and DEV-OPTS as follows:
73 * media is special. In the old way, it selects disk vs. CD-ROM with
90 The old way implicitly creates SCSI controllers as needed. The new
128 For USB devices, the old way was actually different:
134 The old way provided much less control than -drive's OPTS... The new
153 The old ways to define character devices define host and guest part
159 The various old ways to define a character device are all of the
240 The old way to define the guest part looks like this:
[all …]
/openbmc/openbmc/poky/meta/recipes-extended/zip/zip-3.0/
H A D0001-unix-configure-use-_Static_assert-to-do-correct-dete.patch33 echo -- UID/GID test failed on compile - disabling old 16-bit UID/GID support
40 - echo -- UID not 2 bytes - disabling old 16-bit UID/GID support
43 - echo -- GID not 2 bytes - disabling old 16-bit UID/GID support
46 - echo -- 16-bit UIDs and GIDs - keeping old 16-bit UID/GID support
48 - echo -- test failed - conftest returned $r - disabling old 16-bit UID/GID support
51 + echo -- 16-bit UIDs and GIDs - keeping old 16-bit UID/GID support

12345678910>>...51