Lines Matching defs:addr
46 int addr = caddr;
56 * addr is a pointer in the user's storage that contains an 8 byte
69 /* Get the addr in the other process that we want to read */
70 if (get_user(addrOthers, (u32 __user * __user *) (unsigned long) addr) != 0)
81 /* Read the word at location addr in the USER area. */
89 switch (addr) {
91 tmp = regs->regs[addr];
109 tmp = get_fpr32(&fregs[(addr & ~1) - FPR_BASE],
110 addr & 1);
113 tmp = get_fpr64(&fregs[addr - FPR_BASE], 0);
148 tmp = dregs[addr - DSP_BASE];
171 * addr is a pointer in the user's storage that contains an
181 /* Get the addr in the other process that we want to write into */
183 if (get_user(addrOthers, (u32 __user * __user *) (unsigned long) addr) != 0)
199 switch (addr) {
201 regs->regs[addr] = data;
203 if (addr == 2)
205 else if (addr == 4 &&
225 set_fpr32(&fregs[(addr & ~1) - FPR_BASE],
226 addr & 1, data);
229 set_fpr64(&fregs[addr - FPR_BASE], 0, data);
254 dregs[addr - DSP_BASE] = data;
303 (struct pt_watch_regs __user *) (unsigned long) addr);
308 (struct pt_watch_regs __user *) (unsigned long) addr);
312 ret = compat_ptrace_request(child, request, addr, data);