Lines Matching defs:bsd_db
97 struct bsd_db { struct
98 int totlen; /* length of this structure */
99 uint_t hsize; /* size of the hash table */
100 uint32_t unit;
101 uchar_t hshift; /* used in hash function */
102 uchar_t n_bits; /* current bits/code */
103 uchar_t maxbits;
104 uchar_t flags;
105 ushort_t seqno; /* sequence number of next packet */
106 ushort_t mru;
107 uint_t hdrlen; /* header length to preallocate */
108 uint_t maxmaxcode; /* largest valid code */
109 uint_t max_ent; /* largest code in use */
110 uint_t in_count; /* uncompressed bytes, aged */
111 uint_t bytes_out; /* compressed bytes, aged */
112 uint_t ratio; /* recent compression ratio */
113 uint_t checkpoint; /* when to next check the ratio */
114 uint_t clear_count; /* times dictionary cleared */
115 uint_t incomp_count; /* incompressible packets */
116 uint_t incomp_bytes; /* incompressible bytes */
117 uint_t uncomp_count; /* uncompressed packets */
118 uint_t uncomp_bytes; /* uncompressed bytes */
119 uint_t comp_count; /* compressed packets */
120 uint_t comp_bytes; /* compressed bytes */
121 ushort_t *lens; /* array of lengths of codes */
122 struct bsd_dict {
139 } dict[1];