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

Function ExtractDoubleInRandomOrder

test/sse/test_sse.h:484–486  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

482
483#ifdef __SSE2__
484__m128d ExtractDoubleInRandomOrder(double *arr, int i, int n, int prime) {
485 return _mm_set_pd(arr[(i*prime)%n], arr[((i+1)*prime)%n]);
486}
487#endif
488
489__m128 ExtractIntInRandomOrder(unsigned int *arr, int i, int n, int prime) {

Callers

nothing calls this directly

Calls 1

_mm_set_pdFunction · 0.85

Tested by

no test coverage detected