Lines Matching refs:here
82 dictionary->here = (ficlCell *)word->name; in ficlDictionaryAbortDefinition()
94 dictionary->here = ficlAlignPointer(dictionary->here); in ficlDictionaryAlign()
105 char *here = (char *)dictionary->here; in ficlDictionaryAllot() local
106 here += n; in ficlDictionaryAllot()
107 dictionary->here = FICL_POINTER_TO_CELL(here); in ficlDictionaryAllot()
118 dictionary->here += nficlCells; in ficlDictionaryAllotCells()
128 *dictionary->here++ = c; in ficlDictionaryAppendCell()
138 char *here = (char *)dictionary->here; in ficlDictionaryAppendCharacter() local
139 *here++ = c; in ficlDictionaryAppendCharacter()
140 dictionary->here = FICL_POINTER_TO_CELL(here); in ficlDictionaryAppendCharacter()
160 char *here = (char *)dictionary->here; in ficlDictionaryAppendData() local
161 char *oldHere = here; in ficlDictionaryAppendData()
166 return ((char *)dictionary->here); in ficlDictionaryAppendData()
170 *here++ = *from++; in ficlDictionaryAppendData()
174 *here++ = '\0'; in ficlDictionaryAppendData()
176 dictionary->here = FICL_POINTER_TO_CELL(here); in ficlDictionaryAppendData()
355 word = (ficlWord *)dictionary->here; in ficlDictionaryAppendWord()
367 dictionary->here = word->param; in ficlDictionaryAppendWord()
444 return (dictionary->here - dictionary->base); in ficlDictionaryCellsUsed()
488 hash = (ficlHash *)dictionary->here; in ficlDictionaryCreateWordlist()
518 dictionary->here = dictionary->base; in ficlDictionaryEmpty()
521 hash = (ficlHash *)dictionary->here; in ficlDictionaryEmpty()
882 return (dictionary->here); in ficlDictionaryWhere()