| 259 | } |
| 260 | |
| 261 | uint16_t crcspeed16native(uint16_t table[8][256], uint16_t crc, void *buf, |
| 262 | size_t len) { |
| 263 | uint64_t n = 1; |
| 264 | |
| 265 | return *(char *)&n ? crcspeed16little(table, crc, buf, len) |
| 266 | : crcspeed16big(table, crc, buf, len); |
| 267 | } |
| 268 | |
| 269 | /* Initialize CRC lookup table in architecture-dependent manner. */ |
| 270 | void crcspeed64native_init(crcfn64 fn, uint64_t table[8][256]) { |
nothing calls this directly
no test coverage detected