Lines Matching defs:nhash
67 int falseflg, nhash, nitem, nfound, frtbl, kk;
177 fread(&nhash, sizeof (nhash), 1, fa);
182 hpt = (long *)calloc(nhash, sizeof (*hpt));
183 kk = fread(hpt, sizeof (*hpt), nhash, fa);
185 fprintf(stderr, "read %d hashes, iflong %d, nhash %d\n",
186 kk, iflong, nhash);
188 assert(kk == nhash);
189 hfreq = (int *)calloc(nhash, sizeof (*hfreq));
191 frtbl = fread(hfreq, sizeof (*hfreq), nhash, fa);
192 hfrflg = (frtbl == nhash);
205 nfound = doquery(hpt, nhash, fb, nitem, qitem, master);