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

◆ test_crossval_srl_u32_4()

bool autoresearch::simd_check::test_crossval_srl_u32_4 ( )
inline

Definition at line 872 of file AutoResearchSimd.h.

872 {
873 uint32_t v[4] = {0x80000000, 0xFFFFFFFF, 0x00000001, 0xDEADBEEF};
874 for (int shift = 0; shift <= 31; shift += 7) {
875 uint32_t expected[4], actual[4];
876 ref_srl_u32_4(v, shift, expected);
877 store_u32_4(actual, srl_u32_4(load_u32_4(v), shift));
878 if (!compare_u32(expected, actual, 4)) return false;
879 }
880 return true;
881}
void ref_srl_u32_4(const uint32_t *v, int shift, uint32_t *out)
bool compare_u32(const uint32_t *a, const uint32_t *b, size_t n)

References compare_u32(), and ref_srl_u32_4().

Referenced by getTests().

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