Searched refs:crc32tab (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/crypto/openssh/
H A Dcrc32.c29 static const u_int32_t crc32tab[] = { variable
103 crc = crc32tab[(crc ^ buf[i]) & 0xff] ^ (crc >> 8);
/freebsd-13-stable/sys/dev/sbni/
H A Dif_sbnivar.h153 #define CRC32(c,crc) (crc32tab[((size_t)(crc) ^ (c)) & 0xff] ^ (((crc) >> 8) & 0x00ffffff))
H A Dif_sbni.c125 static u_int32_t crc32tab[]; variable
1185 static u_int32_t crc32tab[] __aligned(8) = {
/freebsd-13-stable/contrib/apr-util/redis/
H A Dapr_redis.c512 static const apr_uint32_t crc32tab[256] = { variable
588 crc = (crc >> 8) ^ crc32tab[(crc ^ (data[i])) & 0xff];
/freebsd-13-stable/contrib/apr-util/memcache/
H A Dapr_memcache.c475 static const apr_uint32_t crc32tab[256] = { variable
551 crc = (crc >> 8) ^ crc32tab[(crc ^ (data[i])) & 0xff];

Completed in 72 milliseconds