Home
last modified time | relevance | path

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

/src/stand/ficl/
H A Ddict.c385 FICL_DICT *dictCreateHashed(unsigned nCells, unsigned nHash) in dictCreateHashed() argument
391 + (nHash - 1) * sizeof (FICL_WORD *); in dictCreateHashed()
400 dictEmpty(pDict, nHash); in dictCreateHashed()
441 void dictEmpty(FICL_DICT *pDict, unsigned nHash) in dictEmpty() argument
450 sizeof (FICL_HASH) + (nHash - 1) * sizeof (FICL_WORD *)); in dictEmpty()
452 pHash->size = nHash; in dictEmpty()
H A Dtestmain.c218 unsigned nHash = pHash->size; in spewHash() local
230 for (i=0; i < nHash; i++) in spewHash()
H A Dficl.h761 FICL_DICT *dictCreateHashed(unsigned nCells, unsigned nHash);
764 void dictEmpty (FICL_DICT *pDict, unsigned nHash);
/src/contrib/sqlite3/
H A Dsqlite3.c56307 unsigned int nHash; /* Number of slots in apHash[] */ member
56650 nNew = 2*(u64)p->nHash;
56656 if( p->nHash ){ sqlite3BeginBenignMalloc(); }
56658 if( p->nHash ){ sqlite3EndBenignMalloc(); }
56661 for(i=0; i<p->nHash; i++){
56673 p->nHash = nNew;
56715 h = pPage->iKey % pCache->nHash;
56760 assert( pCache->nHash > 0 );
56761 if( pCache->iMaxKey - iLimit < pCache->nHash ){
56766 h = iLimit % pCache->nHash;
[all …]