Lines Matching full:target
19 int evr_active(struct task_struct *target, const struct user_regset *regset) in evr_active() argument
21 flush_spe_to_thread(target); in evr_active()
22 return target->thread.used_spe ? regset->n : 0; in evr_active()
25 int evr_get(struct task_struct *target, const struct user_regset *regset, in evr_get() argument
28 flush_spe_to_thread(target); in evr_get()
30 membuf_write(&to, &target->thread.evr, sizeof(target->thread.evr)); in evr_get()
35 return membuf_write(&to, &target->thread.acc, in evr_get()
39 int evr_set(struct task_struct *target, const struct user_regset *regset, in evr_set() argument
45 flush_spe_to_thread(target); in evr_set()
48 &target->thread.evr, in evr_set()
49 0, sizeof(target->thread.evr)); in evr_set()
56 &target->thread.acc, in evr_set()
57 sizeof(target->thread.evr), -1); in evr_set()