| 26 | // ============================================================================ |
| 27 | |
| 28 | inline 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 | |
| 35 | inline bool compare_u32(const uint32_t* a, const uint32_t* b, size_t n) { |
| 36 | for (size_t i = 0; i < n; i++) { |
no outgoing calls