Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/gdb/gdb/
H A Dparse.c89 int type_stack_depth, type_stack_size; variable
1032 type_stack_depth = 0; in parse_exp_1()
1107 if (type_stack_depth == type_stack_size) in check_type_stack_depth()
1119 type_stack[type_stack_depth++].piece = tp; in push_type()
1126 type_stack[type_stack_depth++].int_val = n; in push_type_int()
1138 if (type_stack_depth) in pop_type()
1139 return type_stack[--type_stack_depth].piece; in pop_type()
1146 if (type_stack_depth) in pop_type_int()
1147 return type_stack[--type_stack_depth].int_val; in pop_type_int()
1293 type_stack_depth = 0; in _initialize_parse()
H A Dparser-defs.h112 extern int type_stack_depth, type_stack_size;