Lines Matching refs:pf
239 static av_always_inline SoftFloat flt16_round(SoftFloat pf)
244 tmp.exp = pf.exp;
245 s = pf.mant >> 31;
246 tmp.mant = (pf.mant ^ s) - s;
253 static av_always_inline SoftFloat flt16_even(SoftFloat pf)
258 tmp.exp = pf.exp;
259 s = pf.mant >> 31;
260 tmp.mant = (pf.mant ^ s) - s;
267 static av_always_inline SoftFloat flt16_trunc(SoftFloat pf)
272 pun.exp = pf.exp;
273 s = pf.mant >> 31;
274 pun.mant = (pf.mant ^ s) - s;