Home
last modified time | relevance | path

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

/hal_espressif-2.7.6/components/riscv/
Dstdatomic.c113 …ANGE(n, type) bool __sync_bool_compare_and_swap_ ## n (type *ptr, type oldval, type newval, ...)…
117 if (*ptr == oldval) { \
125 …HANGE(n, type) type __sync_val_compare_and_swap_ ## n (type *ptr, type oldval, type newval, ...)…
129 if (*ptr == oldval) { \
/hal_espressif-2.7.6/components/xtensa/
Dstdatomic.c113 …ANGE(n, type) bool __sync_bool_compare_and_swap_ ## n (type *ptr, type oldval, type newval, ...)…
117 if (*ptr == oldval) { \
125 …HANGE(n, type) type __sync_val_compare_and_swap_ ## n (type *ptr, type oldval, type newval, ...)…
129 if (*ptr == oldval) { \
/hal_espressif-2.7.6/tools/kconfig/
Dconf.c170 tristate oldval, newval; in conf_sym() local
177 oldval = sym_get_tristate_value(sym); in conf_sym()
178 switch (oldval) { in conf_sym()
189 if (oldval != no && sym_tristate_within_range(sym, no)) in conf_sym()
191 if (oldval != mod && sym_tristate_within_range(sym, mod)) in conf_sym()
193 if (oldval != yes && sym_tristate_within_range(sym, yes)) in conf_sym()
222 newval = oldval; in conf_sym()
Dsymbol.c315 struct symbol_value newval, oldval; in sym_calc_value() local
334 oldval = sym->curr; in sym_calc_value()
434 if (memcmp(&oldval, &sym->curr, sizeof(oldval))) { in sym_calc_value()
494 tristate oldval = sym_get_tristate_value(sym); in sym_set_tristate_value() local
496 if (oldval != val && !sym_tristate_within_range(sym, val)) in sym_set_tristate_value()
522 if (oldval != val) in sym_set_tristate_value()
530 tristate oldval, newval; in sym_toggle_tristate_value() local
532 oldval = newval = sym_get_tristate_value(sym); in sym_toggle_tristate_value()
547 } while (oldval != newval); in sym_toggle_tristate_value()
638 const char *oldval; in sym_set_string_value() local
[all …]
Dqconf.cc470 tristate oldval; in setValue() local
480 oldval = sym_get_tristate_value(sym); in setValue()
484 if (oldval == no && item->menu->list) in setValue()