Lines Matching refs:src
190 float32 helper_fitos(CPUSPARCState *env, int32_t src) in helper_fitos() argument
192 float32 ret = int32_to_float32(src, &env->fp_status); in helper_fitos()
197 float64 helper_fitod(CPUSPARCState *env, int32_t src) in helper_fitod() argument
199 float64 ret = int32_to_float64(src, &env->fp_status); in helper_fitod()
204 Int128 helper_fitoq(CPUSPARCState *env, int32_t src) in helper_fitoq() argument
206 float128 ret = int32_to_float128(src, &env->fp_status); in helper_fitoq()
212 float32 helper_fxtos(CPUSPARCState *env, int64_t src) in helper_fxtos() argument
214 float32 ret = int64_to_float32(src, &env->fp_status); in helper_fxtos()
219 float64 helper_fxtod(CPUSPARCState *env, int64_t src) in helper_fxtod() argument
221 float64 ret = int64_to_float64(src, &env->fp_status); in helper_fxtod()
226 Int128 helper_fxtoq(CPUSPARCState *env, int64_t src) in helper_fxtoq() argument
228 float128 ret = int64_to_float128(src, &env->fp_status); in helper_fxtoq()
235 float32 helper_fdtos(CPUSPARCState *env, float64 src) in helper_fdtos() argument
237 float32 ret = float64_to_float32(src, &env->fp_status); in helper_fdtos()
242 float64 helper_fstod(CPUSPARCState *env, float32 src) in helper_fstod() argument
244 float64 ret = float32_to_float64(src, &env->fp_status); in helper_fstod()
249 float32 helper_fqtos(CPUSPARCState *env, Int128 src) in helper_fqtos() argument
251 float32 ret = float128_to_float32(f128_in(src), &env->fp_status); in helper_fqtos()
256 Int128 helper_fstoq(CPUSPARCState *env, float32 src) in helper_fstoq() argument
258 float128 ret = float32_to_float128(src, &env->fp_status); in helper_fstoq()
263 float64 helper_fqtod(CPUSPARCState *env, Int128 src) in helper_fqtod() argument
265 float64 ret = float128_to_float64(f128_in(src), &env->fp_status); in helper_fqtod()
270 Int128 helper_fdtoq(CPUSPARCState *env, float64 src) in helper_fdtoq() argument
272 float128 ret = float64_to_float128(src, &env->fp_status); in helper_fdtoq()
278 int32_t helper_fstoi(CPUSPARCState *env, float32 src) in helper_fstoi() argument
280 int32_t ret = float32_to_int32_round_to_zero(src, &env->fp_status); in helper_fstoi()
285 int32_t helper_fdtoi(CPUSPARCState *env, float64 src) in helper_fdtoi() argument
287 int32_t ret = float64_to_int32_round_to_zero(src, &env->fp_status); in helper_fdtoi()
292 int32_t helper_fqtoi(CPUSPARCState *env, Int128 src) in helper_fqtoi() argument
294 int32_t ret = float128_to_int32_round_to_zero(f128_in(src), in helper_fqtoi()
301 int64_t helper_fstox(CPUSPARCState *env, float32 src) in helper_fstox() argument
303 int64_t ret = float32_to_int64_round_to_zero(src, &env->fp_status); in helper_fstox()
308 int64_t helper_fdtox(CPUSPARCState *env, float64 src) in helper_fdtox() argument
310 int64_t ret = float64_to_int64_round_to_zero(src, &env->fp_status); in helper_fdtox()
315 int64_t helper_fqtox(CPUSPARCState *env, Int128 src) in helper_fqtox() argument
317 int64_t ret = float128_to_int64_round_to_zero(f128_in(src), in helper_fqtox()
324 float32 helper_fsqrts(CPUSPARCState *env, float32 src) in helper_fsqrts() argument
326 float32 ret = float32_sqrt(src, &env->fp_status); in helper_fsqrts()
331 float64 helper_fsqrtd(CPUSPARCState *env, float64 src) in helper_fsqrtd() argument
333 float64 ret = float64_sqrt(src, &env->fp_status); in helper_fsqrtd()
338 Int128 helper_fsqrtq(CPUSPARCState *env, Int128 src) in helper_fsqrtq() argument
340 float128 ret = float128_sqrt(f128_in(src), &env->fp_status); in helper_fsqrtq()