Home | History | Annotate | Download | only in src

Lines Matching refs:dictionary_size

82                                                  size_t dictionary_size) {
84 dictionary_size,
96 size_t dictionary_size) {
99 static_cast<int>(dictionary_size));
109 size_t BlockHash::CalcTableSize(const size_t dictionary_size) {
115 const size_t min_size = (dictionary_size / sizeof(int)) + 1; // NOLINT
123 VCD_DFATAL << "Internal error: CalcTableSize(dictionary_size = "
124 << dictionary_size
132 VCD_DFATAL << "Internal error: CalcTableSize(dictionary_size = "
133 << dictionary_size
140 // except for the case (dictionary_size == 0, table_size == 1).
141 if ((dictionary_size > 0) && (table_size > (min_size * 2))) {
142 VCD_DFATAL << "Internal error: CalcTableSize(dictionary_size = "
143 << dictionary_size