Lines Matching full:curr
94 Context **new_table, *curr, *next;109 curr = cxts.table[i];110 while (NULL != curr) {111 next = curr->next;113 new_idx = (UInt) (curr->hash % new_size);115 curr->next = new_table[new_idx];116 new_table[new_idx] = curr;117 if (curr->next) {119 if (curr->next->next)123 curr = next;