Lines Matching refs:envp
233 * environment in the object pointed to by envp.
236 fegetenv(fenv_t *envp)
238 _DIAGASSERT(envp != NULL);
240 __stfsr(envp);
249 * in the object pointed to by envp, clears the floating-point status flags, and
254 feholdexcept(fenv_t *envp)
258 _DIAGASSERT(envp != NULL);
261 *envp = r;
271 * represented by the object pointed to by envp. The argument `envp' points
278 fesetenv(const fenv_t *envp)
280 _DIAGASSERT(envp != NULL);
282 __ldfsr(*envp);
292 * represented by the object pointed to by `envp', and then raises the saved
293 * floating-point exceptions. The argument `envp' shall point to an object set
298 feupdateenv(const fenv_t *envp)
302 _DIAGASSERT(envp != NULL);
305 __ldfsr(*envp);