Home | History | Annotate | Download | only in x86_64

Lines Matching refs:envp

345  * environment in the object pointed to by envp.
348 fegetenv(fenv_t *envp)
350 _DIAGASSERT(envp != NULL);
353 __fnstenv(envp);
356 __stmxcsr(&envp->mxcsr);
367 __fldcw(envp->x87.control);
375 * in the object pointed to by envp, clears the floating-point status flags, and
380 feholdexcept(fenv_t *envp)
384 _DIAGASSERT(envp != NULL);
387 __fnstenv(envp);
393 __stmxcsr(&envp->mxcsr);
396 mxcsr = envp->mxcsr;
410 * represented by the object pointed to by envp. The argument `envp' points
417 fesetenv(const fenv_t *envp)
421 _DIAGASSERT(envp != NULL);
435 __fldenv(*envp);
438 __ldmxcsr(envp->mxcsr);
447 * represented by the object pointed to by `envp', and then raises the saved
448 * floating-point exceptions. The argument `envp' shall point to an object set
453 feupdateenv(const fenv_t *envp)
459 _DIAGASSERT(envp != NULL);
481 fesetenv(envp);