Lines Matching refs:new_fpcr
29 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
122 new_fpcr = envp->__fpcr; in libc_fesetenv_aarch64()
124 if (__glibc_unlikely (fpcr != new_fpcr)) in libc_fesetenv_aarch64()
125 _FPU_SETCW (new_fpcr); in libc_fesetenv_aarch64()
141 fpu_control_t new_fpcr; in libc_feupdateenv_test_aarch64() local
151 new_fpcr = envp->__fpcr; in libc_feupdateenv_test_aarch64()
154 if (__glibc_unlikely (fpcr != new_fpcr)) in libc_feupdateenv_test_aarch64()
155 _FPU_SETCW (new_fpcr); in libc_feupdateenv_test_aarch64()
161 if (__glibc_unlikely (excepts & (new_fpcr >> FE_EXCEPT_SHIFT))) in libc_feupdateenv_test_aarch64()