Lines Matching refs:scope_t
835 } scope_t; typedef
899 scope_t *f_scope; /* scope structure */
943 scope_t *cur_scope; /* current nested scopes */
990 (scope_t *)0, /* cur_scope: current scope being processed */
1037 scope_t scope [ PAGE_SIZE / sizeof (scope_t) ];
1464 static scope_t *allocate_scope (void);
1465 static void free_scope (scope_t *ptr);
1600 register scope_t *pscope; in add_ecoff_symbol()
1695 if (pscope == (scope_t *) NULL) in add_ecoff_symbol()
4679 while (cur_file_ptr->cur_scope != (scope_t *) NULL in ecoff_build_debug()
4680 && cur_file_ptr->cur_scope->prev != (scope_t *) NULL) in ecoff_build_debug()
4689 if (cur_file_ptr->cur_scope != (scope_t *) NULL) in ecoff_build_debug()
4830 static scope_t *
4833 register scope_t *ptr; in allocate_scope()
4834 static scope_t initial_scope; in allocate_scope()
4839 if (ptr != (scope_t *) NULL) in allocate_scope()
4848 unallocated = PAGE_SIZE / sizeof (scope_t); in allocate_scope()
4859 ptr = (scope_t *) xmalloc (sizeof (scope_t)); in allocate_scope()
4871 free_scope (scope_t *ptr) in free_scope()