/Zephyr-latest/tests/kernel/fpu_sharing/float_disable/src/ |
D | k_float_disable.c | 85 (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/ |
D | float.c | 134 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/ |
D | thread.c | 75 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()
|
D | fatal.c | 143 if ((arch_current_thread()->base.user_options & K_USER) != 0) { in z_impl_xtensa_user_fault()
|
/Zephyr-latest/arch/arm/core/cortex_m/ |
D | thread.c | 78 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/ |
D | kthread.h | 170 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()
|
D | kernel_offsets.h | 55 GEN_OFFSET_SYM(_thread_base_t, user_options);
|
D | kswap.h | 244 dummy_thread->base.user_options = K_ESSENTIAL; in z_dummy_thread_init()
|
/Zephyr-latest/arch/arc/core/ |
D | thread.c | 52 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()
|
D | fault.c | 66 if ((thread->base.user_options & K_USER) != 0) { in z_check_thread_stack_fail()
|
/Zephyr-latest/arch/arm/core/cortex_a_r/ |
D | thread.c | 69 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()
|
D | fault.c | 181 && (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/ |
D | userspace.c | 96 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/ |
D | thread.c | 84 && (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/ |
D | p4wq.c | 44 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/ |
D | thread.c | 51 if (thread->base.user_options & USER_FP_MASK) { in arch_new_thread()
|
/Zephyr-latest/tests/arch/arm/arm_thread_swap/src/ |
D | arm_thread_arch.c | 286 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/ |
D | x86_mmu.h | 213 (thread->base.user_options & K_USER) != 0U) { in z_x86_thread_page_tables_get()
|
/Zephyr-latest/arch/arm64/core/ |
D | thread.c | 81 return (thread->base.user_options & K_USER) != 0; in is_user()
|
D | fatal.c | 309 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/ |
D | list.c | 81 thread->base.user_options, in shell_tdata_dump()
|
/Zephyr-latest/include/zephyr/kernel/ |
D | thread.h | 72 uint8_t user_options; member
|
/Zephyr-latest/subsys/debug/ |
D | thread_info.c | 54 user_options),
|
/Zephyr-latest/arch/arc/core/mpu/ |
D | arc_mpu_common_internal.h | 75 if (thread->base.user_options & K_USER) { in arc_core_mpu_configure_thread()
|
/Zephyr-latest/subsys/debug/coredump/ |
D | coredump_core.c | 94 if ((thread->base.user_options & K_USER) == K_USER) { in dump_thread()
|