Searched refs:pDict (Results 1 – 5 of 5) sorted by relevance
/freebsd/stand/ficl/ |
H A D | dict.c | 69 static char *dictCopyName(FICL_DICT *pDict, STRINGINFO si); 81 void dictAbortDefinition(FICL_DICT *pDict) in dictAbortDefinition() argument 85 pFW = pDict->smudge; in dictAbortDefinition() 88 pDict->here = (CELL *)pFW->name; in dictAbortDefinition() 118 void dictAlign(FICL_DICT *pDict) in dictAlign() argument 120 pDict->here = alignPtr(pDict->here); in dictAlign() 129 int dictAllot(FICL_DICT *pDict, int n) in dictAllot() argument 131 char *cp = (char *)pDict->here; in dictAllot() 135 if ((unsigned)n <= dictCellsAvail(pDict) * sizeof (CELL)) in dictAllot() 143 if ((unsigned)n <= dictCellsUsed(pDict) * sizeof (CELL)) in dictAllot() [all …]
|
H A D | search.c | 59 FICL_DICT *pDict = vmGetDict(pVM); in definitions() local 61 assert(pDict); in definitions() 62 if (pDict->nLists < 1) in definitions() 67 pDict->pCompile = pDict->pSearch[pDict->nLists-1]; in definitions() 111 FICL_DICT *pDict = vmGetDict(pVM); in getOrder() local 112 int nLists = pDict->nLists; in getOrder() 118 stackPushPtr(pVM->pStack, pDict->pSearch[i]); in getOrder() 172 FICL_DICT *pDict = vmGetDict(pVM); in setCurrent() local 174 pDict->pCompile = pHash; in setCurrent()
|
H A D | ficl.h | 741 void dictAbortDefinition(FICL_DICT *pDict); 742 void dictAlign (FICL_DICT *pDict); 743 int dictAllot (FICL_DICT *pDict, int n); 744 int dictAllotCells (FICL_DICT *pDict, int nCells); 745 void dictAppendCell (FICL_DICT *pDict, CELL c); 746 void dictAppendChar (FICL_DICT *pDict, char c); 747 FICL_WORD *dictAppendWord (FICL_DICT *pDict, 751 FICL_WORD *dictAppendWord2(FICL_DICT *pDict, 755 void dictAppendUNS (FICL_DICT *pDict, FICL_UNS u); 756 int dictCellsAvail (FICL_DICT *pDict); [all …]
|
H A D | words.c | 2886 FICL_DICT *pDict = vmGetDict(pVM); in getLastWord() local 2887 FICL_WORD *wp = pDict->smudge; in getLastWord() 3974 FICL_DICT *pDict = vmGetDict(pVM); in recurseCoIm() local 3977 dictAppendCell(pDict, LVALUEtoCELL(pDict->smudge)); in recurseCoIm() 4252 FICL_DICT *pDict = vmGetDict(pVM); in doLocalIm() local 4264 dictAppendCell(pDict, LVALUEtoCELL(pVM->pSys->pGetLocal0)); in doLocalIm() 4268 dictAppendCell(pDict, LVALUEtoCELL(pVM->pSys->pGetLocal1)); in doLocalIm() 4272 dictAppendCell(pDict, LVALUEtoCELL(pVM->pSys->pGetLocalParen)); in doLocalIm() 4273 dictAppendCell(pDict, LVALUEtoCELL(nLocal)); in doLocalIm() 4305 FICL_DICT *pDict; in localParen() local [all …]
|
H A D | tools.c | 696 FICL_DICT *pDict = vmGetDict(pVM); in forgetWid() local 700 hashForget(pHash, pDict->here); in forgetWid() 721 FICL_DICT *pDict = vmGetDict(pVM); in forget() local 722 FICL_HASH *pHash = pDict->pCompile; in forget() 727 pDict->here = PTRtoCELL where; in forget()
|