Lines Matching refs:mlp
881 struct memlist *mlp; in span_to_install() local
889 for (mlp = phys_install; mlp != NULL; mlp = mlp->ml_next) { in span_to_install()
890 if (address >= (mlp->ml_address + mlp->ml_size)) in span_to_install()
892 if ((address + size) > mlp->ml_address) in span_to_install()
895 if (mlp == NULL) { in span_to_install()
900 if (address < mlp->ml_address) { in span_to_install()
901 size -= (mlp->ml_address - address); in span_to_install()
902 address = mlp->ml_address; in span_to_install()
904 ASSERT(address >= mlp->ml_address); in span_to_install()
906 (mlp->ml_address + mlp->ml_size)) { in span_to_install()
908 mlp->ml_size - (address - mlp->ml_address); in span_to_install()