Home
last modified time | relevance | path

Searched refs:stackPushINT (Results 1 – 11 of 11) sorted by relevance

/NextBSD/sys/boot/ficl/
HDfileaccess.c27 stackPushINT(pVM->pStack, ior); in pushIor()
50 stackPushINT(pVM->pStack, EINVAL); in ficlFopen()
161 stackPushINT(pVM->pStack, statbuf.st_mode); in ficlFileStatus()
162 stackPushINT(pVM->pStack, 0); in ficlFileStatus()
166 stackPushINT(pVM->pStack, -1); in ficlFileStatus()
167 stackPushINT(pVM->pStack, ENOENT); in ficlFileStatus()
176 stackPushINT(pVM->pStack, ud); in ficlFilePosition()
197 stackPushINT(pVM->pStack, ud); in ficlFileSize()
285 stackPushINT(pVM->pStack, result); in ficlReadFile()
301 stackPushINT(pVM->pStack, -1); in ficlReadLine()
[all …]
HDloader.c167 stackPushINT(pVM->pStack, strlen(value)); in ficlGetenv()
170 stackPushINT(pVM->pStack, -1); in ficlGetenv()
348 stackPushINT(pVM->pStack, result); in ficlCcall()
438 stackPushINT(pVM->pStack, flag); in isdirQuestion()
459 stackPushINT(pVM->pStack, -1); in pfopen()
471 stackPushINT(pVM->pStack, fd); in pfopen()
508 stackPushINT(pVM->pStack, read(fd, buf, len)); in pfread()
510 stackPushINT(pVM->pStack, -1); in pfread()
580 stackPushINT(pVM->pStack, strlen(d->d_name)); in pfreaddir()
581 stackPushINT(pVM->pStack, FICL_TRUE); in pfreaddir()
[all …]
HDvm.c208 stackPushINT(pStack, 0);
211 stackPushINT(pStack, 1);
214 stackPushINT(pStack, 2);
217 stackPushINT(pStack, -1);
220 stackPushINT(pStack, -2);
HDmath64.c218 stackPushINT(pStack, i64.lo); in i64Push()
219 stackPushINT(pStack, i64.hi); in i64Push()
225 stackPushINT(pStack, u64.lo); in u64Push()
226 stackPushINT(pStack, u64.hi); in u64Push()
HDstack.c294 void stackPushINT(FICL_STACK *pStack, FICL_INT i) in stackPushINT() function
HDsearch.c154 stackPushINT(pVM->pStack, (wordIsImmediate(pFW) ? 1 : -1)); in searchWordlist()
HDficl.h385 void stackPushINT (FICL_STACK *pStack, FICL_INT i);
402 #define PUSHINT(i) stackPushINT(pVM->pStack,i)
HDwords.c697 stackPushINT(ficlVM->pStack, strlen(address)); in ficlStrlen()
847 stackPushINT(pVM->pStack, buffer - bufferStart); in ficlSprintf()
848 stackPushINT(pVM->pStack, append); in ficlSprintf()
1741 stackPushINT(pVM->pStack, ficlParseWord(pVM, si)); in lookup()
2574 stackPushINT(pVM->pStack, flag); in isObject()
/NextBSD/sys/boot/ficl/i386/
HDsysdep.c112 stackPushINT(pVM->pStack,c); in ficlInb()
/NextBSD/sys/boot/common/
HDinterp_forth.c149 stackPushINT(vm->pStack,result); in bf_command()
HDinterp.c42 #define RETURN(x) stackPushINT(bf_vm->pStack,!x); return(x)