Searched refs:crctab (Results 1 - 10 of 10) sorted by relevance

/netbsd-6-1-5-RELEASE/external/gpl2/lvm2/dist/lib/misc/
H A Dcrc.c25 static const uint32_t crctab[] = { local
36 crc = (crc >> 4) ^ crctab[crc & 0xf];
37 crc = (crc >> 4) ^ crctab[crc & 0xf];
/netbsd-6-1-5-RELEASE/games/adventure/
H A Dcrc.c47 static const uint32_t crctab[256] = { variable
133 if (c->step >= __arraycount(crctab)) {
137 c->crcval = (c->crcval << 8) ^ crctab[x];
/netbsd-6-1-5-RELEASE/usr.sbin/mtree/
H A Dcrc.c56 static const u_int32_t crctab[] = { variable
129 #define COMPUTE(var, ch) (var) = (var) << 8 ^ crctab[(var) >> 24 ^ (ch)]
/netbsd-6-1-5-RELEASE/usr.bin/cksum/
H A Dcrc.c53 static const u_int32_t crctab[] = { variable
123 #define COMPUTE(var, ch) (var) = (var) << 8 ^ crctab[(var) >> 24 ^ (ch)]
/netbsd-6-1-5-RELEASE/sys/arch/mac68k/dev/
H A Dif_mc.c653 static const u_int32_t crctab[] = { local
689 crc = (crc >> 4) ^ crctab[crc & 0xf];
690 crc = (crc >> 4) ^ crctab[crc & 0xf];
/netbsd-6-1-5-RELEASE/sys/arch/arm/gemini/
H A Dif_gpn.c129 static const uint32_t crctab[] = { local
143 crc = (crc >> 4) ^ crctab[crc & 0xf];
144 crc = (crc >> 4) ^ crctab[crc & 0xf];
/netbsd-6-1-5-RELEASE/sys/fs/nilfs/
H A Dnilfs_subr.c110 static const uint32_t crctab[] = { local
120 crc = (crc >> 4) ^ crctab[crc & 0xf];
121 crc = (crc >> 4) ^ crctab[crc & 0xf];
/netbsd-6-1-5-RELEASE/sys/net/
H A Dif_ethersubr.c1218 static const uint32_t crctab[] = { local
1231 crc = (crc >> 4) ^ crctab[crc & 0xf];
1232 crc = (crc >> 4) ^ crctab[crc & 0xf];
/netbsd-6-1-5-RELEASE/external/bsd/libarchive/dist/libarchive/
H A Darchive_write_set_format_mtree.c128 #define COMPUTE_CRC(var, ch) (var) = (var) << 8 ^ crctab[(var) >> 24 ^ (ch)]
129 static const uint32_t crctab[] = { variable
/netbsd-6-1-5-RELEASE/sys/dev/pci/
H A Dif_de.c2195 static const u_int crctab[] = {
2204 crc = (crc >> 4) ^ crctab[crc & 0xf];
2205 crc = (crc >> 4) ^ crctab[crc & 0xf];
2164 static const u_int crctab[] = { local

Completed in 213 milliseconds