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

Function VecStore

TSSimd.h:476–487  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

474 }
475
476 inline void VecStore(const vec_float& v, float *ptr)
477 {
478 #if defined(TERATHON_SSE)
479
480 _mm_store_ps(ptr, v);
481
482 #elif defined(TERATHON_NEON)
483
484 vst1q_f32(ptr, v);
485
486 #endif
487 }
488
489 inline void VecStoreUnaligned(const vec_float& v, float *ptr)
490 {

Callers 4

Mat4DClass · 0.85
InverseMethod · 0.85
operator *Method · 0.85
InverseUnitDetMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected