Lines Matching defs:header
161 int header));
335 FILE *header = fopen("trees.h", "w");
338 Assert (header != NULL, "Can't open trees.h");
339 fprintf(header,
340 "/* header created automatically with -DGEN_TREES_H */\n\n");
342 fprintf(header, "local const ct_data static_ltree[L_CODES+2] = {\n");
344 fprintf(header, "{{%3u},{%3u}}%s", static_ltree[i].Code,
348 fprintf(header, "local const ct_data static_dtree[D_CODES] = {\n");
350 fprintf(header, "{{%2u},{%2u}}%s", static_dtree[i].Code,
354 fprintf(header, "const uch ZLIB_INTERNAL _dist_code[DIST_CODE_LEN] = {\n");
356 fprintf(header, "%2u%s", _dist_code[i],
360 fprintf(header,
363 fprintf(header, "%2u%s", _length_code[i],
367 fprintf(header, "local const int base_length[LENGTH_CODES] = {\n");
369 fprintf(header, "%1u%s", base_length[i],
373 fprintf(header, "local const int base_dist[D_CODES] = {\n");
375 fprintf(header, "%5u%s", base_dist[i],
379 fclose(header);
838 * Send the header for a block using dynamic Huffman trees: the counts, the
882 copy_block(s, buf, (unsigned)stored_len, 1); /* with header */
1200 local void copy_block(s, buf, len, header)
1204 int header; /* true if block header must be written */
1209 if (header) {