Home
last modified time | relevance | path

Searched refs:FW_IMMEDIATE (Results 1 – 6 of 6) sorted by relevance

/freebsd/stand/ficl/
H A Dwords.c4872 dictAppendWord(dp, "(", commentHang, FW_IMMEDIATE); in ficlCompileCore()
4958 dictAppendWord(dp, "literal", literalIm, FW_IMMEDIATE); in ficlCompileCore()
4978 dictAppendWord(dp, "s\"", stringQuoteIm, FW_IMMEDIATE); in ficlCompileCore()
5007 dictAppendWord(dp, ".(", dotParen, FW_IMMEDIATE); in ficlCompileCore()
5016 dictAppendWord(dp, "c\"", cstringQuoteIm, FW_IMMEDIATE); in ficlCompileCore()
5025 dictAppendWord(dp, "to", toValue, FW_IMMEDIATE); in ficlCompileCore()
5027 dictAppendWord(dp, "\\", commentLine, FW_IMMEDIATE); in ficlCompileCore()
5051 dictAppendWord(dp, "2constant", twoConstant, FW_IMMEDIATE); in ficlCompileCore()
5052 dictAppendWord(dp, "2literal", twoLiteralIm, FW_IMMEDIATE); in ficlCompileCore()
5053 dictAppendWord(dp, "2variable", twoVariable, FW_IMMEDIATE); in ficlCompileCore()
H A Dficl.h548 #define FW_IMMEDIATE 1 /* execute me even if compiling */ macro
553 #define FW_COMPIMMED (FW_IMMEDIATE | FW_COMPILE)
H A Dvm.c588 return ((pFW != NULL) && (pFW->flags & FW_IMMEDIATE)); in wordIsImmediate()
H A Ddict.c656 pDict->smudge->flags |= FW_IMMEDIATE; in dictSetImmediate()
H A Dfloat.c1019 dictAppendWord(dp, "fliteral", fliteralIm, FW_IMMEDIATE); in ficlCompileFloat()
H A Dtools.c351 if (pFW->flags & FW_IMMEDIATE) in seeXT()