Lines Matching refs:f128
95 float128 f128; member
217 ops[i].f128 = random_quad_ops[i]; in fill_random()
218 if (no_neg && float128_is_neg(ops[i].f128)) { in fill_random()
219 ops[i].f128 = float128_chs(ops[i].f128); in fill_random()
387 float128 a = ops[0].f128; in bench()
388 float128 b = ops[1].f128; in bench()
389 float128 c = ops[2].f128; in bench()
393 res.f128 = float128_add(a, b, &soft_status); in bench()
396 res.f128 = float128_sub(a, b, &soft_status); in bench()
399 res.f128 = float128_mul(a, b, &soft_status); in bench()
402 res.f128 = float128_div(a, b, &soft_status); in bench()
405 res.f128 = float128_muladd(a, b, c, 0, &soft_status); in bench()
408 res.f128 = float128_sqrt(a, &soft_status); in bench()