Searched refs:__CRC32 (Results 1 – 1 of 1) sorted by relevance
/openbmc/linux/arch/mips/crypto/ |
H A D | crc32-mips.c | 46 #define __CRC32(crc, value, op, SZ, TYPE) \ macro 58 #define _CRC32_crc32b(crc, value) __CRC32(crc, value, crc32b, 0, 0) 59 #define _CRC32_crc32h(crc, value) __CRC32(crc, value, crc32h, 1, 0) 60 #define _CRC32_crc32w(crc, value) __CRC32(crc, value, crc32w, 2, 0) 61 #define _CRC32_crc32d(crc, value) __CRC32(crc, value, crc32d, 3, 0) 62 #define _CRC32_crc32cb(crc, value) __CRC32(crc, value, crc32cb, 0, 1) 63 #define _CRC32_crc32ch(crc, value) __CRC32(crc, value, crc32ch, 1, 1) 64 #define _CRC32_crc32cw(crc, value) __CRC32(crc, value, crc32cw, 2, 1) 65 #define _CRC32_crc32cd(crc, value) __CRC32(crc, value, crc32cd, 3, 1)
|