| /openbmc/sdbusplus/tools/sdbusplus/templates/ |
| H A D | property.aserver.set.hpp.mako | 8 void ${p_name}(Arg&& new_value) 13 ${p_tag}{}, std::forward<Arg>(new_value)); 22 void ${p_name}(sdbusplus::message_t& m, Arg&& new_value) 27 ${p_tag}{}, m, std::forward<Arg>(new_value)); 36 void ${p_name}(Arg&& new_value) 44 bool changed = (new_value != ${p_name}_); 45 ${p_name}_ = std::forward<Arg>(new_value);
|
| H A D | property.aserver.callback.hpp.mako | 69 auto new_value = m.unpack<${p_type}>(); 75 self->${p_name}(m, std::move(new_value)); 79 self->${p_name}(std::move(new_value));
|
| /openbmc/qemu/hw/misc/ |
| H A D | stm32_rcc.c | 61 uint32_t prev_value, new_value, irq_offset; in stm32_rcc_write() local 78 new_value = extract32(value, i, 1); in stm32_rcc_write() 79 if (extract32(prev_value, i, 1) && !new_value) { in stm32_rcc_write() 80 trace_stm32_rcc_pulse_reset(irq_offset + i, new_value); in stm32_rcc_write() 81 qemu_set_irq(s->reset_irq[irq_offset + i], new_value); in stm32_rcc_write() 91 new_value = extract32(value, i, 1); in stm32_rcc_write() 92 if (!extract32(prev_value, i, 1) && new_value) { in stm32_rcc_write() 93 trace_stm32_rcc_pulse_enable(irq_offset + i, new_value); in stm32_rcc_write() 94 qemu_set_irq(s->enable_irq[irq_offset + i], new_value); in stm32_rcc_write()
|
| H A D | imx7_snvs.c | 83 uint64_t new_value = 0, snvs_count = 0; in imx7_snvs_write() local 91 new_value = deposit64(snvs_count, 32, 32, v); in imx7_snvs_write() 94 new_value = deposit64(snvs_count, 0, 32, v); in imx7_snvs_write() 109 s->tick_offset += new_value - snvs_count; in imx7_snvs_write()
|
| /openbmc/qemu/stubs/ |
| H A D | iothread-lock.c | 28 uint32_t new_value; in bql_block_unlock() local 33 new_value = bql_unlock_blocked + increase - !increase; in bql_block_unlock() 34 assert((new_value > bql_unlock_blocked) == increase); in bql_block_unlock() 35 bql_unlock_blocked = new_value; in bql_block_unlock()
|
| /openbmc/pyphosphor/obmc/dbuslib/ |
| H A D | bindings.py | 79 def Set(self, interface_name, property_name, new_value): argument 84 self.validator(interface_name, property_name, new_value) 88 if (old_value != new_value): 89 self.properties[interface_name][property_name] = new_value 92 interface_name, {property_name: new_value}, []) 95 self.properties[interface_name][property_name] = new_value 98 interface_name, {property_name: new_value}, []) 108 new_value = prop_dict[property_name] 111 if (old_value != new_value): 112 self.properties[interface_name][property_name] = new_value [all …]
|
| /openbmc/openbmc/meta-facebook/meta-bletchley/recipes-bletchley/plat-tools/files/ |
| H A D | bletchley-usbmux-util | 50 new_value="0x${current_value:0:4}${target_nibble}${current_value:5:3}" 51 if devmem "$register" 32 "$new_value"; then 52 echo "Register $register written with $new_value" 55 echo "Register $register failed to set to $new_value"
|
| /openbmc/sdbusplus/test/gen/ |
| H A D | test_property_names.cpp | 26 sdbusplus::common::server::Test2::property_names::new_value); in main() 28 EXPECT_EQ(sdbusplus::common::server::Test2::property_names::new_value, in main()
|
| H A D | test_aserver_multiple_interfaces.cpp | 77 assert(co_await client2.new_value() == 4200); in constructInterfaces()
|
| /openbmc/qemu/hw/riscv/ |
| H A D | riscv-iommu-hpm.c | 317 uint32_t new_value = 1 << ctr_idx; in update_event_map() local 327 new_value = GPOINTER_TO_UINT(data) & ~(new_value); in update_event_map() 328 if (new_value != 0) { in update_event_map() 331 GUINT_TO_POINTER(new_value)); in update_event_map() 345 new_value |= GPOINTER_TO_UINT(data); in update_event_map() 350 GUINT_TO_POINTER(new_value)); in update_event_map()
|
| /openbmc/openbmc/poky/scripts/lib/recipetool/ |
| H A D | create_buildsys_python.py | 245 new_value = re.sub(search, replace, value) 246 if value != new_value: 247 return new_value 252 new_value = replace_value(search, replace, value) 253 if new_value is None: 255 elif new_value != value: 256 info[variable] = new_value 261 new_value = replace_value(search, replace, a_value) 262 if new_value is not None and new_value != value: 263 new_list.append(new_value) [all …]
|
| /openbmc/phosphor-pid-control/test/ |
| H A D | sensor_host_unittest.cpp | 93 double new_value = 2; in TEST() local 111 hs->value(new_value); in TEST() 113 EXPECT_EQ(r.value, new_value); in TEST()
|
| /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/u-boot/drivers/sound/ |
| H A D | rt5677.c | 97 uint old, new_value; in rt5677_bic_or() local 104 new_value = (old & ~bic) | (set & bic); in rt5677_bic_or() 106 if (old != new_value) { in rt5677_bic_or() 107 ret = rt5677_i2c_write(priv, reg, new_value); in rt5677_bic_or()
|
| /openbmc/qemu/hw/gpio/ |
| H A D | pca9554.c | 49 uint8_t new_value; in pca9554_update_pin_input() local 71 new_value = s->regs[PCA9554_INPUT] & bit_mask; in pca9554_update_pin_input() 72 if (new_value != old_value) { in pca9554_update_pin_input() 73 if (new_value) { in pca9554_update_pin_input()
|
| H A D | pca9552.c | 118 uint8_t new_value; in pca955x_update_pin_input() local 145 new_value = s->regs[input_reg] & bit_mask; in pca955x_update_pin_input() 146 if (new_value != old_value) { in pca955x_update_pin_input() 147 qemu_set_irq(s->gpio_out[i], !!new_value); in pca955x_update_pin_input()
|
| /openbmc/qemu/target/riscv/ |
| H A D | cpu.h | 860 target_ulong *ret_value, target_ulong new_value, 864 target_ulong new_value, 885 target_ulong new_value, 889 target_ulong new_value, 895 Int128 *ret_value, Int128 new_value, 901 Int128 new_value); 978 target_ulong riscv_new_csr_seed(target_ulong new_value,
|
| /openbmc/openbmc-test-automation/lib/ |
| H A D | valid.tcl | 155 set new_value "[lindex $printed_var_list $ix]*" 156 set printed_var_list [lreplace $printed_var_list ${ix} ${ix} $new_value]
|
| H A D | bmc_date_and_time_utils.robot | 80 ${new_value}= Subtract Time From Date ${current_date} 1 day 81 Redfish Set DateTime ${new_value} 83 ${time_diff}= Subtract Date From Date ${current_value} ${new_value}
|
| /openbmc/qemu/tests/qtest/ |
| H A D | pnv-host-i2c-test.c | 171 uint8_t new_value = ((high) ? 1 : 0) << pin; in pnv_i2c_pca9554_set_pin() local 179 send_buf[1] = (recv_buf[0] & ~mask) | new_value; in pnv_i2c_pca9554_set_pin() 278 uint8_t new_value = ((high) ? 1 : 0) << shift; in pnv_i2c_pca9552_set_pin() local 286 send_buf[1] = (recv_buf[0] & mask) | new_value; in pnv_i2c_pca9552_set_pin()
|
| /openbmc/qemu/system/ |
| H A D | cpus.c | 524 uint32_t new_value; in bql_block_unlock() local 529 new_value = bql_unlock_blocked + increase - !increase; in bql_block_unlock() 530 assert((new_value > bql_unlock_blocked) == increase); in bql_block_unlock() 531 bql_unlock_blocked = new_value; in bql_block_unlock()
|
| /openbmc/u-boot/drivers/net/ |
| H A D | dc2114x.c | 149 static int write_srom(struct eth_device *dev, u_long ioaddr, int index, int new_value); 652 static int write_srom(struct eth_device *dev, u_long ioaddr, int index, int new_value) in write_srom() argument 662 printf("Writing new entry 0x%4.4x to offset %d.\n", new_value, index); in write_srom() 670 (((SROM_WRITE_CMD<<ee_addr_size)|index) << 16) | new_value, in write_srom()
|
| /openbmc/u-boot/tools/buildman/ |
| H A D | builder.py | 1288 new_value = tenvironment.environment.get(key) 1289 if new_value and value != new_value: 1290 desc = '%s -> %s' % (value, new_value) 1349 new_value = tconfig.config.get(key) 1350 if new_value and value != new_value: 1351 desc = '%s -> %s' % (value, new_value)
|
| /openbmc/u-boot/tools/dtoc/ |
| H A D | dtb_platdata.py | 330 new_value = [] 339 new_value += [addr, size] 340 reg.value = new_value
|
| /openbmc/qemu/hw/nvram/ |
| H A D | npcm7xx_otp.c | 154 static uint32_t npcm7xx_otp_compute_fcfg(uint32_t cur_value, uint32_t new_value) in npcm7xx_otp_compute_fcfg() argument 170 value |= new_value & ~lock_mask; in npcm7xx_otp_compute_fcfg()
|