Lines Matching +full:p +full:- +full:384
1 // SPDX-License-Identifier: Zlib
36 * Parameter Block for Generate Dynamic-Huffman Table, Compress and Expand.
39 uint16_t pbvn; /* Parameter-Block-Version Number */
40 uint8_t mvn; /* Model-Version Number */
49 unsigned htt : 1; /* Huffman-Table Type */
50 unsigned bcf : 1; /* Block-Continuation Flag */
58 unsigned sbb : 3; /* Sub-Byte Boundary */
59 uint8_t oesc; /* Operation-Ending-Supplemental Code */
61 unsigned ifs : 4; /* Incomplete-Function Status */
62 uint16_t ifl; /* Incomplete-Function Length */
70 unsigned eobs : 15; /* End-of-block Symbol */
72 uint8_t eobl : 4; /* End-of-block Length */
75 uint16_t cdhtl : 12; /* Compressed-Dynamic-Huffman Table
83 static_assert(offsetof(struct dfltcc_param_v0, csb) == 384);
97 char msg[64]; /* Buffer for strm->msg */
111 #define ALIGN_UP(p, size) (__typeof__(p))(((uintptr_t)(p) + ((size) - 1)) & ~((size) - 1)) argument