Home
last modified time | relevance | path

Searched refs:old_value (Results 1 – 11 of 11) sorted by relevance

/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/android-tools/android-tools/core/
H A D0013-adb-Support-riscv64.patch117 +int android_atomic_cas(int32_t old_value, int32_t new_value,
120 + return __sync_val_compare_and_swap(ptr, old_value, new_value) != old_value;
124 +int android_atomic_acquire_cas(int32_t old_value, int32_t new_value,
127 + int status = android_atomic_cas(old_value, new_value, ptr);
133 +int android_atomic_release_cas(int32_t old_value, int32_t new_value,
137 + return android_atomic_cas(old_value, new_value, ptr);
/openbmc/boost-dbus/include/dbus/impl/
H A Dconnection.ipp114 bool old_value(true);
115 if (is_paused.compare_exchange_strong(old_value, false)) {
125 bool old_value(false);
126 if (is_paused.compare_exchange_strong(old_value, true)) {
/openbmc/qemu/util/
H A Dkeyval.c326 QObject *old_value; in keyval_do_merge() local
329 old_value = qdict_get(dest, ent->key); in keyval_do_merge()
330 if (old_value) { in keyval_do_merge()
331 if (qobject_type(old_value) != qobject_type(ent->value)) { in keyval_do_merge()
339 keyval_do_merge(qobject_to(QDict, old_value), in keyval_do_merge()
346 QList *old = qobject_to(QList, old_value); in keyval_do_merge()
/openbmc/pyphosphor/obmc/dbuslib/
H A Dbindings.py87 old_value = self.properties[interface_name][property_name]
88 if (old_value != new_value):
110 old_value = self.properties[interface_name][property_name]
111 if (old_value != new_value):
/openbmc/u-boot/drivers/ddr/marvell/a38x/
H A Dxor.c153 u32 old_value; in mv_xor_ctrl_set() local
156 old_value = reg_read(XOR_CONFIG_REG(XOR_UNIT(chan), XOR_CHAN(chan))) & in mv_xor_ctrl_set()
159 xor_ctrl |= old_value; in mv_xor_ctrl_set()
/openbmc/qemu/hw/gpio/
H A Dmpc8xxx.c168 uint32_t old_value = s->dat & mask; in mpc8xxx_gpio_set_irq() local
174 if (!(s->icr & irq) || (old_value && !level)) { in mpc8xxx_gpio_set_irq()
H A Dpca9554.c48 uint8_t old_value = s->regs[PCA9554_INPUT] & bit_mask; in pca9554_update_pin_input() local
72 if (new_value != old_value) { in pca9554_update_pin_input()
H A Dpca9552.c117 uint8_t old_value = s->regs[input_reg] & bit_mask; in pca955x_update_pin_input() local
146 if (new_value != old_value) { in pca955x_update_pin_input()
/openbmc/u-boot/drivers/usb/host/
H A Dusb-uclass.c27 int old_value = asynch_allowed; in usb_disable_asynch() local
30 return old_value; in usb_disable_asynch()
/openbmc/u-boot/common/
H A Dusb.c181 int old_value = asynch_allowed; in usb_disable_asynch() local
184 return old_value; in usb_disable_asynch()
/openbmc/qemu/hw/display/
H A Dcirrus_vga.c1084 unsigned old_value; in cirrus_write_bitblt() local
1086 old_value = s->vga.gr[0x31]; in cirrus_write_bitblt()
1089 if (((old_value & CIRRUS_BLT_RESET) != 0) && in cirrus_write_bitblt()
1092 } else if (((old_value & CIRRUS_BLT_START) == 0) && in cirrus_write_bitblt()