Lines Matching refs:header
160 int header));
333 FILE *header = fopen("trees.h", "w");
336 Assert (header != NULL, "Can't open trees.h");
337 fprintf(header,
338 "/* header created automatically with -DGEN_TREES_H */\n\n");
340 fprintf(header, "local const ct_data static_ltree[L_CODES+2] = {\n");
342 fprintf(header, "{{%3u},{%3u}}%s", static_ltree[i].Code,
346 fprintf(header, "local const ct_data static_dtree[D_CODES] = {\n");
348 fprintf(header, "{{%2u},{%2u}}%s", static_dtree[i].Code,
352 fprintf(header, "const uch _dist_code[DIST_CODE_LEN] = {\n");
354 fprintf(header, "%2u%s", _dist_code[i],
358 fprintf(header, "const uch _length_code[MAX_MATCH-MIN_MATCH+1]= {\n");
360 fprintf(header, "%2u%s", _length_code[i],
364 fprintf(header, "local const int base_length[LENGTH_CODES] = {\n");
366 fprintf(header, "%1u%s", base_length[i],
370 fprintf(header, "local const int base_dist[D_CODES] = {\n");
372 fprintf(header, "%5u%s", base_dist[i],
376 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 */
1192 local void copy_block(s, buf, len, header)
1196 int header; /* true if block header must be written */
1201 if (header) {