Home | History | Annotate | Download | only in lhash

Lines Matching refs:nn

160 	LHASH_NODE *n,*nn;
170 nn=n->next;
172 n=nn;
182 LHASH_NODE *nn,**rn;
193 if ((nn=(LHASH_NODE *)OPENSSL_malloc(sizeof(LHASH_NODE))) == NULL)
198 nn->data=data;
199 nn->next=NULL;
201 nn->hash=hash;
203 *rn=nn;
220 LHASH_NODE *nn,**rn;
233 nn= *rn;
234 *rn=nn->next;
235 ret=nn->data;
236 OPENSSL_free(nn);
408 unsigned long hash,nn;
415 nn=hash%lh->pmax;
416 if (nn < lh->p)
417 nn=hash%lh->num_alloc_nodes;
420 ret= &(lh->b[(int)nn]);