Lines Matching refs:tmp
128 unsigned long tmp = get_reg(child, PT_SR) & ~TRACE_BITS; in singlestep_disable() local
129 put_reg(child, PT_SR, tmp); in singlestep_disable()
143 unsigned long tmp = get_reg(child, PT_SR) & ~TRACE_BITS; in user_enable_single_step() local
144 put_reg(child, PT_SR, tmp | T1_BIT); in user_enable_single_step()
151 unsigned long tmp = get_reg(child, PT_SR) & ~TRACE_BITS; in user_enable_block_step() local
152 put_reg(child, PT_SR, tmp | T0_BIT); in user_enable_block_step()
164 unsigned long tmp; in arch_ptrace() local
176 tmp = get_reg(child, regno); in arch_ptrace()
178 tmp = child->thread.fp[regno - 21]; in arch_ptrace()
183 tmp = ((tmp & 0xffff0000) << 15) | in arch_ptrace()
184 ((tmp & 0x0000ffff) << 16); in arch_ptrace()
187 tmp = child->mm->start_code; in arch_ptrace()
189 tmp = child->mm->start_data; in arch_ptrace()
191 tmp = child->mm->end_code; in arch_ptrace()
195 ret = put_user(tmp, datap); in arch_ptrace()
226 tmp = get_reg(child, i); in arch_ptrace()
227 ret = put_user(tmp, datap); in arch_ptrace()
236 ret = get_user(tmp, datap); in arch_ptrace()
240 tmp &= SR_MASK; in arch_ptrace()
241 tmp |= get_reg(child, PT_SR) & ~SR_MASK; in arch_ptrace()
243 put_reg(child, i, tmp); in arch_ptrace()