Lines Matching refs:info
102 const HASHINFO *info) /* Special directives for create */ argument
162 if (!(hashp = init_hash(hashp, file, (HASHINFO *)info)))
166 if (info && info->hash)
167 hashp->hash = info->hash;
215 if (info && info->cachesize)
216 __buf_init(hashp, info->cachesize);
308 const HASHINFO *info) argument
342 if (info) {
343 if (info->bsize) {
345 hashp->BSHIFT = __log2(info->bsize);
352 if (info->ffactor)
353 hashp->FFACTOR = info->ffactor;
354 if (info->hash)
355 hashp->hash = info->hash;
356 if (info->nelem)
357 nelem = info->nelem;
358 if (info->lorder) {
359 if (info->lorder != DB_BIG_ENDIAN &&
360 info->lorder != DB_LITTLE_ENDIAN) {
364 hashp->LORDER = info->lorder;