Lines Matching refs:unallocated

1049   int		 unallocated;	/* number of elements unallocated on page */  member
4817 int unallocated = alloc_counts[(int) alloc_type_scope].unallocated; in allocate_scope() local
4820 if (unallocated == 0) in allocate_scope()
4822 unallocated = PAGE_SIZE / sizeof (scope_t); in allocate_scope()
4827 ptr = &cur_page->scope[--unallocated]; in allocate_scope()
4828 alloc_counts[(int) alloc_type_scope].unallocated = unallocated; in allocate_scope()
4866 int unallocated = alloc_counts[(int) alloc_type_vlinks].unallocated; in allocate_vlinks() local
4869 if (unallocated == 0) in allocate_vlinks()
4871 unallocated = PAGE_SIZE / sizeof (vlinks_t); in allocate_vlinks()
4876 ptr = &cur_page->vlinks[--unallocated]; in allocate_vlinks()
4877 alloc_counts[(int) alloc_type_vlinks].unallocated = unallocated; in allocate_vlinks()
4899 int unallocated = alloc_counts[(int) alloc_type_shash].unallocated; in allocate_shash() local
4902 if (unallocated == 0) in allocate_shash()
4904 unallocated = PAGE_SIZE / sizeof (shash_t); in allocate_shash()
4909 ptr = &cur_page->shash[--unallocated]; in allocate_shash()
4910 alloc_counts[(int) alloc_type_shash].unallocated = unallocated; in allocate_shash()
4932 int unallocated = alloc_counts[(int) alloc_type_thash].unallocated; in allocate_thash() local
4935 if (unallocated == 0) in allocate_thash()
4937 unallocated = PAGE_SIZE / sizeof (thash_t); in allocate_thash()
4942 ptr = &cur_page->thash[--unallocated]; in allocate_thash()
4943 alloc_counts[(int) alloc_type_thash].unallocated = unallocated; in allocate_thash()
4970 int unallocated = alloc_counts[(int) alloc_type_tag].unallocated; in allocate_tag() local
4973 if (unallocated == 0) in allocate_tag()
4975 unallocated = PAGE_SIZE / sizeof (tag_t); in allocate_tag()
4980 ptr = &cur_page->tag[--unallocated]; in allocate_tag()
4981 alloc_counts[(int) alloc_type_tag].unallocated = unallocated; in allocate_tag()
5019 int unallocated = alloc_counts[(int) alloc_type_forward].unallocated; in allocate_forward() local
5022 if (unallocated == 0) in allocate_forward()
5024 unallocated = PAGE_SIZE / sizeof (forward_t); in allocate_forward()
5029 ptr = &cur_page->forward[--unallocated]; in allocate_forward()
5030 alloc_counts[(int) alloc_type_forward].unallocated = unallocated; in allocate_forward()
5057 int unallocated = alloc_counts[(int) alloc_type_thead].unallocated; in allocate_thead() local
5060 if (unallocated == 0) in allocate_thead()
5062 unallocated = PAGE_SIZE / sizeof (thead_t); in allocate_thead()
5067 ptr = &cur_page->thead[--unallocated]; in allocate_thead()
5068 alloc_counts[(int) alloc_type_thead].unallocated = unallocated; in allocate_thead()
5104 int unallocated = alloc_counts[(int) alloc_type_lineno].unallocated; in allocate_lineno_list() local
5107 if (unallocated == 0) in allocate_lineno_list()
5109 unallocated = PAGE_SIZE / sizeof (lineno_list_t); in allocate_lineno_list()
5114 ptr = &cur_page->lineno[--unallocated]; in allocate_lineno_list()
5115 alloc_counts[(int) alloc_type_lineno].unallocated = unallocated; in allocate_lineno_list()