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

Function VecLoadUnaligned

TSSimd.h:436–447  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

434 }
435
436 inline vec_float VecLoadUnaligned(const float *ptr)
437 {
438 #if defined(TERATHON_SSE)
439
440 return (_mm_loadu_ps(ptr));
441
442 #elif defined(TERATHON_NEON)
443
444 return (vld1q_f32(ptr));
445
446 #endif
447 }
448
449 inline vec_float VecLoadScalar(const float *ptr)
450 {

Callers 2

TransformMethod · 0.85
operator *Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected