Lines Matching full:bucket
809 int i, bucket, newnbuckets = d->nbuckets * 2;
821 bucket = ptr->rr.resrec.namehash % newnbuckets;
824 tmp->next = new[bucket];
825 new[bucket] = tmp;
1377 int i, allocsize, bucket;
1400 bucket = rr->namehash % d->nbuckets;
1401 rptr = &d->table[bucket];
1446 bucket = rr->namehash % d->nbuckets;
1447 rptr = &d->table[bucket];
1461 tmp->next = d->table[bucket];
1462 d->table[bucket] = tmp;
1672 int bucket = DomainNameHashValue(&e->qname) % LLQ_TABLESIZE;
1673 LLQEntry **ptr = &d->LLQTable[bucket];
1688 AnswerListElem **tbl = &d->AnswerTable[bucket];
2060 int bucket = DomainNameHashValue(&e->qname) % LLQ_TABLESIZE;
2061 AnswerListElem *a = d->AnswerTable[bucket];
2072 a->next = d->AnswerTable[bucket];
2073 d->AnswerTable[bucket] = a;
2087 int bucket = DomainNameHashValue(qname) % LLQ_TABLESIZE;
2112 e->next = d->LLQTable[bucket];
2113 d->LLQTable[bucket] = e;
2286 int bucket = bucket = DomainNameHashValue(qname) % LLQ_TABLESIZE;
2287 LLQEntry *ptr = d->LLQTable[bucket];