Lines Matching defs:address
247 ms_paddr_t address;
463 ms_paddr_t address, addr;
484 address = memscrub_memlist->ml_address;
625 * determine physical address range
627 reached_end = memscrub_verify_span(&address,
631 address);
633 address += ((uint64_t)pages * PAGESIZE);
652 * condition address and size
655 * when appropriate, address will be rounded up to start of next
665 ms_paddr_t address = *addrp;
674 * assumes memlist is sorted by ascending address.
680 if (address < mlp->ml_address) {
681 address = mlp->ml_address;
687 if (address < (mlp->ml_address + mlp->ml_size))
697 address = mlp->ml_address;
701 * now we have legal address, and its mlp, condition bytes
703 bytes_remaining = (mlp->ml_address + mlp->ml_size) - address;
712 ((mlp->ml_address + mlp->ml_size) == (address + bytes)))
716 *addrp = address;
730 ms_paddr_t address = (ms_paddr_t)pfn << PAGESHIFT;
741 cmn_err(CE_CONT, "memscrub_add_span: address: 0x%llx"
742 " size: 0x%llx\n", address, bytes);
765 ms_paddr_t address = (ms_paddr_t)pfn << PAGESHIFT;
783 dst->ml_address = address;
803 if (address > (next->ml_address + next->ml_size))
813 if ((address + bytes) == next->ml_address) {
816 next->ml_address = address;
825 if (address == (next->ml_address + next->ml_size)) {
832 if ((address + bytes) >
840 if ((address + bytes) ==
867 if ((address + bytes) > next->ml_address) {
909 ms_paddr_t address = (ms_paddr_t)pfn << PAGESHIFT;
920 address, bytes);
927 if ((address >= next->ml_address) &&
928 (address < next->ml_address + next->ml_size))
933 * if start address not in list
943 if (address + bytes > next->ml_address + next->ml_size) {
951 if (address == next->ml_address) {
966 * increment start address by bytes
977 if (address + bytes == next->ml_address + next->ml_size) {
1001 * existing struct memlist gets address
1004 dst->ml_address = address + bytes;
1007 next->ml_size = address - next->ml_address;
1010 * new struct memlist gets address starting
1242 * pa: physical address of span with CE/UE, add to global list.
1260 new_span->address = pa;
1267 * pa: physical address of span to be removed from global list.
1277 if (pa == prev_span->address) {
1284 if (pa == next_span->address) {
1297 * pa: physical address of span to be searched in global list.
1305 if (pa == next_span->address)
1328 if (page_numtopp_nolock(mmu_btop(cur->address)) == NULL) {