Home | History | Annotate | Download | only in src

Lines Matching defs:header

156                               int header));
330 FILE *header = fopen("trees.h", "w");
333 Assert (header != NULL, "Can't open trees.h");
334 fprintf(header,
335 "/* header created automatically with -DGEN_TREES_H */\n\n");
337 fprintf(header, "local const ct_data static_ltree[L_CODES+2] = {\n");
339 fprintf(header, "{{%3u},{%3u}}%s", static_ltree[i].Code,
343 fprintf(header, "local const ct_data static_dtree[D_CODES] = {\n");
345 fprintf(header, "{{%2u},{%2u}}%s", static_dtree[i].Code,
349 fprintf(header, "const uch ZLIB_INTERNAL _dist_code[DIST_CODE_LEN] = {\n");
351 fprintf(header, "%2u%s", _dist_code[i],
355 fprintf(header,
358 fprintf(header, "%2u%s", _length_code[i],
362 fprintf(header, "local const int base_length[LENGTH_CODES] = {\n");
364 fprintf(header, "%1u%s", base_length[i],
368 fprintf(header, "local const int base_dist[D_CODES] = {\n");
370 fprintf(header, "%5u%s", base_dist[i],
374 fclose(header);
832 * Send the header for a block using dynamic Huffman trees: the counts, the
876 copy_block(s, buf, (unsigned)stored_len, 1); /* with header */
1205 local void copy_block(s, buf, len, header)
1209 int header; /* true if block header must be written */
1213 if (header) {