Lines Matching defs:word
7 ficlWordIsImmediate(ficlWord *word)
9 return ((word != NULL) && (word->flags & FICL_WORD_IMMEDIATE));
16 ficlWordIsCompileOnly(ficlWord *word)
18 return ((word != NULL) && (word->flags & FICL_WORD_COMPILE_ONLY));
23 * This public function helps to classify word types for SEE
24 * and the debugger in tools.c. Given an pointer to a word, it returns
28 ficlWordClassify(ficlWord *word)
34 if ((((ficlInstruction)word) > ficlInstructionInvalid) &&
35 (((ficlInstruction)word) < ficlInstructionLast)) {
36 i = (ficlInstruction)word;
41 code = word->code;