MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / v_div

Function v_div

include/vecmath/dag_vecMath_neon.h:249–249  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

247VECTORCALL VECMATH_FINLINE vec4f v_rcp_unprecise_x(vec4f a) { return vrecpeq_f32(a); }
248VECTORCALL VECMATH_FINLINE vec4f v_rcp_est_x(vec4f a) { return v_rcp_est(a); }
249VECTORCALL VECMATH_FINLINE vec4f v_div(vec4f a, vec4f b) { return vdivq_f32(a, b); }
250VECTORCALL VECMATH_FINLINE vec4f v_div_x(vec4f a, vec4f b) { float32x2_t r = vdiv_f32(vget_low_f32(a), vget_low_f32(b)); return vcombine_f32(r, r); }
251VECTORCALL VECMATH_FINLINE vec4f v_min(vec4f a, vec4f b) { return vminq_f32(a, b); }
252VECTORCALL VECMATH_FINLINE vec4f v_max(vec4f a, vec4f b) { return vmaxq_f32(a, b); }

Callers 15

v_safedivFunction · 0.70
v_rcpFunction · 0.70
v_modFunction · 0.70
v_norm4_safeFunction · 0.70
v_norm3_safeFunction · 0.70
v_norm2_safeFunction · 0.70
v_bsph_bsph_best_sumFunction · 0.70
v_ray_intersect_planeFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected