• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/s390/kernel/

Lines Matching refs:tmp

132 	addr_t offset, tmp, mask;
151 tmp = *(addr_t *)((addr_t) &task_pt_regs(child)->psw + addr);
154 tmp &= ~PSW_MASK_PER;
168 tmp = ((unsigned long) child->thread.acrs[15]) << 32;
171 tmp = *(addr_t *)((addr_t) &child->thread.acrs + offset);
177 tmp = (addr_t) task_pt_regs(child)->orig_gpr2;
184 tmp = *(addr_t *)((addr_t) &child->thread.fp_regs + offset);
186 tmp &= (unsigned long) FPC_VALID_MASK
194 tmp = *(addr_t *)((addr_t) &child->thread.per_info + offset);
197 tmp = 0;
199 return put_user(tmp, (addr_t __user *) data);
297 unsigned long tmp;
307 copied = access_process_vm(child, addr, &tmp, sizeof(tmp), 0);
308 if (copied != sizeof(tmp))
310 return put_user(tmp, (unsigned long __force __user *) data);
383 __u32 tmp;
395 tmp = (__u32)(task_pt_regs(child)->psw.mask >> 32);
396 tmp = PSW32_MASK_MERGE(psw32_user_bits, tmp);
399 tmp = (__u32) task_pt_regs(child)->psw.addr |
403 tmp = *(__u32 *)((addr_t) &task_pt_regs(child)->psw +
411 tmp = *(__u32*)((addr_t) &child->thread.acrs + offset);
417 tmp = *(__u32*)((addr_t) &task_pt_regs(child)->orig_gpr2 + 4);
424 tmp = *(__u32 *)((addr_t) &child->thread.fp_regs + offset);
440 tmp = *(__u32 *)((addr_t) &child->thread.per_info + offset);
443 tmp = 0;
445 return put_user(tmp, (__u32 __user *) data);
457 __u32 tmp;
463 tmp = (__u32) data;
471 if (tmp != PSW32_MASK_MERGE(psw32_user_bits, tmp))
475 PSW_MASK_MERGE(psw_user32_bits, (__u64) tmp << 32);
479 (__u64) tmp & PSW32_ADDR_INSN;
483 + addr*2 + 4) = tmp;
490 *(__u32*)((addr_t) &child->thread.acrs + offset) = tmp;
496 *(__u32*)((addr_t) &task_pt_regs(child)->orig_gpr2 + 4) = tmp;
503 (tmp & ~FPC_VALID_MASK) != 0)
507 *(__u32 *)((addr_t) &child->thread.fp_regs + offset) = tmp;
530 *(__u32 *)((addr_t) &child->thread.per_info + offset) = tmp;
541 unsigned int tmp; /* 4 bytes !! */
549 copied = access_process_vm(child, addr, &tmp, sizeof(tmp), 0);
550 if (copied != sizeof(tmp))
552 return put_user(tmp, (unsigned int __force __user *) data);
561 tmp = data;
562 copied = access_process_vm(child, addr, &tmp, sizeof(tmp), 1);
563 if (copied != sizeof(tmp))