| 303 | static __forceinline vec4f Exp ( vec4f a, Context &, LineInfo * ) { return v_exp(a); } |
| 304 | static __forceinline vec4f Log ( vec4f a, Context &, LineInfo * ) { return v_log(a); } |
| 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); } |