Home | History | Annotate | Download | only in tests

Lines Matching refs:regno

75   int regno;
86 return a->regno - b->regno;
100 int regno,
108 if (regno >= state->nregs)
110 state->info = realloc (state->info, (regno + 1) * sizeof state->info[0]);
112 ((void *) &state->info[regno + 1]
114 state->nregs = regno + 1;
117 state->info[regno].regno = regno;
118 state->info[regno].set = setname;
119 state->info[regno].pfx = prefix;
120 state->info[regno].bits = bits;
121 state->info[regno].type = type;
122 assert (strlen (regname) < sizeof state->info[regno].name);
123 strcpy (state->info[regno].name, regname);
131 int regno,
137 if (regno == *(int *) arg)
139 regno, setname, prefix, regname,
181 state.info[i].regno,
193 int regno = atoi (arg);
194 int result = dwfl_module_register_names (mod, &match_register, &regno);