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

◆ test_crossval_sll_u32_4()

bool autoresearch::simd_check::test_crossval_sll_u32_4 ( )
inline

Definition at line 883 of file AutoResearchSimd.h.

883 {
884 uint32_t v[4] = {0x80000000, 0xFFFFFFFF, 0x00000001, 0xDEADBEEF};
885 for (int shift = 0; shift <= 31; shift += 7) {
886 uint32_t expected[4], actual[4];
887 ref_sll_u32_4(v, shift, expected);
888 store_u32_4(actual, sll_u32_4(load_u32_4(v), shift));
889 if (!compare_u32(expected, actual, 4)) return false;
890 }
891 return true;
892}
bool compare_u32(const uint32_t *a, const uint32_t *b, size_t n)
void ref_sll_u32_4(const uint32_t *v, int shift, uint32_t *out)

References compare_u32(), and ref_sll_u32_4().

Referenced by getTests().

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