Symbol: z_crc_t
common/dist/zlib/crc32.c
149
local z_crc_t FAR x2n_table[32];
common/dist/zlib/crc32.c
204
local z_crc_t FAR crc_table[256];
common/dist/zlib/crc32.c
207
local z_crc_t FAR crc_braid_table[W][256];
common/dist/zlib/crc32.c
209
local void braid(z_crc_t [][256], z_word_t [][256], int, int);
common/dist/zlib/crc32.c
212
local void write_table(FILE *, const z_crc_t FAR *, int);
common/dist/zlib/crc32.c
247
z_crc_t p;
common/dist/zlib/crc32.c
261
p = (z_crc_t)1 << 30; /* x^1 */
common/dist/zlib/crc32.c
264
x2n_table[n] = p = (z_crc_t)multmodp(p, p);
common/dist/zlib/crc32.c
284
z_crc_t ltl[8][256];
common/dist/zlib/crc32.c
412
local void write_table(FILE *out, const z_crc_t FAR *table, int k) {
common/dist/zlib/crc32.c
463
local void braid(z_crc_t ltl[][256], z_word_t big[][256], int n, int w) {
common/dist/zlib/crc32.c
465
z_crc_t i, p, q;
common/dist/zlib/crc32.c
467
p = (z_crc_t)x2nmodp((n * w + 3 - k) << 3, 0);
common/dist/zlib/crc32.c
471
ltl[k][i] = q = (z_crc_t)multmodp(i << 24, p);
common/dist/zlib/crc32.c
484
const z_crc_t FAR * ZEXPORT get_crc_table(void) {
common/dist/zlib/crc32.c
488
return (const z_crc_t FAR *)crc_table;
common/dist/zlib/crc32.c
610
local z_crc_t crc_word(z_word_t data) {
common/dist/zlib/crc32.c
614
return (z_crc_t)data;
common/dist/zlib/crc32.c
667
z_crc_t crc0;
common/dist/zlib/crc32.c
670
z_crc_t crc1;
common/dist/zlib/crc32.c
673
z_crc_t crc2;
common/dist/zlib/crc32.c
676
z_crc_t crc3;
common/dist/zlib/crc32.c
679
z_crc_t crc4;
common/dist/zlib/crc32.c
682
z_crc_t crc5;
common/dist/zlib/crc32.h
1323
local const z_crc_t FAR crc_braid_table[][256] = {
common/dist/zlib/crc32.h
1751
local const z_crc_t FAR crc_braid_table[][256] = {
common/dist/zlib/crc32.h
213
local const z_crc_t FAR crc_braid_table[][256] = {
common/dist/zlib/crc32.h
2861
local const z_crc_t FAR crc_braid_table[][256] = {
common/dist/zlib/crc32.h
3289
local const z_crc_t FAR crc_braid_table[][256] = {
common/dist/zlib/crc32.h
4399
local const z_crc_t FAR crc_braid_table[][256] = {
common/dist/zlib/crc32.h
4827
local const z_crc_t FAR crc_braid_table[][256] = {
common/dist/zlib/crc32.h
5
local const z_crc_t FAR crc_table[] = {
common/dist/zlib/crc32.h
5937
local const z_crc_t FAR crc_braid_table[][256] = {
common/dist/zlib/crc32.h
6365
local const z_crc_t FAR crc_braid_table[][256] = {
common/dist/zlib/crc32.h
7475
local const z_crc_t FAR crc_braid_table[][256] = {
common/dist/zlib/crc32.h
7903
local const z_crc_t FAR crc_braid_table[][256] = {
common/dist/zlib/crc32.h
9013
local const z_crc_t FAR crc_braid_table[][256] = {
common/dist/zlib/crc32.h
9439
local const z_crc_t FAR x2n_table[] = {
common/dist/zlib/zlib.h
2039
ZEXTERN const z_crc_t FAR * ZEXPORT get_crc_table(void);