Home
last modified time | relevance | path

Searched refs:user_options (Results 1 – 25 of 37) sorted by relevance

12

/Zephyr-latest/tests/kernel/fpu_sharing/float_disable/src/
Dk_float_disable.c85 (usr_fp_thread.base.user_options & K_FP_OPTS) != 0, in ZTEST()
87 usr_fp_thread.base.user_options); in ZTEST()
96 (usr_fp_thread.base.user_options & K_FP_OPTS) != 0, in ZTEST()
104 (usr_fp_thread.base.user_options & K_FP_OPTS) == 0, in ZTEST()
106 usr_fp_thread.base.user_options); in ZTEST()
134 (usr_fp_thread.base.user_options & K_FP_OPTS) != 0, in ZTEST()
136 usr_fp_thread.base.user_options); in ZTEST()
145 (usr_fp_thread.base.user_options & K_FP_OPTS) == 0, in ZTEST()
147 usr_fp_thread.base.user_options); in ZTEST()
189 if ((sup_fp_thread.base.user_options & K_FP_REGS) == 0) { in sup_fp_thread_entry()
[all …]
/Zephyr-latest/arch/x86/core/ia32/
Dfloat.c134 if ((thread->base.user_options & K_SSE_REGS) != 0) { in FpCtxSave()
152 if ((thread->base.user_options & K_SSE_REGS) != 0) { in FpCtxInit()
182 thread->base.user_options |= (uint8_t)options; in z_float_enable()
225 if ((arch_current_thread()->base.user_options & _FP_USER_MASK) == 0) { in z_float_enable()
279 thread->base.user_options &= ~_FP_USER_MASK; in z_float_disable()
/Zephyr-latest/arch/xtensa/core/
Dthread.c75 if ((thread->base.user_options & K_USER) == K_USER) { in init_stack()
100 frame->bsa.threadptr = (uintptr_t)((thread->base.user_options & K_USER) ? thread : NULL); in init_stack()
180 if ((thread->base.user_options & K_USER) != K_USER) { in arch_thread_priv_stack_space_get()
Dfatal.c143 if ((arch_current_thread()->base.user_options & K_USER) != 0) { in z_impl_xtensa_user_fault()
/Zephyr-latest/arch/arm/core/cortex_m/
Dthread.c78 if ((thread->base.user_options & K_FP_REGS) != 0) { in arch_new_thread()
92 if ((thread->base.user_options & K_USER) != 0) { in arch_new_thread()
120 if ((thread->base.user_options & K_FP_REGS) != 0) { in arch_new_thread()
192 if (((thread->base.user_options & K_FP_REGS) != 0) || in z_arm_mpu_stack_guard_and_fpu_adjust()
210 thread->base.user_options |= K_FP_REGS; in z_arm_mpu_stack_guard_and_fpu_adjust()
472 thread->base.user_options &= ~K_FP_REGS; in arch_float_disable()
/Zephyr-latest/kernel/include/
Dkthread.h170 thread->base.user_options |= K_ESSENTIAL; in z_thread_essential_set()
180 thread->base.user_options &= ~K_ESSENTIAL; in z_thread_essential_clear()
190 return (thread->base.user_options & K_ESSENTIAL) == K_ESSENTIAL; in z_is_thread_essential()
Dkernel_offsets.h55 GEN_OFFSET_SYM(_thread_base_t, user_options);
Dkswap.h244 dummy_thread->base.user_options = K_ESSENTIAL; in z_dummy_thread_init()
/Zephyr-latest/arch/arc/core/
Dthread.c52 return (thread->base.user_options & K_USER) != 0; in is_user()
254 thread->base.user_options &= ~K_FP_REGS; in arch_float_disable()
271 thread->base.user_options |= K_FP_REGS; in arch_float_enable()
312 thread->base.user_options &= ~(uint8_t)options; in arc_dsp_disable()
323 thread->base.user_options |= (uint8_t)options; in arc_dsp_enable()
Dfault.c66 if ((thread->base.user_options & K_USER) != 0) { in z_check_thread_stack_fail()
/Zephyr-latest/arch/arm/core/cortex_a_r/
Dthread.c69 if ((thread->base.user_options & K_FP_REGS) != 0) { in arch_new_thread()
83 if ((thread->base.user_options & K_USER) != 0) { in arch_new_thread()
121 if ((thread->base.user_options & K_FP_REGS) != 0) { in arch_new_thread()
397 thread->base.user_options &= ~K_FP_REGS; in arch_float_disable()
Dfault.c181 && (arch_current_thread()->base.user_options & K_FP_REGS)) in z_arm_fault_undef_instruction_fp()
199 arch_current_thread()->base.user_options |= K_FP_REGS; in z_arm_fault_undef_instruction_fp()
/Zephyr-latest/arch/x86/core/
Duserspace.c96 if ((thread->base.user_options & K_USER) != 0U) { in z_x86_userspace_prepare_thread()
194 if ((thread->base.user_options & K_USER) != K_USER) { in arch_thread_priv_stack_space_get()
/Zephyr-latest/arch/riscv/core/
Dthread.c84 && (thread->base.user_options & K_USER)) { in arch_new_thread()
202 if ((thread->base.user_options & K_USER) != K_USER) { in arch_thread_priv_stack_space_get()
/Zephyr-latest/lib/os/
Dp4wq.c44 th->base.user_options |= K_CALLBACK_STATE; in thread_set_requeued()
49 th->base.user_options &= ~K_CALLBACK_STATE; in thread_clear_requeued()
54 return !!(th->base.user_options & K_CALLBACK_STATE); in thread_was_requeued()
/Zephyr-latest/arch/sparc/core/
Dthread.c51 if (thread->base.user_options & USER_FP_MASK) { in arch_new_thread()
/Zephyr-latest/tests/arch/arm/arm_thread_swap/src/
Darm_thread_arch.c286 zassert_true((arch_current_thread()->base.user_options & K_FP_REGS) != 0, in alt_thread_entry()
529 zassert_true((arch_current_thread()->base.user_options & K_FP_REGS) == 0, in ZTEST()
755 zassert_true((arch_current_thread()->base.user_options & K_FP_REGS) != 0, in ZTEST()
/Zephyr-latest/arch/x86/include/
Dx86_mmu.h213 (thread->base.user_options & K_USER) != 0U) { in z_x86_thread_page_tables_get()
/Zephyr-latest/arch/arm64/core/
Dthread.c81 return (thread->base.user_options & K_USER) != 0; in is_user()
Dfatal.c309 else if ((arch_current_thread()->base.user_options & K_USER) != 0 && in z_arm64_stack_corruption_check()
438 if (((arch_current_thread()->base.user_options & K_USER) != 0) && in z_arm64_do_kernel_oops()
/Zephyr-latest/subsys/shell/modules/kernel_service/thread/
Dlist.c81 thread->base.user_options, in shell_tdata_dump()
/Zephyr-latest/include/zephyr/kernel/
Dthread.h72 uint8_t user_options; member
/Zephyr-latest/subsys/debug/
Dthread_info.c54 user_options),
/Zephyr-latest/arch/arc/core/mpu/
Darc_mpu_common_internal.h75 if (thread->base.user_options & K_USER) { in arc_core_mpu_configure_thread()
/Zephyr-latest/subsys/debug/coredump/
Dcoredump_core.c94 if ((thread->base.user_options & K_USER) == K_USER) { in dump_thread()

12