Home | History | Annotate | Download | only in zlib

Lines Matching defs:local

33 #define local static

40 local unsigned long crc32_little OF((unsigned long,
42 local unsigned long crc32_big OF((unsigned long,
49 /* Local functions for crc concatenation */
50 local unsigned long gf2_matrix_times OF((unsigned long *mat,
52 local void gf2_matrix_square OF((unsigned long *square, unsigned long *mat));
53 local uLong crc32_combine_ OF((uLong crc1, uLong crc2, z_off64_t len2));
58 local volatile int crc_table_empty = 1;
59 local z_crc_t FAR crc_table[TBLS][256];
60 local void make_crc_table OF((void));
62 local void write_table OF((FILE *, const z_crc_t FAR *));
90 local void make_crc_table()
149 fprintf(out, "local const z_crc_t FAR ");
167 local void write_table(out, table)
247 local unsigned long crc32_little(crc, buf, len)
287 local unsigned long crc32_big(crc, buf, len)
327 local unsigned long gf2_matrix_times(mat, vec)
344 local void gf2_matrix_square(square, mat)
355 local uLong crc32_combine_(crc1, crc2, len2)