Lines Matching refs:end
68 mem_node_add_slice(pfn_t start, pfn_t end)
80 end = roundup(end, btop(mem_node_physalign)) - 1;
92 if (end > mem_node_config[mnode].physmax)
93 mem_node_config[mnode].physmax = end;
96 mem_node_config[mnode].physmax = end;
118 mem_node_del_slice(pfn_t start, pfn_t end)
126 end = roundup(end, btop(mem_node_physalign)) - 1;
133 delta_pgcnt = end - start;
142 mem_node_config[mnode].physbase = end + 1;
143 ASSERT(end <= mem_node_config[mnode].physmax);
144 if (end == mem_node_config[mnode].physmax)
169 mem_node_add_range(pfn_t start, pfn_t end)
172 plat_slice_add(start, end);
174 mem_node_add_slice(start, end);
178 mem_node_del_range(pfn_t start, pfn_t end)
181 plat_slice_del(start, end);
183 mem_node_del_slice(start, end);
251 pfn_t base, end;
271 end = mem_node_config[mnode].physmax;
278 if (end < cur_base || base > cur_end)
280 npgs = npgs + (MIN(cur_end, end) -