Lines Matching refs:scope_t
832 } scope_t; typedef
896 scope_t *f_scope; /* scope structure */
940 scope_t *cur_scope; /* current nested scopes */
987 (scope_t *)0, /* cur_scope: current scope being processed */
1034 scope_t scope [ PAGE_SIZE / sizeof (scope_t) ];
1461 static scope_t *allocate_scope (void);
1462 static void free_scope (scope_t *ptr);
1603 scope_t *pscope; in add_ecoff_symbol()
1698 if (pscope == (scope_t *) NULL) in add_ecoff_symbol()
4656 while (cur_file_ptr->cur_scope != (scope_t *) NULL in ecoff_build_debug()
4657 && cur_file_ptr->cur_scope->prev != (scope_t *) NULL) in ecoff_build_debug()
4666 if (cur_file_ptr->cur_scope != (scope_t *) NULL) in ecoff_build_debug()
4807 static scope_t *
4810 scope_t *ptr; in allocate_scope()
4811 static scope_t initial_scope; in allocate_scope()
4816 if (ptr != (scope_t *) NULL) in allocate_scope()
4825 unallocated = PAGE_SIZE / sizeof (scope_t); in allocate_scope()
4836 ptr = XNEW (scope_t); in allocate_scope()
4848 free_scope (scope_t *ptr) in free_scope()