MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / ExtractFloatInRandomOrder

Function ExtractFloatInRandomOrder

test/sse/test_sse.h:479–481  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

477}
478
479__m128 ExtractFloatInRandomOrder(float *arr, int i, int n, int prime) {
480 return _mm_set_ps(arr[(i*prime)%n], arr[((i+1)*prime)%n], arr[((i+2)*prime)%n], arr[((i+3)*prime)%n]);
481}
482
483#ifdef __SSE2__
484__m128d ExtractDoubleInRandomOrder(double *arr, int i, int n, int prime) {

Callers

nothing calls this directly

Calls 1

_mm_set_psFunction · 0.85

Tested by

no test coverage detected