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

◆ test_or_u8_16()

bool autoresearch::simd_check::test_or_u8_16 ( )
inline

Definition at line 297 of file AutoResearchSimd.h.

297 {
298 uint8_t a[16] = {0xFF,0x0F,0xF0,0xAA, 0x00,0x00,0xFF,0x80, 0xFF,0x0F,0xF0,0xAA, 0x00,0x00,0xFF,0x80};
299 uint8_t b[16] = {0x0F,0xFF,0xFF,0x55, 0x00,0xFF,0x00,0x01, 0x0F,0xFF,0xFF,0x55, 0x00,0xFF,0x00,0x01};
300 uint8_t expected[16] = {0xFF,0xFF,0xFF,0xFF, 0x00,0xFF,0xFF,0x81, 0xFF,0xFF,0xFF,0xFF, 0x00,0xFF,0xFF,0x81};
301 uint8_t output[16] = {0};
302 store_u8_16(output, or_u8_16(load_u8_16(a), load_u8_16(b)));
303 return compare_u8(expected, output, 16);
304}
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: