Lines Matching defs:value
245 /* Each tre_stack_push_*(tre_stack_t *s, <type> value) function pushes
246 `value' on top of stack `s'. Returns REG_ESPACE if out of memory.
250 static reg_errcode_t tre_stack_push_ ## typetag(tre_stack_t *s, type value)
265 #define STACK_PUSH(s, typetag, value) \
268 status = tre_stack_push_ ## typetag(s, value); \
272 #define STACK_PUSHX(s, typetag, value) \
274 status = tre_stack_push_ ## typetag(s, value); \
279 #define STACK_PUSHR(s, typetag, value) \
282 _status = tre_stack_push_ ## typetag(s, value); \
337 tre_stack_push(tre_stack_t *s, union tre_stack_item value)
341 s->stack[s->ptr] = value;
365 tre_stack_push(s, value);
374 item.typetag ## _value = value; \