Home
last modified time | relevance | path

Searched refs:newval (Results 1 – 10 of 10) sorted by relevance

/rk3399_rockchip-uboot/scripts/kconfig/
H A Dsymbol.c338 struct symbol_value newval, oldval; in sym_calc_value() local
363 newval = symbol_empty.curr; in sym_calc_value()
367 newval = symbol_no.curr; in sym_calc_value()
380 sym->curr = newval; in sym_calc_value()
387 newval.tri = (prop_get_symbol(prop)->curr.val == sym) ? yes : no; in sym_calc_value()
395 newval.tri = EXPR_AND(sym->def[S_DEF_USER].tri, in sym_calc_value()
406 newval.tri = EXPR_AND(expr_calc_value(prop->expr), in sym_calc_value()
411 newval.tri = EXPR_OR(newval.tri, sym->implied.tri); in sym_calc_value()
427 newval.tri = EXPR_OR(newval.tri, sym->rev_dep.tri); in sym_calc_value()
429 if (newval.tri == mod && in sym_calc_value()
[all …]
H A Dlkc_proto.h42 bool sym_string_valid(struct symbol *sym, const char *newval);
44 bool sym_set_string_value(struct symbol *sym, const char *newval);
H A Dconf.c170 tristate oldval, newval; in conf_sym() local
205 newval = no; in conf_sym()
211 newval = mod; in conf_sym()
217 newval = yes; in conf_sym()
222 newval = oldval; in conf_sym()
229 if (sym_set_tristate_value(sym, newval)) in conf_sym()
H A Dgconf.c809 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()
/rk3399_rockchip-uboot/drivers/mmc/
H A Dbcm2835_sdhci.c104 u32 newval = (oldval & ~mask) | (val << word_shift); in bcm2835_sdhci_writew() local
107 shadow = newval; in bcm2835_sdhci_writew()
109 bcm2835_sdhci_raw_writel(host, newval, reg & ~3); in bcm2835_sdhci_writew()
118 u32 newval = (oldval & ~mask) | (val << byte_shift); in bcm2835_sdhci_writeb() local
120 bcm2835_sdhci_raw_writel(host, newval, reg & ~3); in bcm2835_sdhci_writeb()
/rk3399_rockchip-uboot/include/
H A Denv_flags.h132 int env_flags_validate_type(const char *name, const char *newval);
161 int env_flags_validate(const ENTRY *item, const char *newval, enum env_op op,
H A Dsearch.h63 int (*change_ok)(const ENTRY *__item, const char *newval, enum env_op,
/rk3399_rockchip-uboot/env/
H A Dflags.c499 int env_flags_validate(const ENTRY *item, const char *newval, enum env_op op, in env_flags_validate() argument
511 newval = newval ? : ""; in env_flags_validate()
518 if (_env_flags_validate_type(newval, type) < 0) { in env_flags_validate()
521 name, newval, env_flags_vartype_rep[type]); in env_flags_validate()
/rk3399_rockchip-uboot/cmd/
H A Dfdt.c31 static int fdt_parse_prop(char *const*newval, int count, char *data, int *len);
755 static int fdt_parse_prop(char * const *newval, int count, char *data, int *len) in fdt_parse_prop() argument
763 newp = newval[0]; in fdt_parse_prop()
774 newp = newval[++stridx]; in fdt_parse_prop()
812 newp = newval[++stridx]; in fdt_parse_prop()
836 newp = newval[++stridx]; in fdt_parse_prop()
/rk3399_rockchip-uboot/drivers/net/
H A Ddc2114x.c659 unsigned short newval; in write_srom() local
690 newval = do_eeprom_cmd(dev, ioaddr, in write_srom()
694 printf(" New value at offset %d is %4.4x.\n", index, newval); in write_srom()