Lines Matching defs:header
24 * When we have to write the Huffman table we will sometimes choose a header
25 * size larger than necessary. This is because we have to pick the header size
29 * We write the header when writeEntropy=1 and set entropyWritten=1 when we succeeded
30 * in writing the header, otherwise it is set to 0.
47 size_t const header = writeEntropy ? 200 : 0;
48 size_t const lhSize = 3 + (litSize >= (1 KB - header)) + (litSize >= (16 KB - header));
88 /* If we expand and we aren't writing a header then emit uncompressed */
93 /* If we are writing headers then allow expansion that doesn't change our header size. */
96 DEBUGLOG(5, "Literals expanded beyond allowed header size");
102 /* Build header */
153 * The first successfully compressed block will have these in its header.
294 /* Write block header */