Lines Matching defs:thread
110 /* Allow breakpoints and watchpoints to be disabled for this thread. */
184 static inline unsigned int thread_get_vl(struct thread_struct *thread,
187 return thread->vl[type];
190 static inline unsigned int thread_get_sve_vl(struct thread_struct *thread)
192 return thread_get_vl(thread, ARM64_VEC_SVE);
195 static inline unsigned int thread_get_sme_vl(struct thread_struct *thread)
197 return thread_get_vl(thread, ARM64_VEC_SME);
200 static inline unsigned int thread_get_cur_vl(struct thread_struct *thread)
202 if (system_supports_sme() && (thread->svcr & SVCR_SM_MASK))
203 return thread_get_sme_vl(thread);
205 return thread_get_sve_vl(thread);
264 __tls = &(t)->thread.uw.tp2_value; \
266 __tls = &(t)->thread.uw.tp_value; \
270 #define task_user_tls(t) (&(t)->thread.uw.tp_value)