Lines Matching refs:header
160 int header));
332 FILE *header = fopen("trees.h", "w");
335 Assert (header != NULL, "Can't open trees.h");
336 fprintf(header,
337 "/* header created automatically with -DGEN_TREES_H */\n\n");
339 fprintf(header, "local const ct_data static_ltree[L_CODES+2] = {\n");
341 fprintf(header, "{{%3u},{%3u}}%s", static_ltree[i].Code,
345 fprintf(header, "local const ct_data static_dtree[D_CODES] = {\n");
347 fprintf(header, "{{%2u},{%2u}}%s", static_dtree[i].Code,
351 fprintf(header, "const uch _dist_code[DIST_CODE_LEN] = {\n");
353 fprintf(header, "%2u%s", _dist_code[i],
357 fprintf(header, "const uch _length_code[MAX_MATCH-MIN_MATCH+1]= {\n");
359 fprintf(header, "%2u%s", _length_code[i],
363 fprintf(header, "local const int base_length[LENGTH_CODES] = {\n");
365 fprintf(header, "%1u%s", base_length[i],
369 fprintf(header, "local const int base_dist[D_CODES] = {\n");
371 fprintf(header, "%5u%s", base_dist[i],
375 fclose(header);
834 * Send the header for a block using dynamic Huffman trees: the counts, the
878 copy_block(s, buf, (unsigned)stored_len, 1); /* with header */
1197 local void copy_block(s, buf, len, header)
1201 int header; /* true if block header must be written */
1206 if (header) {