| 305 | static __forceinline vec4f Exp2 ( vec4f a, Context &, LineInfo * ) { return v_exp2(a); } |
| 306 | static __forceinline vec4f Log2 ( vec4f a, Context &, LineInfo * ) { return v_log2_est_p5(a); } |
| 307 | static __forceinline vec4f Pow ( vec4f a, vec4f b, Context &, LineInfo * ) { return v_pow(a, b); } |
| 308 | static __forceinline vec4f Rcp ( vec4f a, Context &, LineInfo * ) { return v_rcp(a); } |
| 309 | static __forceinline vec4f RcpEst( vec4f a, Context &, LineInfo * ) { return v_rcp_est(a); } |
| 310 |