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

Function VecStoreUnaligned

TSSimd.h:489–500  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

487 }
488
489 inline void VecStoreUnaligned(const vec_float& v, float *ptr)
490 {
491 #if defined(TERATHON_SSE)
492
493 _mm_storeu_ps(ptr, v);
494
495 #elif defined(TERATHON_NEON)
496
497 vst1q_f32(ptr, v);
498
499 #endif
500 }
501
502 inline void VecStoreX(const vec_float& v, float *ptr)
503 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected