Symbol: FICL_HASH
stand/ficl/dict.c
390
nAlloc = sizeof (FICL_HASH) + nCells * sizeof (CELL)
stand/ficl/dict.c
409
FICL_HASH *dictCreateWordlist(FICL_DICT *dp, int nBuckets)
stand/ficl/dict.c
411
FICL_HASH *pHash;
stand/ficl/dict.c
414
pHash = (FICL_HASH *)dp->here;
stand/ficl/dict.c
415
dictAllot(dp, sizeof (FICL_HASH)
stand/ficl/dict.c
443
FICL_HASH *pHash;
stand/ficl/dict.c
448
pHash = (FICL_HASH *)pDict->here;
stand/ficl/dict.c
450
sizeof (FICL_HASH) + (nHash - 1) * sizeof (FICL_WORD *));
stand/ficl/dict.c
478
FICL_HASH *pFHash;
stand/ficl/dict.c
561
FICL_HASH *pHash;
stand/ficl/dict.c
590
FICL_HASH *pHash = ficlGetLoc(pSys)->pForthWords;
stand/ficl/dict.c
669
FICL_HASH *pHash = pDict->pCompile;
stand/ficl/dict.c
700
void hashForget(FICL_HASH *pHash, void *where)
stand/ficl/dict.c
765
void hashInsertWord(FICL_HASH *pHash, FICL_WORD *pFW)
stand/ficl/dict.c
796
FICL_WORD *hashLookup(FICL_HASH *pHash, STRINGINFO si, UNS16 hashCode)
stand/ficl/dict.c
831
void hashReset(FICL_HASH *pHash)
stand/ficl/ficl.h
691
void hashForget (FICL_HASH *pHash, void *where);
stand/ficl/ficl.h
693
void hashInsertWord(FICL_HASH *pHash, FICL_WORD *pFW);
stand/ficl/ficl.h
694
FICL_WORD *hashLookup (FICL_HASH *pHash, STRINGINFO si, UNS16 hashCode);
stand/ficl/ficl.h
695
void hashReset (FICL_HASH *pHash);
stand/ficl/ficl.h
732
FICL_HASH *pForthWords;
stand/ficl/ficl.h
733
FICL_HASH *pCompile;
stand/ficl/ficl.h
734
FICL_HASH *pSearch[FICL_DEFAULT_VOCS];
stand/ficl/ficl.h
762
FICL_HASH *dictCreateWordlist(FICL_DICT *dp, int nBuckets);
stand/ficl/prefix.c
160
FICL_HASH *pHash;
stand/ficl/prefix.c
161
FICL_HASH *pPrevCompile = dp->pCompile;
stand/ficl/prefix.c
75
FICL_HASH *pHash;
stand/ficl/prefix.c
85
pHash = (FICL_HASH *)(pFW->param[0].p);
stand/ficl/search.c
140
FICL_HASH *pHash = stackPopPtr(pVM->pStack);
stand/ficl/search.c
171
FICL_HASH *pHash = stackPopPtr(pVM->pStack);
stand/ficl/search.c
240
FICL_HASH *pHash;
stand/ficl/search.c
302
FICL_HASH *pHash = vmPop(pVM).p;
stand/ficl/search.c
322
FICL_HASH *pHash = vmPop(pVM).p;
stand/ficl/search.c
337
FICL_HASH *parent, *child;
stand/ficl/search.c
341
child = (FICL_HASH *)stackPopPtr(pVM->pStack);
stand/ficl/search.c
342
parent = (FICL_HASH *)stackPopPtr(pVM->pStack);
stand/ficl/search.c
81
FICL_HASH *pHash = vmGetDict(pVM)->pForthWords;
stand/ficl/testmain.c
214
FICL_HASH *pHash = vmGetDict(pVM)->pForthWords;
stand/ficl/tools.c
697
FICL_HASH *pHash;
stand/ficl/tools.c
699
pHash = (FICL_HASH *)stackPopPtr(pVM->pStack);
stand/ficl/tools.c
722
FICL_HASH *pHash = pDict->pCompile;
stand/ficl/tools.c
741
FICL_HASH *pHash = dp->pSearch[dp->nLists - 1];
stand/ficl/tools.c
818
FICL_HASH *pHash = dp->pForthWords;