Home | History | Annotate | Download | only in src

Lines Matching refs:dictionary_size

81                                                  size_t dictionary_size) {
83 dictionary_size,
95 size_t dictionary_size) {
98 static_cast<int>(dictionary_size));
108 size_t BlockHash::CalcTableSize(const size_t dictionary_size) {
114 const size_t min_size = (dictionary_size / sizeof(int)) + 1; // NOLINT
122 LOG(DFATAL) << "Internal error: CalcTableSize(dictionary_size = "
123 << dictionary_size
131 LOG(DFATAL) << "Internal error: CalcTableSize(dictionary_size = "
132 << dictionary_size
139 // except for the case (dictionary_size == 0, table_size == 1).
140 if ((dictionary_size > 0) && (table_size > (min_size * 2))) {
141 LOG(DFATAL) << "Internal error: CalcTableSize(dictionary_size = "
142 << dictionary_size