Home
last modified time | relevance | path

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

/external/qemu/
Dmonitor.c2418 int c, nb_args, i, has_arg; in monitor_handle_command() local
2462 nb_args = 0; in monitor_handle_command()
2505 str_allocated[nb_args] = str; in monitor_handle_command()
2507 if (nb_args >= MAX_ARGS) { in monitor_handle_command()
2512 args[nb_args++] = str; in monitor_handle_command()
2589 if (nb_args + 3 > MAX_ARGS) in monitor_handle_command()
2591 args[nb_args++] = (void*)(long)count; in monitor_handle_command()
2592 args[nb_args++] = (void*)(long)format; in monitor_handle_command()
2593 args[nb_args++] = (void*)(long)size; in monitor_handle_command()
2620 if (nb_args >= MAX_ARGS) in monitor_handle_command()
[all …]
/external/qemu/tcg/
Dtcg.c985 int i, nb_args; in tcg_add_target_add_op_defs() local
998 nb_args = def->nb_iargs + def->nb_oargs; in tcg_add_target_add_op_defs()
999 for(i = 0; i < nb_args; i++) { in tcg_add_target_add_op_defs()
1074 TCGArg *args, int nb_args) in tcg_set_nop() argument
1076 if (nb_args == 0) { in tcg_set_nop()
1080 args[0] = nb_args; in tcg_set_nop()
1081 args[nb_args - 1] = nb_args; in tcg_set_nop()
1118 int i, op_index, op, nb_args, nb_iargs, nb_oargs, arg, nb_ops; in tcg_liveness_analysis() local
1150 nb_args = args[-1]; in tcg_liveness_analysis()
1151 args -= nb_args; in tcg_liveness_analysis()
[all …]
Dtcg.h410 uint8_t nb_oargs, nb_iargs, nb_cargs, nb_args; member