========================================================================= * This function can be used by asm versions of crc32() */
| 203 | * This function can be used by asm versions of crc32() |
| 204 | */ |
| 205 | const unsigned long FAR * ZEXPORT get_crc_table() |
| 206 | { |
| 207 | #ifdef DYNAMIC_CRC_TABLE |
| 208 | if (crc_table_empty) |
| 209 | make_crc_table(); |
| 210 | #endif /* DYNAMIC_CRC_TABLE */ |
| 211 | return (const unsigned long FAR *)crc_table; |
| 212 | } |
| 213 | |
| 214 | /* ========================================================================= */ |
| 215 | #define DO1 crc = crc_table[0][((int)crc ^ (*buf++)) & 0xff] ^ (crc >> 8) |
nothing calls this directly
no test coverage detected