Do not benchmark potentially inlined functions directly inside the benchmark loop
| 26 | |
| 27 | // Do not benchmark potentially inlined functions directly inside the benchmark loop |
| 28 | static ARROW_NOINLINE bool ValidateUTF8NoInline(const uint8_t* data, int64_t size) { |
| 29 | return ::arrow::util::ValidateUTF8Inline(data, size); |
| 30 | } |
| 31 | |
| 32 | static ARROW_NOINLINE bool ValidateAsciiNoInline(const uint8_t* data, int64_t size) { |
| 33 | return ::arrow::util::ValidateAscii(data, size); |
no test coverage detected