Lines Matching defs:flags
81 if (word->flags & FICL_WORD_SMUDGED)
337 * ficlString, code, and flags. Does not require a NULL-terminated
342 ficlPrimitive code, ficlUnsigned8 flags)
360 word->flags = (ficlUnsigned8)(flags | FICL_WORD_SMUDGED);
369 if (!(flags & FICL_WORD_SMUDGED))
379 * name, code, and flags. Name must be NULL-terminated.
383 ficlPrimitive code, ficlUnsigned8 flags)
388 return (ficlDictionaryAppendWord(dictionary, s, code, flags));
393 ficlPrimitive code, ficlUnsigned8 flags)
403 code, flags);
406 word->flags = flags;
413 ficlInstruction i, ficlUnsigned8 flags)
416 (ficlPrimitive)i, (ficlUnsigned8)(FICL_WORD_INSTRUCTION | flags)));
421 ficlInstruction i, ficlUnsigned8 flags)
424 (ficlPrimitive)i, (ficlUnsigned8)(FICL_WORD_INSTRUCTION | flags)));
651 #define FICL_INSTRUCTION_TOKEN(token, description, flags) description,
816 * Changes the flags field of the most recently defined word:
823 dictionary->smudge->flags |= set;
829 * Changes the flags field of the most recently defined word:
836 dictionary->smudge->flags &= ~clear;
847 dictionary->smudge->flags |= FICL_WORD_IMMEDIATE;
869 word->flags &= ~(FICL_WORD_SMUDGED);