Lines Matching refs:flag
106 int WRAP(feclearexcept)(int flag) { in WRAP()
107 return REAL(feclearexcept)(mips64_change_except(flag)); in WRAP()
110 int WRAP(fegetexceptflag)(fexcept_t_portable *obj, int flag) { in WRAP()
111 int ret = REAL(fegetexceptflag)((fexcept_t*)obj, mips64_change_except(flag)); in WRAP()
116 int WRAP(feraiseexcept)(int flag) { in WRAP()
117 return REAL(feraiseexcept)(mips64_change_except(flag)); in WRAP()
120 int WRAP(fesetexceptflag)(const fexcept_t_portable *obj, int flag) { in WRAP()
122 int mips64flag = mips64_change_except(flag); in WRAP()
126 int WRAP(fetestexcept)(int flag) { in WRAP()
127 int ret = REAL(fetestexcept)(mips64_change_except(flag)); in WRAP()
157 int flag = REAL(fegetexcept)(); in WRAP() local
158 return mips64_get_except(flag); in WRAP()