| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/android-tools/android-tools/core/ |
| H A D | 0013-adb-Support-riscv64.patch | 117 +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 D | connection.ipp | 114 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 D | keyval.c | 326 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 D | bindings.py | 87 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 D | xor.c | 153 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 D | mpc8xxx.c | 168 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 D | pca9554.c | 48 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 D | pca9552.c | 117 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()
|
| H A D | aspeed_gpio.c | 396 static uint32_t update_value_control_source(GPIOSets *regs, uint32_t old_value, in update_value_control_source() argument 415 new_value |= (0xff << i) & old_value; in update_value_control_source()
|
| /openbmc/qemu/hw/display/ |
| H A D | exynos4210_fimd.c | 1386 uint32_t old_value; in exynos4210_fimd_write() 1418 old_value = s->window[w].wincon; in exynos4210_fimd_write() 1445 (!(old_value & FIMD_WINCON_ENWIN) && (s->window[w].wincon & in exynos4210_fimd_write() 1451 old_value = s->shadowcon; in exynos4210_fimd_write() 1454 if (FIMD_WINDOW_PROTECTED(old_value, w) && in exynos4210_fimd_write() 1468 old_value = s->window[w].lefttop_y; in exynos4210_fimd_write() 1473 if (s->window[w].lefttop_y != old_value) { in exynos4210_fimd_write() 1478 old_value = s->window[w].rightbot_y; in exynos4210_fimd_write() 1483 if (s->window[w].rightbot_y != old_value) { in exynos4210_fimd_write() 1559 old_value in exynos4210_fimd_write() 1387 uint32_t old_value; exynos4210_fimd_write() local [all...] |
| H A D | cirrus_vga.c | 1084 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()
|
| /openbmc/qemu/target/loongarch/tcg/insn_trans/ |
| H A D | trans_privileged.c.inc | 142 /* CSR is undefined: write ignored, read old_value as 0. */ 175 /* CSR is undefined: write ignored, read old_value as 0. */
|
| /openbmc/u-boot/drivers/usb/host/ |
| H A D | usb-uclass.c | 27 int old_value = asynch_allowed; in usb_disable_asynch() local 30 return old_value; in usb_disable_asynch()
|
| /openbmc/u-boot/common/ |
| H A D | usb.c | 181 int old_value = asynch_allowed; in usb_disable_asynch() local 184 return old_value; in usb_disable_asynch()
|
| /openbmc/qemu/target/riscv/ |
| H A D | csr.c | 5599 target_ulong old_value = 0; in riscv_csrrw_do64() 5616 ret = csr_ops[csrno].read(env, csrno, &old_value); in riscv_csrrw_do64() 5624 new_value = (old_value & ~write_mask) | (new_value & write_mask); in riscv_csrrw_do64() 5635 *ret_value = old_value; in riscv_csrrw_do64() 5670 Int128 old_value; in riscv_csrrw_do128() 5673 ret = csr_ops[csrno].read128(env, csrno, &old_value); in riscv_csrrw_do128() local 5680 new_value = int128_or(int128_and(old_value, int128_not(write_mask)), in riscv_csrrw_do128() 5698 *ret_value = old_value; in riscv_csrrw_do128() 5726 target_ulong old_value; in riscv_csrr_i128() 5727 ret = riscv_csrrw_do64(env, csrno, &old_value, in riscv_csrr_i128() 5602 target_ulong old_value = 0; riscv_csrrw_do64() local 5729 target_ulong old_value; riscv_csrr_i128() local 5760 target_ulong old_value; riscv_csrrw_i128() local [all...] |
| /openbmc/qemu/hw/misc/ |
| H A D | trace-events | 169 npcm7xx_pwm_update_freq(const char *id, uint8_t index, uint32_t old_value, uint32_t new_value) "%s pwm[%u] Update Freq: old_freq: %u, new_freq: %u" 170 npcm7xx_pwm_update_duty(const char *id, uint8_t index, uint32_t old_value, uint32_t new_value) "%s pwm[%u] Update Duty: old_duty: %u, new_duty: %u"
|
| /openbmc/qemu/hw/nvme/ |
| H A D | ctrl.c | 9427 uint8_t value, old_value, cap = 0, index, event; 9445 old_value = n->smart_critical_warning; 9451 if (value & ~old_value & event) 9116 uint8_t value, old_value, cap = 0, index, event; nvme_set_smart_warning() local
|