Lines Matching refs:n1
225 OPENSSL_LH_NODE **n, **n1, **n2, *np; in expand() local
251 n1 = &(lh->b[p]); in expand()
255 for (np = *n1; np != NULL;) { in expand()
258 *n1 = (*n1)->next; in expand()
262 n1 = &((*n1)->next); in expand()
263 np = *n1; in expand()
271 OPENSSL_LH_NODE **n, *n1, *np; in contract() local
294 n1 = lh->b[(int)lh->p]; in contract()
295 if (n1 == NULL) in contract()
298 while (n1->next != NULL) in contract()
299 n1 = n1->next; in contract()
300 n1->next = np; in contract()
307 OPENSSL_LH_NODE **ret, *n1; in getrn() local
321 for (n1 = *ret; n1 != NULL; n1 = n1->next) { in getrn()
323 if (n1->hash != hash) { in getrn()
324 ret = &(n1->next); in getrn()
328 if (cf(n1->data, data) == 0) in getrn()
330 ret = &(n1->next); in getrn()