Searched refs:local_index (Results 1 – 6 of 6) sorted by relevance
/netbsd-src/external/gpl3/binutils/dist/opcodes/ |
H A D | wasm32-dis.c | 470 uint32_t local_index; in print_insn_wasm32() local 473 local_index = val; in print_insn_wasm32() 474 if (error || local_index != val) in print_insn_wasm32() 477 prin (stream, " %u", local_index); in print_insn_wasm32() 489 && local_index < ARRAY_SIZE (locals)) in print_insn_wasm32() 490 prin (stream, " <%s>", locals[local_index]); in print_insn_wasm32() 499 && local_index < ARRAY_SIZE (globals)) in print_insn_wasm32() 500 prin (stream, " <%s>", globals[local_index]); in print_insn_wasm32()
|
/netbsd-src/external/gpl3/binutils.old/dist/opcodes/ |
H A D | wasm32-dis.c | 470 uint32_t local_index; in print_insn_wasm32() local 473 local_index = val; in print_insn_wasm32() 474 if (error || local_index != val) in print_insn_wasm32() 477 prin (stream, " %u", local_index); in print_insn_wasm32() 489 && local_index < ARRAY_SIZE (locals)) in print_insn_wasm32() 490 prin (stream, " <%s>", locals[local_index]); in print_insn_wasm32() 499 && local_index < ARRAY_SIZE (globals)) in print_insn_wasm32() 500 prin (stream, " <%s>", globals[local_index]); in print_insn_wasm32()
|
/netbsd-src/external/gpl3/gdb.old/dist/readline/readline/ |
H A D | history.c | 211 int local_index; in history_get() local 213 local_index = offset - history_base; in history_get() 214 return (local_index >= history_length || local_index < 0 || the_history == 0) in history_get() 216 : the_history[local_index]; in history_get()
|
/netbsd-src/external/gpl3/gdb/dist/readline/readline/ |
H A D | history.c | 211 int local_index; in history_get() local 213 local_index = offset - history_base; in history_get() 214 return (local_index >= history_length || local_index < 0 || the_history == 0) in history_get() 216 : the_history[local_index]; in history_get()
|
H A D | histexpand.c | 144 int which, sign, local_index, substring_okay; in get_history_event() local 213 for (local_index = i; c = string[i]; i++) in get_history_event() 235 (i > local_index && history_event_delimiter_chars && c == '-') || in get_history_event() 244 which = i - local_index; in get_history_event() 247 strncpy (temp, string + local_index, which); in get_history_event() 276 local_index = (*search_func) (temp, -1); in get_history_event() 278 if (local_index < 0) in get_history_event() 281 if (local_index == 0 || substring_okay) in get_history_event() 296 search_match = history_find_word (entry->line, local_index); in get_history_event()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/ |
H A D | ChangeLog-2001 | 27693 (local_index, local_rindex): Delete, use strchr/strrchr instead.
|