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