Lines Matching defs:envp
194 * environment in the object pointed to by envp.
197 fegetenv(fenv_t *envp)
199 _DIAGASSERT(envp != NULL);
201 *envp = fcsr_read();
209 * the object pointed to by envp, clears the floating-point status flags, and
214 feholdexcept(fenv_t *envp)
216 _DIAGASSERT(envp != NULL);
218 *envp = fcsr_read();
228 * represented by the object pointed to by envp. The argument `envp' points
235 fesetenv(const fenv_t *envp)
238 _DIAGASSERT(envp != NULL);
240 fenv_t env = *envp;
256 * represented by the object pointed to by `envp', and then raises the saved
257 * floating-point exceptions. The argument `envp' shall point to an object set
262 feupdateenv(const fenv_t *envp)
264 _DIAGASSERT(envp != NULL);
268 fesetenv(envp);