HomeSort by: relevance | last modified time | path
    Searched refs:crc64_table (Results 1 - 5 of 5) sorted by relevancy

  /src/external/public-domain/xz/dist/src/liblzma/check/
crc64_tablegen.c 20 static uint64_t crc64_table[4][256]; variable
30 uint64_t r = s == 0 ? b : crc64_table[s - 1][b];
39 crc64_table[s][b] = r;
46 crc64_table[s][b] = bswap64(crc64_table[s][b]);
66 crc64_table[s][b]);
crc64_small.c 16 static uint64_t crc64_table[256]; variable
33 crc64_table[b] = r;
48 crc = crc64_table[*buf++ ^ (crc & 0xFF)] ^ (crc >> 8);
  /src/external/mpl/bind/dist/lib/isc/
crc64.c 27 static const uint64_t crc64_table[256] = { variable
133 *crc = crc64_table[i] ^ (*crc << 8);
  /src/external/mpl/dhcp/bind/dist/lib/isc/
crc64.c 27 static const uint64_t crc64_table[256] = { variable
133 *crc = crc64_table[i] ^ (*crc << 8);
  /src/external/public-domain/xz/lib/
Makefile 39 SRCS+= check.c crc32_table.c crc64_table.c

Completed in 31 milliseconds