Home
last modified time | relevance | path

Searched refs:oldval (Results 1 – 3 of 3) sorted by relevance

/scripts/kconfig/
Dconf.c168 tristate oldval, newval; in conf_sym() local
175 oldval = sym_get_tristate_value(sym); in conf_sym()
176 switch (oldval) { in conf_sym()
187 if (oldval != no && sym_tristate_within_range(sym, no)) in conf_sym()
189 if (oldval != mod && sym_tristate_within_range(sym, mod)) in conf_sym()
191 if (oldval != yes && sym_tristate_within_range(sym, yes)) in conf_sym()
218 newval = oldval; in conf_sym()
Dsymbol.c325 struct symbol_value newval, oldval; in sym_calc_value() local
344 oldval = sym->curr; in sym_calc_value()
439 if (memcmp(&oldval, &sym->curr, sizeof(oldval))) { in sym_calc_value()
499 tristate oldval = sym_get_tristate_value(sym); in sym_set_tristate_value() local
501 if (oldval != val && !sym_tristate_within_range(sym, val)) in sym_set_tristate_value()
527 if (oldval != val) in sym_set_tristate_value()
535 tristate oldval, newval; in sym_toggle_tristate_value() local
537 oldval = newval = sym_get_tristate_value(sym); in sym_toggle_tristate_value()
552 } while (oldval != newval); in sym_toggle_tristate_value()
643 const char *oldval; in sym_set_string_value() local
[all …]
Dqconf.cc487 tristate oldval; in setValue() local
497 oldval = sym_get_tristate_value(sym); in setValue()
501 if (oldval == no && item->menu->list) in setValue()