Lines Matching defs:regno
76 int putreg(struct task_struct *child, int regno, unsigned long value)
78 regno >>= 2;
79 switch (regno) {
119 panic("Bad register in putreg() : %d\n", regno);
121 child->thread.regs.regs.gp[reg_offsets[regno]] = value;
144 unsigned long getreg(struct task_struct *child, int regno)
148 regno >>= 2;
149 switch (regno) {
171 panic("Bad register in getreg() : %d\n", regno);
173 return mask & child->thread.regs.regs.gp[reg_offsets[regno]];