Lines Matching defs:regno
75 int putreg(struct task_struct *child, int regno, unsigned long value)
77 regno >>= 2;
78 switch (regno) {
118 panic("Bad register in putreg() : %d\n", regno);
120 child->thread.regs.regs.gp[reg_offsets[regno]] = value;
143 unsigned long getreg(struct task_struct *child, int regno)
147 regno >>= 2;
148 switch (regno) {
170 panic("Bad register in getreg() : %d\n", regno);
172 return mask & child->thread.regs.regs.gp[reg_offsets[regno]];