Home | History | Annotate | Download | only in protobuf

Lines Matching refs:size_lg2

4101 static bool init(upb_table *t, upb_ctype_t ctype, uint8_t size_lg2) {
4106 t->size_lg2 = size_lg2;
4134 if (t->size_lg2 == 0) return NULL;
4303 bool upb_strtable_resize(upb_strtable *t, size_t size_lg2) {
4307 if (!init(&new_table.t, t->t.ctype, size_lg2))
4330 if (!upb_strtable_resize(t, t->t.size_lg2 + 1)) {
4507 if (!init(&new_table, t->t.ctype, t->t.size_lg2 + 1))
4618 int size_lg2;
4619 for (size_lg2 = ARRAY_SIZE(counts) - 1; size_lg2 > 1; size_lg2--) {
4620 arr_size = 1 << size_lg2;
4621 arr_count -= counts[size_lg2];
4647 assert(new_t.t.size_lg2 == hashsize_lg2);