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

◆ ref_sub_sat_u8_16()

void autoresearch::simd_check::ref_sub_sat_u8_16 ( const uint8_t * a,
const uint8_t * b,
uint8_t * out )
inline

Definition at line 808 of file AutoResearchSimd.h.

808 {
809 for (int i = 0; i < 16; i++) {
810 out[i] = (a[i] > b[i]) ? (a[i] - b[i]) : 0;
811 }
812}

Referenced by test_crossval_sub_sat_u8_16().

+ Here is the caller graph for this function: