/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | buildhistory_analysis.py | 60 def __init__(self, path, fieldname, oldvalue, newvalue, monitored): argument 63 self.oldvalue = oldvalue 117 (depvera, depverb) = compare_pkg_lists(self.oldvalue, self.newvalue) 122 aitems = shlex.split(self.oldvalue) 126 aitems = self.oldvalue.split() 133 depvera = bb.utils.explode_dep_versions2(self.oldvalue, sort=False) 161 aval = int(self.oldvalue or 0) 167 …{colour_add}{}{colour_default} ({}{:.0f}%)'.format(self.fieldname, self.oldvalue or "''", self.new… 169 …default} to {colour_add}{}{colour_default}'.format(self.fieldname, self.oldvalue, self.newvalue, *… 173 if self.oldvalue and self.newvalue: [all …]
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/oelib/ |
H A D | buildhistory.py | 88 var_changes = { x.fieldname : (x.oldvalue, x.newvalue) for x in change_records} 109 oldvalue = "default" if ("default" in x.oldvalue) else x.oldvalue 110 var_changes[x.fieldname] = (oldvalue, x.newvalue)
|
/openbmc/openbmc/poky/meta/classes/ |
H A D | recipe_sanity.bbclass | 40 for (key, newkey, oldvalue, newvalue) in renames: 41 if oldvalue != newvalue and oldvalue != cfgdata.get(newkey): 42 …able '%s' to '%s' overwrote existing value '%s' with '%s'." % (key, newkey, oldvalue, newvalue), d) 145 oldvalue = self.getVar(newkey, 0) 148 if oldvalue: 150 renames.add((key, newkey, oldvalue, newvalue))
|
/openbmc/linux/drivers/media/usb/go7007/ |
H A D | s2250-board.c | 367 u16 oldvalue; in s2250_s_ctrl() local 371 read_reg_fp(client, VPX322_ADDR_BRIGHTNESS0, &oldvalue); in s2250_s_ctrl() 373 ctrl->val | (oldvalue & ~0xff)); in s2250_s_ctrl() 374 read_reg_fp(client, VPX322_ADDR_BRIGHTNESS1, &oldvalue); in s2250_s_ctrl() 376 ctrl->val | (oldvalue & ~0xff)); in s2250_s_ctrl() 380 read_reg_fp(client, VPX322_ADDR_CONTRAST0, &oldvalue); in s2250_s_ctrl() 382 ctrl->val | (oldvalue & ~0x3f)); in s2250_s_ctrl() 383 read_reg_fp(client, VPX322_ADDR_CONTRAST1, &oldvalue); in s2250_s_ctrl() 385 ctrl->val | (oldvalue & ~0x3f)); in s2250_s_ctrl()
|
/openbmc/linux/drivers/staging/rtl8712/ |
H A D | xmit_linux.c | 97 u8 oldvalue = 0x00, newvalue = 0x00; in r8712_SetFilter() local 99 oldvalue = r8712_read8(adapter, 0x117); in r8712_SetFilter() 100 newvalue = oldvalue & 0xfe; in r8712_SetFilter() 104 r8712_write8(adapter, 0x117, oldvalue); in r8712_SetFilter()
|
/openbmc/qemu/tests/migration/guestperf/ |
H A D | plot.py | 100 oldvalue = None 103 if oldvalue is not None: 104 cpudelta = (record._value - oldvalue) / 1000.0 111 oldvalue = record._value 235 oldvalue = absvalues[-1] 238 cpudelta = (record._value - oldvalue) / 1000.0 289 oldvalue = threads[record._tid]["absvalue"][-1] 292 cpudelta = (record._value - oldvalue) / 1000.0
|
/openbmc/linux/arch/x86/kernel/apic/ |
H A D | apic.c | 1424 unsigned int oldvalue, value, maxlvt; in lapic_setup_esr() local 1445 oldvalue = apic_read(APIC_ESR); in lapic_setup_esr() 1457 if (value != oldvalue) in lapic_setup_esr() 1460 oldvalue, value); in lapic_setup_esr()
|
/openbmc/linux/drivers/net/ethernet/netronome/nfp/flower/ |
H A D | action.c | 509 u32 oldvalue = get_unaligned((u32 *)p_exact); in nfp_fl_set_helper32() local 513 value |= oldvalue & ~mask; in nfp_fl_set_helper32()
|
/openbmc/qemu/target/arm/ |
H A D | cpu.c | 223 uint64_t oldvalue, newvalue; in cp_reg_check_reset() local 229 oldvalue = read_raw_cp_reg(&cpu->env, ri); in cp_reg_check_reset() 232 assert(oldvalue == newvalue); in cp_reg_check_reset()
|
/openbmc/linux/drivers/scsi/aic7xxx/ |
H A D | aic79xx_core.c | 693 u_int oldvalue; in ahd_get_snscb_qoff() local 696 oldvalue = ahd_inw(ahd, SNSCB_QOFF); in ahd_get_snscb_qoff() 697 ahd_outw(ahd, SNSCB_QOFF, oldvalue); in ahd_get_snscb_qoff() 698 return (oldvalue); in ahd_get_snscb_qoff()
|