Lines Matching defs:target
197 * @target: The task whose FP context should be initialized.
199 * Initializes the FP context of the target task to sane default values if that
200 * target task does not already have valid FP context. Once the context has
206 static inline bool init_fp_ctx(struct task_struct *target)
208 /* If FP has been used then the target already has context */
209 if (tsk_used_math(target))
213 memset(&target->thread.fpu.fpr, ~0, sizeof(target->thread.fpu.fpr));
218 * Record that the target has "used" math, such that the context
222 set_stopped_child_used_math(target);
299 static inline bool init_fp_ctx(struct task_struct *target)