Lines Matching refs:low
324 uint64_t ssize, low, high, boundary; in opl_memlist_per_board() local
332 low = (uint64_t)ml->ml_address; in opl_memlist_per_board()
333 high = low+(uint64_t)(ml->ml_size); in opl_memlist_per_board()
334 while (low < high) { in opl_memlist_per_board()
335 boundary = roundup(low+1, ssize); in opl_memlist_per_board()
338 new->ml_address = low; in opl_memlist_per_board()
339 new->ml_size = boundary - low; in opl_memlist_per_board()
347 low = boundary; in opl_memlist_per_board()
480 uint64_t low, high; in plat_build_mem_nodes() local
493 low = list->addr; in plat_build_mem_nodes()
494 high = low + list->size; in plat_build_mem_nodes()
495 while (low < high) { in plat_build_mem_nodes()
496 boundary = roundup(low+1, ssize); in plat_build_mem_nodes()
498 basepfn = btop(low); in plat_build_mem_nodes()
499 npgs = btop(boundary - low); in plat_build_mem_nodes()
501 low = boundary; in plat_build_mem_nodes()