Lines Matching refs:envp
247 * environment in the object pointed to by envp.
250 fegetenv(fenv_t *envp)
252 _DIAGASSERT(envp != NULL);
254 __stxfsr(envp);
263 * in the object pointed to by envp, clears the floating-point status flags, and
268 feholdexcept(fenv_t *envp)
272 _DIAGASSERT(envp != NULL);
275 *envp = r;
285 * represented by the object pointed to by envp. The argument `envp' points
292 fesetenv(const fenv_t *envp)
294 _DIAGASSERT(envp != NULL);
296 __ldxfsr(*envp);
306 * represented by the object pointed to by `envp', and then raises the saved
307 * floating-point exceptions. The argument `envp' shall point to an object set
312 feupdateenv(const fenv_t *envp)
316 _DIAGASSERT(envp != NULL);
319 __ldxfsr(*envp);