Home | History | Annotate | Download | only in arm

Lines Matching refs:envp

205  * environment in the object pointed to by envp.
208 fegetenv(fenv_t *envp)
211 *envp = armreg_fpscr_read();
217 * environment in the object pointed to by envp, clear the floating-point
222 feholdexcept(fenv_t *envp)
225 *envp = armreg_fpscr_read();
226 armreg_fpscr_write((*envp) & ~(VFP_FPSCR_ESUM|VFP_FPSCR_CSUM));
232 * environment represented by the object pointed to by envp. The fesetenv()
237 fesetenv(const fenv_t *envp)
240 armreg_fpscr_write(*envp);
247 * floating-point environment represented by the object pointed to by envp,
251 feupdateenv(const fenv_t *envp)
254 _DIAGASSERT(envp != NULL);
258 fpscr |= *envp;