Lines Matching refs:curr_BBCC
198 BBCC *curr_BBCC, *next_BBCC; in resize_bbcc_hash() local
210 curr_BBCC = current_bbccs.table[i]; in resize_bbcc_hash()
211 while (NULL != curr_BBCC) { in resize_bbcc_hash()
212 next_BBCC = curr_BBCC->next; in resize_bbcc_hash()
214 new_idx = bbcc_hash_idx(curr_BBCC->bb, in resize_bbcc_hash()
215 curr_BBCC->cxt, in resize_bbcc_hash()
218 curr_BBCC->next = new_table[new_idx]; in resize_bbcc_hash()
219 new_table[new_idx] = curr_BBCC; in resize_bbcc_hash()
220 if (curr_BBCC->next) { in resize_bbcc_hash()
222 if (curr_BBCC->next->next) in resize_bbcc_hash()
226 curr_BBCC = next_BBCC; in resize_bbcc_hash()