Lines Matching refs:n1
312 LHASH_NODE **n,**n1,**n2,*np;
319 n1= &(lh->b[p]);
324 for (np= *n1; np != NULL; )
334 *n1= (*n1)->next;
339 n1= &((*n1)->next);
340 np= *n1;
368 LHASH_NODE **n,*n1,*np;
394 n1=lh->b[(int)lh->p];
395 if (n1 == NULL)
399 while (n1->next != NULL)
400 n1=n1->next;
401 n1->next=np;
407 LHASH_NODE **ret,*n1;
421 for (n1= *ret; n1 != NULL; n1=n1->next)
425 if (n1->hash != hash)
427 ret= &(n1->next);
432 if(cf(n1->data,data) == 0)
434 ret= &(n1->next);