Home
last modified time | relevance | path

Searched refs:new_fpcr (Results 1 – 2 of 2) sorted by relevance

/glibc-2.36/sysdeps/aarch64/fpu/
Dfenv_private.h29 fpu_control_t new_fpcr; in libc_feholdexcept_aarch64() local
39 new_fpcr = fpcr & ~(FE_ALL_EXCEPT << FE_EXCEPT_SHIFT); in libc_feholdexcept_aarch64()
42 if (__glibc_unlikely (new_fpcr != fpcr)) in libc_feholdexcept_aarch64()
43 _FPU_SETCW (new_fpcr); in libc_feholdexcept_aarch64()
76 fpu_control_t new_fpcr; in libc_feholdexcept_setround_aarch64() local
87 new_fpcr = fpcr & ~((FE_ALL_EXCEPT << FE_EXCEPT_SHIFT) | _FPU_FPCR_RM_MASK); in libc_feholdexcept_setround_aarch64()
88 new_fpcr |= round; in libc_feholdexcept_setround_aarch64()
91 if (__glibc_unlikely (new_fpcr != fpcr)) in libc_feholdexcept_setround_aarch64()
92 _FPU_SETCW (new_fpcr); in libc_feholdexcept_setround_aarch64()
119 fpu_control_t new_fpcr; in libc_fesetenv_aarch64() local
[all …]
/glibc-2.36/sysdeps/csky/fpu/
Dfenv_private.h121 fpu_control_t fpcr, fpsr, new_fpcr, new_fpsr; in libc_fesetenv_vfp() local
126 new_fpcr = envp->__fpcr; in libc_fesetenv_vfp()
132 if (__glibc_unlikely (fpcr ^ new_fpcr) != 0) in libc_fesetenv_vfp()
133 _FPU_SETCW (new_fpcr); in libc_fesetenv_vfp()
139 fpu_control_t fpcr, fpsr, new_fpcr, new_fpsr, excepts; in libc_feupdateenv_test_vfp() local
146 new_fpcr = envp->__fpcr; in libc_feupdateenv_test_vfp()
153 if (__glibc_unlikely (fpcr ^ new_fpcr) != 0) in libc_feupdateenv_test_vfp()
154 _FPU_SETCW (new_fpcr); in libc_feupdateenv_test_vfp()
157 if (__glibc_unlikely (excepts & new_fpcr)) in libc_feupdateenv_test_vfp()
208 fpu_control_t fpcr, fpsr, new_fpcr, new_fpsr; in libc_fesetenv_vfp_ctx() local
[all …]