Home
last modified time | relevance | path

Searched refs:local_index (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/gpl3/binutils/dist/opcodes/
H A Dwasm32-dis.c470 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 Dwasm32-dis.c470 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 Dhistory.c211 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 Dhistory.c211 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 Dhistexpand.c144 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 DChangeLog-200127693 (local_index, local_rindex): Delete, use strchr/strrchr instead.