MCPcopy Create free account
hub / github.com/creatale/node-dv / load3x3Matrix

Function load3x3Matrix

deps/opencv/modules/core/src/matmul.cpp:1352–1359  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1350#if CV_SSE2
1351
1352static inline void
1353load3x3Matrix( const float* m, __m128& m0, __m128& m1, __m128& m2, __m128& m3 )
1354{
1355 m0 = _mm_setr_ps(m[0], m[4], m[8], 0);
1356 m1 = _mm_setr_ps(m[1], m[5], m[9], 0);
1357 m2 = _mm_setr_ps(m[2], m[6], m[10], 0);
1358 m3 = _mm_setr_ps(m[3], m[7], m[11], 0);
1359}
1360
1361static inline void
1362load4x4Matrix( const float* m, __m128& m0, __m128& m1, __m128& m2, __m128& m3, __m128& m4 )

Callers 2

transform_16uFunction · 0.85
transform_32fFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected