Initialize CRC lookup table in architecture-dependent manner. */
| 268 | |
| 269 | /* Initialize CRC lookup table in architecture-dependent manner. */ |
| 270 | void crcspeed64native_init(crcfn64 fn, uint64_t table[8][256]) { |
| 271 | uint64_t n = 1; |
| 272 | |
| 273 | *(char *)&n ? crcspeed64little_init(fn, table) |
| 274 | : crcspeed64big_init(fn, table); |
| 275 | } |
| 276 | |
| 277 | void crcspeed16native_init(crcfn16 fn, uint16_t table[8][256]) { |
| 278 | uint64_t n = 1; |
no test coverage detected