Home
last modified time | relevance | path

Searched refs:nHash (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/stand/ficl/
H A Ddict.c386 FICL_DICT *dictCreateHashed(unsigned nCells, unsigned nHash) in dictCreateHashed() argument
392 + (nHash - 1) * sizeof (FICL_WORD *); in dictCreateHashed()
401 dictEmpty(pDict, nHash); in dictCreateHashed()
442 void dictEmpty(FICL_DICT *pDict, unsigned nHash) in dictEmpty() argument
451 sizeof (FICL_HASH) + (nHash - 1) * sizeof (FICL_WORD *)); in dictEmpty()
453 pHash->size = nHash; in dictEmpty()
H A Dtestmain.c219 unsigned nHash = pHash->size; in spewHash() local
231 for (i=0; i < nHash; i++) in spewHash()
H A Dficl.h762 FICL_DICT *dictCreateHashed(unsigned nCells, unsigned nHash);
765 void dictEmpty (FICL_DICT *pDict, unsigned nHash);
/freebsd-13.1/contrib/sqlite3/
H A Dsqlite3.c51256 nNew = p->nHash*2;
51267 for(i=0; i<p->nHash; i++){
51279 p->nHash = nNew;
51366 assert( pCache->nHash > 0 );
51378 h = pCache->nHash/2;
51384 assert( h<pCache->nHash );
51398 h = (h+1) % pCache->nHash;
51513 if( pCache->nHash==0 ){
51773 assert( pCache->nHash>0 );
51840 h = iOld%pCache->nHash;
[all …]