FastLED 3.9.15
Loading...
Searching...
No Matches

◆ test_xor_u8_16()

bool autoresearch::simd_check::test_xor_u8_16 ( )
inline

Definition at line 306 of file AutoResearchSimd.h.

306 {
307 uint8_t a[16] = {0xFF,0x0F,0xF0,0xAA, 0xFF,0x00,0xAB,0x01, 0xFF,0x0F,0xF0,0xAA, 0xFF,0x00,0xAB,0x01};
308 uint8_t b[16] = {0x0F,0xFF,0xFF,0x55, 0xFF,0x00,0xAB,0x01, 0x0F,0xFF,0xFF,0x55, 0xFF,0x00,0xAB,0x01};
309 uint8_t expected[16] = {0xF0,0xF0,0x0F,0xFF, 0x00,0x00,0x00,0x00, 0xF0,0xF0,0x0F,0xFF, 0x00,0x00,0x00,0x00};
310 uint8_t output[16] = {0};
311 store_u8_16(output, xor_u8_16(load_u8_16(a), load_u8_16(b)));
312 return compare_u8(expected, output, 16);
313}
bool compare_u8(const uint8_t *a, const uint8_t *b, size_t n)
unsigned char uint8_t
Definition s16x16x4.h:209

References compare_u8().

Referenced by getTests().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: