Searched refs:maxPhys (Results 1 - 3 of 3) sorted by relevance

/macosx-10.10.1/xnu-2782.1.97/iokit/Kernel/
H A DIODMACommand.cpp325 addr64_t maxPhys, address; local
332 maxPhys = (1ULL << target->fNumAddressBits);
334 maxPhys = 0;
335 maxPhys--;
354 if ((address + length - 1) <= maxPhys)
358 else if (address <= maxPhys)
361 length = (address + length - maxPhys - 1);
362 address = maxPhys + 1;
1024 addr64_t maxPhys; local
1027 maxPhys
[all...]
H A DIOLib.cpp375 IOKernelAllocateWithPhysicalRestrict(mach_vm_size_t size, mach_vm_address_t maxPhys, argument
395 if (contiguous || maxPhys)
406 if (maxPhys <= 0xFFFFFFFF)
408 maxPhys = 0;
411 else if (gIOLastPage && (atop_64(maxPhys) > gIOLastPage))
413 maxPhys = 0;
416 if (contiguous || maxPhys)
419 alignMask, atop(maxPhys), atop(alignMask), 0);
487 address = IOKernelAllocateWithPhysicalRestrict(size, 0 /*maxPhys*/, alignment, true);
H A DIOKitKernelInternal.h81 IOKernelAllocateWithPhysicalRestrict(mach_vm_size_t size, mach_vm_address_t maxPhys,

Completed in 118 milliseconds