MCPcopy Create free account
hub / github.com/FastLED/FastLED / test_load_store_u32_4_aligned

Function test_load_store_u32_4_aligned

examples/AutoResearch/AutoResearchSimd.h:94–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

92}
93
94inline bool test_load_store_u32_4_aligned() {
95 FL_ALIGNAS(16) uint32_t input[4] = {0xAAAAAAAA, 0xBBBBBBBB, 0xCCCCCCCC, 0xDDDDDDDD};
96 FL_ALIGNAS(16) uint32_t output[4] = {0};
97 simd_u32x4 v = load_u32_4_aligned(input);
98 store_u32_4_aligned(output, v);
99 return compare_u32(input, output, 4);
100}
101
102// ============================================================================
103// f32x4 Load/Store Tests

Callers

nothing calls this directly

Calls 2

compare_u32Function · 0.85
FL_ALIGNASClass · 0.50

Tested by

no test coverage detected