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

/haiku-fatelf/src/libs/compat/freebsd_network/
H A Dfbsd_ether.c66 static const uint32_t crctab[] = { local
79 crc = (crc >> 4) ^ crctab[crc & 0xf];
80 crc = (crc >> 4) ^ crctab[crc & 0xf];
/haiku-fatelf/src/bin/coreutils/src/
H A Dcksum.c24 which calculates the "crctab". It is included for those who want
25 verify the correctness of the "crctab". To recreate the "crctab",
28 cc -DCRCTAB -o crctab cksum.c
29 crctab > crctab.h
96 printf ("static uint_fast32_t const crctab[256] =\n{\n 0x00000000");
117 static uint_fast32_t const crctab[256] =
217 crc = (crc << 8) ^ crctab[((crc >> 24) ^ *cp++) & 0xFF];
239 crc = (crc << 8) ^ crctab[((cr
116 static uint_fast32_t const crctab[256] = variable
[all...]

Completed in 49 milliseconds