/u-boot/scripts/kconfig/ |
A D | symbol.c | 367 sym->curr = newval; in sym_calc_value() 398 newval.tri = EXPR_OR(newval.tri, sym->implied.tri); in sym_calc_value() 404 newval.tri = EXPR_OR(newval.tri, sym->rev_dep.tri); in sym_calc_value() 408 newval.tri = yes; in sym_calc_value() 431 sym->curr = newval; in sym_calc_value() 538 switch (newval) { in sym_toggle_tristate_value() 540 newval = mod; in sym_toggle_tristate_value() 543 newval = yes; in sym_toggle_tristate_value() 546 newval = no; in sym_toggle_tristate_value() 552 return newval; in sym_toggle_tristate_value() [all …]
|
A D | lkc_proto.h | 42 bool sym_string_valid(struct symbol *sym, const char *newval); 44 bool sym_set_string_value(struct symbol *sym, const char *newval);
|
A D | conf.c | 165 tristate oldval, newval; in conf_sym() local 198 newval = no; in conf_sym() 204 newval = mod; in conf_sym() 210 newval = yes; in conf_sym() 215 newval = oldval; in conf_sym() 222 if (sym_set_tristate_value(sym, newval)) in conf_sym()
|
A D | gconf.c | 809 tristate newval; in change_sym_value() local 815 newval = no; in change_sym_value() 817 newval = mod; in change_sym_value() 819 newval = yes; in change_sym_value() 826 if (!sym_tristate_within_range(sym, newval)) in change_sym_value() 827 newval = yes; in change_sym_value() 828 sym_set_tristate_value(sym, newval); in change_sym_value()
|
/u-boot/drivers/rtc/ |
A D | m41t62.c | 169 u8 val, newval, sqwrateval; in m41t62_sqw_set_rate() local 183 newval = val; in m41t62_sqw_set_rate() 184 newval &= ~M41T62_WDAY_SQW_FREQ_MASK; in m41t62_sqw_set_rate() 185 newval |= (sqwrateval << M41T62_WDAY_SQW_FREQ_SHIFT); in m41t62_sqw_set_rate() 192 if (newval == val) in m41t62_sqw_set_rate() 195 return dm_i2c_write(dev, M41T62_REG_WDAY, &newval, sizeof(newval)); in m41t62_sqw_set_rate()
|
/u-boot/drivers/mmc/ |
A D | bcm2835_sdhci.c | 112 u32 newval = (oldval & ~mask) | (val << word_shift); in bcm2835_sdhci_writew() local 115 shadow = newval; in bcm2835_sdhci_writew() 117 bcm2835_sdhci_raw_writel(host, newval, reg & ~3); in bcm2835_sdhci_writew() 126 u32 newval = (oldval & ~mask) | (val << byte_shift); in bcm2835_sdhci_writeb() local 128 bcm2835_sdhci_raw_writel(host, newval, reg & ~3); in bcm2835_sdhci_writeb()
|
A D | iproc_sdhci.c | 102 u32 oldval, newval; in sdhci_iproc_writew() local 119 newval = (oldval & ~mask) | (val << word_shift); in sdhci_iproc_writew() 123 iproc_host->shadow_cmd = newval; in sdhci_iproc_writew() 126 iproc_host->shadow_blk = newval; in sdhci_iproc_writew() 129 sdhci_iproc_writel(host, newval, reg & ~3); in sdhci_iproc_writew() 138 u32 newval = (oldval & ~mask) | (val << byte_shift); in sdhci_iproc_writeb() local 140 sdhci_iproc_writel(host, newval, reg & ~3); in sdhci_iproc_writeb()
|
/u-boot/include/ |
A D | env_flags.h | 134 int env_flags_validate_type(const char *name, const char *newval); 164 int env_flags_validate(const struct env_entry *item, const char *newval,
|
A D | search.h | 57 int (*change_ok)(const struct env_entry *item, const char *newval,
|
/u-boot/env/ |
A D | flags.c | 525 int env_flags_validate(const struct env_entry *item, const char *newval, in env_flags_validate() argument 537 newval = newval ? : ""; in env_flags_validate() 544 if (_env_flags_validate_type(newval, type) < 0) { in env_flags_validate() 547 name, newval, env_flags_vartype_rep[type]); in env_flags_validate()
|
/u-boot/cmd/ |
A D | fdt.c | 31 static int fdt_parse_prop(char *const*newval, int count, char *data, int *len); 797 static int fdt_parse_prop(char * const *newval, int count, char *data, int *len) in fdt_parse_prop() argument 805 newp = newval[0]; in fdt_parse_prop() 816 newp = newval[++stridx]; in fdt_parse_prop() 854 newp = newval[++stridx]; in fdt_parse_prop() 878 newp = newval[++stridx]; in fdt_parse_prop()
|
/u-boot/drivers/pci/ |
A D | pcie_imx.c | 775 u32 tmpval, newval; in imx_pcie_dm_write_config() local 782 newval = pci_conv_size_to_32(tmpval, value, offset, size); in imx_pcie_dm_write_config() 783 return imx_pcie_write_cfg(priv, bdf, offset, newval); in imx_pcie_dm_write_config()
|
/u-boot/tools/ |
A D | moveconfig.py | 815 newval = hex(aeval(val)) 816 print("\tExpanded expression %s to %s" % (val, newval)) 817 return cfg+'='+newval
|