Home
last modified time | relevance | path

Searched refs:pHash (Results 1 – 8 of 8) sorted by relevance

/freebsd-10-stable/sys/boot/ficl/
Ddict.c412 FICL_HASH *pHash; in dictCreateWordlist() local
415 pHash = (FICL_HASH *)dp->here; in dictCreateWordlist()
419 pHash->size = nBuckets; in dictCreateWordlist()
420 hashReset(pHash); in dictCreateWordlist()
421 return pHash; in dictCreateWordlist()
444 FICL_HASH *pHash; in dictEmpty() local
449 pHash = (FICL_HASH *)pDict->here; in dictEmpty()
453 pHash->size = nHash; in dictEmpty()
454 hashReset(pHash); in dictEmpty()
456 pDict->pForthWords = pHash; in dictEmpty()
[all …]
Dprefix.c76 FICL_HASH *pHash; in ficlParsePrefix() local
86 pHash = (FICL_HASH *)(pFW->param[0].p); in ficlParsePrefix()
90 for (i = 0; i < (int)pHash->size; i++) in ficlParsePrefix()
92 pFW = pHash->table[i]; in ficlParsePrefix()
161 FICL_HASH *pHash; in ficlCompilePrefix() local
172 pHash = dictCreateWordlist(dp, 1); in ficlCompilePrefix()
173 pHash->name = list_name; in ficlCompilePrefix()
175 dictAppendCell(dp, LVALUEtoCELL(pHash)); in ficlCompilePrefix()
186 dp->pCompile = pHash; in ficlCompilePrefix()
Dsearch.c82 FICL_HASH *pHash = vmGetDict(pVM)->pForthWords; in forthWordlist() local
83 stackPushPtr(pVM->pStack, pHash); in forthWordlist()
141 FICL_HASH *pHash = stackPopPtr(pVM->pStack); in searchWordlist() local
148 pFW = hashLookup(pHash, si, hashCode); in searchWordlist()
172 FICL_HASH *pHash = stackPopPtr(pVM->pStack); in setCurrent() local
175 pDict->pCompile = pHash; in setCurrent()
241 FICL_HASH *pHash; in ficlWordlist() local
248 pHash = dictCreateWordlist(dp, nBuckets); in ficlWordlist()
249 stackPushPtr(pVM->pStack, pHash); in ficlWordlist()
303 FICL_HASH *pHash = vmPop(pVM).p; in widGetName() local
[all …]
Dtools.c698 FICL_HASH *pHash; in forgetWid() local
700 pHash = (FICL_HASH *)stackPopPtr(pVM->pStack); in forgetWid()
701 hashForget(pHash, pDict->here); in forgetWid()
723 FICL_HASH *pHash = pDict->pCompile; in forget() local
727 hashForget(pHash, where); in forget()
742 FICL_HASH *pHash = dp->pSearch[dp->nLists - 1]; in listWords() local
752 for (i = 0; i < pHash->size; i++) in listWords()
754 for (wp = pHash->table[i]; wp != NULL; wp = wp->link, nWords++) in listWords()
819 FICL_HASH *pHash = dp->pForthWords; in listEnv() local
824 for (i = 0; i < pHash->size; i++) in listEnv()
[all …]
Dtestmain.c215 FICL_HASH *pHash = vmGetDict(pVM)->pForthWords; in spewHash() local
219 unsigned nHash = pHash->size; in spewHash()
235 pFW = pHash->table[i]; in spewHash()
244 pFW = pHash->table[i]; in spewHash()
Dficl.h692 void hashForget (FICL_HASH *pHash, void *where);
694 void hashInsertWord(FICL_HASH *pHash, FICL_WORD *pFW);
695 FICL_WORD *hashLookup (FICL_HASH *pHash, STRINGINFO si, UNS16 hashCode);
696 void hashReset (FICL_HASH *pHash);
/freebsd-10-stable/contrib/sqlite3/
Dsqlite3.c14107 FuncDef *pHash; /* Next with a different name but the same hash */ member
28821 unsigned int *pHash /* Write the hash value here */
28838 *pHash = h;
97846 Hash *pHash;
97849 pHash = &db->aDb[iDb].pSchema->idxHash;
97850 pIndex = sqlite3HashInsert(pHash, zIdxName, 0);
99674 Hash *pHash;
99679 pHash = &pDb->pSchema->tblHash;
99680 for(pElem=sqliteHashFirst(pHash); pElem; pElem=sqliteHashNext(pElem)){
99686 pHash = &pDb->pSchema->idxHash;
[all …]
/freebsd-10-stable/crypto/heimdal/lib/sqlite/
Dsqlite3.c9635 FuncDef *pHash; /* Next with a different name but the same hash */ member
14326 FuncDefHash *pHash = &GLOBAL(FuncDefHash, sqlite3GlobalFunctions); in sqlite3RegisterDateTimeFunctions() local
14330 sqlite3FuncDefInsert(pHash, &aFunc[i]); in sqlite3RegisterDateTimeFunctions()
77017 FuncDefHash *pHash = &GLOBAL(FuncDefHash, sqlite3GlobalFunctions);
77021 sqlite3FuncDefInsert(pHash, &aFunc[i]);
79508 Hash *pHash;
79511 pHash = &db->aDb[iDb].pSchema->idxHash;
79513 pIndex = sqlite3HashInsert(pHash, zIdxName, len, 0);
81010 Hash *pHash;
81015 pHash = &pDb->pSchema->tblHash;
[all …]