MCPcopy Create free account
hub / github.com/danoon2/Boxedwine / floatTo128

Function floatTo128

source/test/testCPU.cpp:47–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

45
46#if defined (BOXEDWINE_MSVC) && !defined (BOXEDWINE_64)
47__m128i floatTo128(float f1, float f2, float f3, float f4) {
48 Test_Float t1, t2, t3, t4;
49 t1.f = f1;
50 t2.f = f2;
51 t3.f = f3;
52 t4.f = f4;
53 return _mm_setr_epi32(t1.i, t2.i, t3.i, t4.i);
54}
55#endif
56
57#define LOCK_PREFIX 0xf0

Callers 1

testSSE.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected