Home
last modified time | relevance | path

Searched refs:u_lforth_t (Results 1 – 2 of 2) sorted by relevance

/titanic_50/usr/src/lib/efcode/engine/
H A Dforth.c132 u_lforth_t u1, u2; in uslash_mod()
291 #define UCOMPARE(cmp, rhs) ((((u_lforth_t)TOS) cmp((u_lforth_t)(rhs))) ? \
446 u_lforth_t hi, lo; in between()
449 hi = (u_lforth_t)POP(DS); in between()
450 lo = (u_lforth_t)POP(DS); in between()
451 TOS = (((u_lforth_t)TOS >= lo) && ((u_lforth_t)TOS <= hi) ? -1 : 0); in between()
457 u_lforth_t lo, hi; in within()
460 hi = (u_lforth_t)POP(DS); in within()
461 lo = (u_lforth_t)POP(DS); in within()
462 TOS = ((((u_lforth_t)TOS >= lo) && ((u_lforth_t)TOS < hi)) ? -1 : 0); in within()
[all …]
/titanic_50/usr/src/lib/efcode/include/fcode/
H A Dengine.h57 typedef uint32_t u_lforth_t; typedef