Home
last modified time | relevance | path

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

/freebsd-12.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-12.1/crypto/heimdal/lib/sqlite/
H A Dsqlite3.c36397 nNew = p->nHash*2;
36405 if( p->nHash ){ sqlite3EndBenignMalloc(); }
36409 for(i=0; i<p->nHash; i++){
36421 p->nHash = nNew;
36476 h = pPage->iKey % pCache->nHash;
36512 for(h=0; h<pCache->nHash; h++){
36710 if( pCache->nHash>0 ){
36711 unsigned int h = iKey % pCache->nHash;
36779 unsigned int h = iKey % pCache->nHash;
36855 h = iOld%pCache->nHash;
[all …]
/freebsd-12.1/contrib/sqlite3/
H A Dsqlite3.c50211 nNew = p->nHash*2;
50222 for(i=0; i<p->nHash; i++){
50234 p->nHash = nNew;
50321 assert( pCache->nHash > 0 );
50333 h = pCache->nHash/2;
50339 assert( h<pCache->nHash );
50353 h = (h+1) % pCache->nHash;
50468 if( pCache->nHash==0 ){
50722 assert( pCache->nHash>0 );
50789 h = iOld%pCache->nHash;
[all …]