Lines Matching refs:f32
28 f32 exp_val;
29 f32 exp_delta;
73 f32 log_val;
74 f32 log_delta;
350 NN_MATH_INLINE f32
351 FExpLn2(f32 x) in FExpLn2()
353 f32 fidx; in FExpLn2()
355 f32 r; in FExpLn2()
378 NN_MATH_INLINE f32
379 FLog1_2(f32 x) in FLog1_2()
381 f32 fidx; in FLog1_2()
383 f32 r; in FLog1_2()
415 f32
416 FExp(f32 x) in FExp()
427 f32 kf; in FExp()
428 f32 xn; in FExp()
429 f32 expxn; in FExp()
466 f32
467 FLog(f32 x) in FLog()
478 f32 kf; in FLog()
479 f32 xn; in FLog()
480 f32 logxn; in FLog()
511 f32 Bezier(f32 p1, f32 p2, f32 p3, f32 p4, f32 s) in Bezier()
514 f32 t = 1.f - s; in Bezier()
515 f32 tt = t * t; in Bezier()
516 f32 ss = s * s; in Bezier()
518 f32 a1 = tt * t; in Bezier()
519 f32 a2 = tt * s * 3.f; in Bezier()
520 f32 a3 = ss * t * 3.f; in Bezier()
521 f32 a4 = ss * s; in Bezier()
540 f32 CatmullRom(f32 p0, f32 p1, f32 p2, f32 p3, f32 s) in CatmullRom()