Searched refs:oldval (Results 1 – 5 of 5) sorted by relevance
/busybox-1.35.0/scripts/kconfig/ |
D | symbol.c | 264 struct symbol_value newval, oldval; in sym_calc_value() local 275 oldval = sym->curr; in sym_calc_value() 355 if (memcmp(&oldval, &sym->curr, sizeof(oldval))) in sym_calc_value() 424 tristate oldval = sym_get_tristate_value(sym); in sym_set_tristate_value() local 426 if (oldval != val && !sym_tristate_within_range(sym, val)) in sym_set_tristate_value() 452 if (oldval != val) { in sym_set_tristate_value() 463 tristate oldval, newval; in sym_toggle_tristate_value() local 465 oldval = newval = sym_get_tristate_value(sym); in sym_toggle_tristate_value() 480 } while (oldval != newval); in sym_toggle_tristate_value() 571 const char *oldval; in sym_set_string_value() local [all …]
|
D | conf.c | 247 tristate oldval, newval; in conf_sym() local 255 oldval = sym_get_tristate_value(sym); in conf_sym() 256 switch (oldval) { in conf_sym() 267 if (oldval != no && sym_tristate_within_range(sym, no)) in conf_sym() 269 if (oldval != mod && sym_tristate_within_range(sym, mod)) in conf_sym() 271 if (oldval != yes && sym_tristate_within_range(sym, yes)) in conf_sym() 299 newval = oldval; in conf_sym()
|
D | qconf.cc | 506 tristate oldval; in setValue() local 516 oldval = sym_get_tristate_value(sym); in setValue() 520 if (oldval == no && item->menu->list) in setValue()
|
D | gconf.c | 919 tristate oldval, newval; in change_sym_value() local 936 oldval = sym_get_tristate_value(sym); in change_sym_value()
|
/busybox-1.35.0/modutils/ |
D | modutils-24.c | 3535 int oldval; in set_tainted() local 3548 oldval = strtoul(buf, NULL, 10); in set_tainted() 3549 sprintf(buf, "%d\n", oldval | taint); in set_tainted()
|