Lines Matching refs:acrs
207 if (addr < offsetof(struct user, regs.acrs)) { in __peek_user()
222 offset = addr - offsetof(struct user, regs.acrs); in __peek_user()
228 if (addr == offsetof(struct user, regs.acrs[15])) in __peek_user()
229 tmp = ((unsigned long) child->thread.acrs[15]) << 32; in __peek_user()
231 tmp = *(addr_t *)((addr_t) &child->thread.acrs + offset); in __peek_user()
282 if (addr >= offsetof(struct user, regs.acrs) && in peek_user()
330 if (addr < offsetof(struct user, regs.acrs)) { in __poke_user()
361 offset = addr - offsetof(struct user, regs.acrs); in __poke_user()
368 if (addr == offsetof(struct user, regs.acrs[15])) in __poke_user()
369 child->thread.acrs[15] = (unsigned int) (data >> 32); in __poke_user()
371 *(addr_t *)((addr_t) &child->thread.acrs + offset) = data; in __poke_user()
421 if (addr >= offsetof(struct user, regs.acrs) && in poke_user()
570 if (addr < offsetof(struct compat_user, regs.acrs)) { in __peek_user_compat()
592 offset = addr - offsetof(struct compat_user, regs.acrs); in __peek_user_compat()
593 tmp = *(__u32*)((addr_t) &child->thread.acrs + offset); in __peek_user_compat()
672 if (addr < offsetof(struct compat_user, regs.acrs)) { in __poke_user_compat()
711 offset = addr - offsetof(struct compat_user, regs.acrs); in __poke_user_compat()
712 *(__u32*)((addr_t) &child->thread.acrs + offset) = tmp; in __poke_user_compat()
819 save_access_regs(target->thread.acrs); in s390_regs_get()
834 save_access_regs(target->thread.acrs); in s390_regs_set()
857 restore_access_regs(target->thread.acrs); in s390_regs_set()
1305 save_access_regs(target->thread.acrs); in s390_compat_regs_get()
1320 save_access_regs(target->thread.acrs); in s390_compat_regs_set()
1343 restore_access_regs(target->thread.acrs); in s390_compat_regs_set()