xref: /aosp_15_r20/external/musl/src/math/__math_xflowf.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include "libm.h"
2 
__math_xflowf(uint32_t sign,float y)3 float __math_xflowf(uint32_t sign, float y)
4 {
5 	return eval_as_float(fp_barrierf(sign ? -y : y) * y);
6 }
7