Home
last modified time | relevance | path

Searched refs:fNewline (Results 1 – 14 of 14) sorted by relevance

/freebsd/stand/ficl/amd64/
H A Dsysdep.c54 void ficlTextOut(FICL_VM *pVM, char *msg, int fNewline) in ficlTextOut() argument
60 if (fNewline) in ficlTextOut()
H A Dsysdep.h387 void ficlTextOut(struct vm *pVM, char *msg, int fNewline);
/freebsd/stand/ficl/arm/
H A Dsysdep.c52 void ficlTextOut(FICL_VM *pVM, char *msg, int fNewline) in ficlTextOut() argument
58 if (fNewline) in ficlTextOut()
H A Dsysdep.h386 void ficlTextOut(struct vm *pVM, char *msg, int fNewline);
/freebsd/stand/ficl/i386/
H A Dsysdep.c54 void ficlTextOut(FICL_VM *pVM, char *msg, int fNewline) in ficlTextOut() argument
60 if (fNewline) in ficlTextOut()
H A Dsysdep.h385 void ficlTextOut(struct vm *pVM, char *msg, int fNewline);
/freebsd/stand/ficl/powerpc/
H A Dsysdep.c52 void ficlTextOut(FICL_VM *pVM, char *msg, int fNewline) in ficlTextOut() argument
58 if (fNewline) in ficlTextOut()
H A Dsysdep.h389 void ficlTextOut(struct vm *pVM, char *msg, int fNewline);
/freebsd/stand/ficl/aarch64/
H A Dsysdep.c52 void ficlTextOut(FICL_VM *pVM, char *msg, int fNewline) in ficlTextOut() argument
58 if (fNewline) in ficlTextOut()
H A Dsysdep.h375 void ficlTextOut(struct vm *pVM, char *msg, int fNewline);
/freebsd/stand/ficl/riscv/
H A Dsysdep.c52 void ficlTextOut(FICL_VM *pVM, char *msg, int fNewline) in ficlTextOut() argument
58 if (fNewline) in ficlTextOut()
H A Dsysdep.h375 void ficlTextOut(struct vm *pVM, char *msg, int fNewline);
/freebsd/stand/ficl/
H A Dficl.h443 typedef void (*OUTFUNC)(FICL_VM *pVM, char *text, int fNewline);
589 void vmTextOut (FICL_VM *pVM, char *text, int fNewline);
590 void vmTextOut (FICL_VM *pVM, char *text, int fNewline);
H A Dvm.c550 void vmTextOut(FICL_VM *pVM, char *text, int fNewline) in vmTextOut() argument
554 (pVM->textOut)(pVM, text, fNewline); in vmTextOut()