MCPcopy Create free account
hub / github.com/EricLengyel/Terathon-Math-Library / VecFloatGetZero

Function VecFloatGetZero

TSSimd.h:304–315  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

302 }
303
304 inline vec_float VecFloatGetZero(void)
305 {
306 #if defined(TERATHON_SSE)
307
308 return (_mm_setzero_ps());
309
310 #elif defined(TERATHON_NEON)
311
312 return (vmovq_n_f32(0.0F));
313
314 #endif
315 }
316
317 inline vec_float VecFloatGetMinusZero(void)
318 {

Callers 7

FminZeroFunction · 0.85
FmaxZeroFunction · 0.85
SaturateFunction · 0.85
VecSqrtFunction · 0.85
VecSqrtScalarFunction · 0.85
VecFsgnFunction · 0.85
VecFnsgnFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected