natural exponent
| 2792 | VECTORCALL VECMATH_FINLINE vec4f v_log(vec4f x){return v_mul(v_log2_est_p5(x), v_splats(0.6931471805599453f));} |
| 2793 | //natural exponent |
| 2794 | VECTORCALL VECMATH_FINLINE vec4f v_exp(vec4f x){return v_exp2(v_mul(x, v_splats(1.4426950408889634073599f)));}//log2(e) |
| 2795 | //safer pow. checks for y == 0 |
| 2796 | VECTORCALL VECMATH_FINLINE vec4f v_pow(vec4f x, vec4f y) |
| 2797 | { |