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

Function test_load_store_u8_16

examples/AutoResearch/AutoResearchSimd.h:58–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56// ============================================================================
57
58inline bool test_load_store_u8_16() {
59 uint8_t input[16] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
60 uint8_t output[16] = {0};
61 simd_u8x16 v = load_u8_16(input);
62 store_u8_16(output, v);
63 return compare_u8(input, output, 16);
64}
65
66inline bool test_load_store_u8_16_boundary() {
67 uint8_t input[16] = {0,255,0,255, 0,255,0,255, 0,255,0,255, 0,255,0,255};

Callers

nothing calls this directly

Calls 1

compare_u8Function · 0.85

Tested by

no test coverage detected