Lines Matching refs:envp
27 libc_feholdexcept_vfp (fenv_t *envp) in libc_feholdexcept_vfp() argument
32 envp->__fpcr = fpcr; in libc_feholdexcept_vfp()
35 envp->__fpsr = fpsr; in libc_feholdexcept_vfp()
61 libc_feholdexcept_setround_vfp (fenv_t *envp, int round) in libc_feholdexcept_setround_vfp() argument
66 envp->__fpcr = fpcr; in libc_feholdexcept_setround_vfp()
69 envp->__fpsr = fpsr; in libc_feholdexcept_setround_vfp()
81 libc_feholdsetround_vfp (fenv_t *envp, int round) in libc_feholdsetround_vfp() argument
86 envp->__fpcr = fpcr; in libc_feholdsetround_vfp()
94 libc_feresetround_vfp (fenv_t *envp) in libc_feresetround_vfp() argument
101 round = (envp->__fpcr ^ fpcr) & FE_DOWNWARD; in libc_feresetround_vfp()
119 libc_fesetenv_vfp (const fenv_t *envp) in libc_fesetenv_vfp() argument
126 new_fpcr = envp->__fpcr; in libc_fesetenv_vfp()
127 new_fpsr = envp->__fpsr; in libc_fesetenv_vfp()
137 libc_feupdateenv_test_vfp (const fenv_t *envp, int ex) in libc_feupdateenv_test_vfp() argument
146 new_fpcr = envp->__fpcr; in libc_feupdateenv_test_vfp()
147 new_fpsr = envp->__fpsr | (excepts << CAUSE_SHIFT); in libc_feupdateenv_test_vfp()
164 libc_feupdateenv_vfp (const fenv_t *envp) in libc_feupdateenv_vfp() argument
166 libc_feupdateenv_test_vfp (envp, 0); in libc_feupdateenv_vfp()