MCPcopy Create free account
hub / github.com/FastLED/FastLED / compare_u8

Function compare_u8

examples/AutoResearch/AutoResearchSimd.h:28–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26// ============================================================================
27
28inline bool compare_u8(const uint8_t* a, const uint8_t* b, size_t n) {
29 for (size_t i = 0; i < n; i++) {
30 if (a[i] != b[i]) return false;
31 }
32 return true;
33}
34
35inline bool compare_u32(const uint32_t* a, const uint32_t* b, size_t n) {
36 for (size_t i = 0; i < n; i++) {

Callers 15

test_load_store_u8_16Function · 0.85
test_add_sat_u8_16Function · 0.85
test_sub_sat_u8_16Function · 0.85
test_scale_u8_16_zeroFunction · 0.85
test_min_u8_16Function · 0.85
test_max_u8_16Function · 0.85
test_and_u8_16Function · 0.85
test_or_u8_16Function · 0.85
test_xor_u8_16Function · 0.85

Calls

no outgoing calls

Tested by 15

test_load_store_u8_16Function · 0.68
test_add_sat_u8_16Function · 0.68
test_sub_sat_u8_16Function · 0.68
test_scale_u8_16_zeroFunction · 0.68
test_min_u8_16Function · 0.68
test_max_u8_16Function · 0.68
test_and_u8_16Function · 0.68
test_or_u8_16Function · 0.68
test_xor_u8_16Function · 0.68