Searched defs:flagp (Results 1 - 3 of 3) sorted by relevance

/bionic/libm/amd64/
H A Dfenv.c102 * the argument excepts in the object pointed to by the argument flagp.
105 fegetexceptflag(fexcept_t *flagp, int excepts) argument
118 /* Store the results in flagp */
119 *flagp = (status | mxcsr) & excepts;
147 * `excepts' to the states stored in the object pointed to by `flagp'. It does
151 fesetexceptflag(const fexcept_t *flagp, int excepts) argument
163 fenv.__x87.__status |= *flagp & excepts;
171 mxcsr |= *flagp & excepts;
/bionic/libm/arm64/
H A Dfenv.c73 int fegetexceptflag(fexcept_t* flagp, int excepts) { argument
78 *flagp = fpsr & excepts;
82 int fesetexceptflag(const fexcept_t* flagp, int excepts) { argument
88 fpsr |= *flagp & excepts;
/bionic/libm/i387/
H A Dfenv.c121 fesetexceptflag(const fexcept_t *flagp, int excepts) argument
130 env.__status |= *flagp & excepts;
136 mxcsr |= *flagp & excepts;
285 fegetexceptflag(fexcept_t *flagp, int excepts) argument
297 *flagp = (status | mxcsr) & excepts;

Completed in 152 milliseconds