Home | History | Annotate | Download | only in zlib

Lines Matching defs:big

110   Swap the bytes in a z_word_t to convert between little and big endian. Any
352 z_word_t big[8][256];
368 /* write out big-endian CRC table for 64-bit z_word_t to crc32.h */
381 /* write out big-endian CRC table for 32-bit z_word_t to crc32.h */
401 braid(ltl, big, n, 8);
420 write_table64(out, big[k], 256);
427 braid(ltl, big, n, 4);
446 write_table32hi(out, big[k], 256);
527 big-endian braid tables for the given n and z_word_t
530 local void braid(z_crc_t ltl[][256], z_word_t big[][256], int n, int w) {
536 big[w - 1 - k][0] = 0;
539 big[w - 1 - k][i] = byte_swap(q);
862 /* Big endian. */