Home | History | Annotate | Download | only in tests

Lines Matching defs:regno

101   int regno;
112 return a->regno - b->regno;
126 int regno,
134 if (regno >= state->nregs)
136 state->info = realloc (state->info, (regno + 1) * sizeof state->info[0]);
138 ((void *) &state->info[regno + 1]
140 state->nregs = regno + 1;
143 state->info[regno].regno = regno;
144 state->info[regno].set = setname;
145 state->info[regno].pfx = prefix;
146 state->info[regno].bits = bits;
147 state->info[regno].type = type;
148 assert (strlen (regname) < sizeof state->info[regno].name);
149 strcpy (state->info[regno].name, regname);
157 int regno,
163 if (regno == *(int *) arg)
165 regno, setname, prefix, regname,
207 state.info[i].regno,
218 int regno = atoi (arg);
219 int result = dwfl_module_register_names (mod, &match_register, &regno);