Lines Matching refs:acrs
198 if (addr < offsetof(struct user, regs.acrs)) { in __peek_user()
213 offset = addr - offsetof(struct user, regs.acrs); in __peek_user()
219 if (addr == offsetof(struct user, regs.acrs[15])) in __peek_user()
220 tmp = ((unsigned long) child->thread.acrs[15]) << 32; in __peek_user()
222 tmp = *(addr_t *)((addr_t) &child->thread.acrs + offset); in __peek_user()
280 if (addr >= offsetof(struct user, regs.acrs) && in peek_user()
328 if (addr < offsetof(struct user, regs.acrs)) { in __poke_user()
359 offset = addr - offsetof(struct user, regs.acrs); in __poke_user()
366 if (addr == offsetof(struct user, regs.acrs[15])) in __poke_user()
367 child->thread.acrs[15] = (unsigned int) (data >> 32); in __poke_user()
369 *(addr_t *)((addr_t) &child->thread.acrs + offset) = data; in __poke_user()
427 if (addr >= offsetof(struct user, regs.acrs) && in poke_user()
578 if (addr < offsetof(struct compat_user, regs.acrs)) { in __peek_user_compat()
600 offset = addr - offsetof(struct compat_user, regs.acrs); in __peek_user_compat()
601 tmp = *(__u32*)((addr_t) &child->thread.acrs + offset); in __peek_user_compat()
687 if (addr < offsetof(struct compat_user, regs.acrs)) { in __poke_user_compat()
726 offset = addr - offsetof(struct compat_user, regs.acrs); in __poke_user_compat()
727 *(__u32*)((addr_t) &child->thread.acrs + offset) = tmp; in __poke_user_compat()
845 save_access_regs(target->thread.acrs); in s390_regs_get()
860 save_access_regs(target->thread.acrs); in s390_regs_set()
883 restore_access_regs(target->thread.acrs); in s390_regs_set()
1342 save_access_regs(target->thread.acrs); in s390_compat_regs_get()
1357 save_access_regs(target->thread.acrs); in s390_compat_regs_set()
1380 restore_access_regs(target->thread.acrs); in s390_compat_regs_set()