header            625 tools/packfi2/deflate.c             uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8;
header            636 tools/packfi2/deflate.c             header |= (level_flags << 6);
header            637 tools/packfi2/deflate.c             if (s->strstart != 0) header |= PRESET_DICT;
header            638 tools/packfi2/deflate.c             header += 31 - (header % 31);
header            641 tools/packfi2/deflate.c             putShortMSB(s, header);
header            160 tools/packfi2/trees.c                               int header));
header            332 tools/packfi2/trees.c     FILE *header = fopen("trees.h", "w");
header            335 tools/packfi2/trees.c     Assert (header != NULL, "Can't open trees.h");
header            336 tools/packfi2/trees.c     fprintf(header,
header            339 tools/packfi2/trees.c     fprintf(header, "local const ct_data static_ltree[L_CODES+2] = {\n");
header            341 tools/packfi2/trees.c         fprintf(header, "{{%3u},{%3u}}%s", static_ltree[i].Code,
header            345 tools/packfi2/trees.c     fprintf(header, "local const ct_data static_dtree[D_CODES] = {\n");
header            347 tools/packfi2/trees.c         fprintf(header, "{{%2u},{%2u}}%s", static_dtree[i].Code,
header            351 tools/packfi2/trees.c     fprintf(header, "const uch _dist_code[DIST_CODE_LEN] = {\n");
header            353 tools/packfi2/trees.c         fprintf(header, "%2u%s", _dist_code[i],
header            357 tools/packfi2/trees.c     fprintf(header, "const uch _length_code[MAX_MATCH-MIN_MATCH+1]= {\n");
header            359 tools/packfi2/trees.c         fprintf(header, "%2u%s", _length_code[i],
header            363 tools/packfi2/trees.c     fprintf(header, "local const int base_length[LENGTH_CODES] = {\n");
header            365 tools/packfi2/trees.c         fprintf(header, "%1u%s", base_length[i],
header            369 tools/packfi2/trees.c     fprintf(header, "local const int base_dist[D_CODES] = {\n");
header            371 tools/packfi2/trees.c         fprintf(header, "%5u%s", base_dist[i],
header            375 tools/packfi2/trees.c     fclose(header);
header           1197 tools/packfi2/trees.c local void copy_block(s, buf, len, header)
header           1201 tools/packfi2/trees.c     int      header;  /* true if block header must be written */
header           1206 tools/packfi2/trees.c     if (header) {