Lines Matching refs:unallocated
1049 int unallocated; /* number of elements unallocated on page */ member
4820 int unallocated = alloc_counts[(int) alloc_type_scope].unallocated; in allocate_scope() local
4823 if (unallocated == 0) in allocate_scope()
4825 unallocated = PAGE_SIZE / sizeof (scope_t); in allocate_scope()
4830 ptr = &cur_page->scope[--unallocated]; in allocate_scope()
4831 alloc_counts[(int) alloc_type_scope].unallocated = unallocated; in allocate_scope()
4870 int unallocated = alloc_counts[(int) alloc_type_vlinks].unallocated; in allocate_vlinks() local
4873 if (unallocated == 0) in allocate_vlinks()
4875 unallocated = PAGE_SIZE / sizeof (vlinks_t); in allocate_vlinks()
4880 ptr = &cur_page->vlinks[--unallocated]; in allocate_vlinks()
4881 alloc_counts[(int) alloc_type_vlinks].unallocated = unallocated; in allocate_vlinks()
4904 int unallocated = alloc_counts[(int) alloc_type_shash].unallocated; in allocate_shash() local
4907 if (unallocated == 0) in allocate_shash()
4909 unallocated = PAGE_SIZE / sizeof (shash_t); in allocate_shash()
4914 ptr = &cur_page->shash[--unallocated]; in allocate_shash()
4915 alloc_counts[(int) alloc_type_shash].unallocated = unallocated; in allocate_shash()
4938 int unallocated = alloc_counts[(int) alloc_type_thash].unallocated; in allocate_thash() local
4941 if (unallocated == 0) in allocate_thash()
4943 unallocated = PAGE_SIZE / sizeof (thash_t); in allocate_thash()
4948 ptr = &cur_page->thash[--unallocated]; in allocate_thash()
4949 alloc_counts[(int) alloc_type_thash].unallocated = unallocated; in allocate_thash()
4977 int unallocated = alloc_counts[(int) alloc_type_tag].unallocated; in allocate_tag() local
4980 if (unallocated == 0) in allocate_tag()
4982 unallocated = PAGE_SIZE / sizeof (tag_t); in allocate_tag()
4987 ptr = &cur_page->tag[--unallocated]; in allocate_tag()
4988 alloc_counts[(int) alloc_type_tag].unallocated = unallocated; in allocate_tag()
5027 int unallocated = alloc_counts[(int) alloc_type_forward].unallocated; in allocate_forward() local
5030 if (unallocated == 0) in allocate_forward()
5032 unallocated = PAGE_SIZE / sizeof (forward_t); in allocate_forward()
5037 ptr = &cur_page->forward[--unallocated]; in allocate_forward()
5038 alloc_counts[(int) alloc_type_forward].unallocated = unallocated; in allocate_forward()
5066 int unallocated = alloc_counts[(int) alloc_type_thead].unallocated; in allocate_thead() local
5069 if (unallocated == 0) in allocate_thead()
5071 unallocated = PAGE_SIZE / sizeof (thead_t); in allocate_thead()
5076 ptr = &cur_page->thead[--unallocated]; in allocate_thead()
5077 alloc_counts[(int) alloc_type_thead].unallocated = unallocated; in allocate_thead()
5114 int unallocated = alloc_counts[(int) alloc_type_lineno].unallocated; in allocate_lineno_list() local
5117 if (unallocated == 0) in allocate_lineno_list()
5119 unallocated = PAGE_SIZE / sizeof (lineno_list_t); in allocate_lineno_list()
5124 ptr = &cur_page->lineno[--unallocated]; in allocate_lineno_list()
5125 alloc_counts[(int) alloc_type_lineno].unallocated = unallocated; in allocate_lineno_list()