Lines Matching refs:token_t
49 typedef long token_t; /* sizeof a forth token */
72 typedef token_t variable_t;
122 token_t *vocabulary;
128 token_t *init_data; /* initialised instance data */
146 token_t *data[2];
170 token_t *ip;
180 token_t *ip; /* instruction pointer */
181 token_t *wa; /* word address */
187 token_t *current; /* current voc */
189 token_t **order; /* Voc. search order */
190 token_t *lastlink; /* last forth def */
191 token_t *forth_voc_link; /* Storage location for 'forth' voc */
213 token_t *action_ptr;
259 * Note that sizeof (token_t) MUST equal sizeof (token_t *). If it doesn't,
263 #define TOKEN_ROUNDUP(x) _ALIGN((x + ((sizeof (token_t)-1))), token_t)
279 #define LINK_TO_ACF(x) (((token_t *)(x))+1)
281 #define ACF_TO_LINK(x) (((token_t *)(x))-1)
286 (token_t)(env->lastlink)
310 extern token_t value_defines[][3];