Lines Matching refs:allocationAddress
517 vm_offset_t allocationAddress; variable
559 kr = kmem_alloc(kernel_map, &allocationAddress,
562 allocationAddress = 0;
565 allocationAddress = (vm_address_t) kheap_alloc(kheap,
569 if (allocationAddress) {
570 address = (allocationAddress + alignMask + sizeofIOLibPageMallocHeader)
574 IOMallocAlignedSetHdr(hdr, alignMask, allocationAddress, address);
603 vm_address_t allocationAddress; in IOFreeAligned_internal() local
623 allocationAddress = IOMallocAlignedGetAddress(hdr, in IOFreeAligned_internal()
637 kmem_free(kernel_map, allocationAddress, adjustedSize); in IOFreeAligned_internal()
639 kheap_free(kheap, allocationAddress, adjustedSize); in IOFreeAligned_internal()
679 vm_address_t allocationAddress; in IOKernelFreePhysical() local
699 allocationAddress = IOMallocAlignedGetAddress(hdr, address, &adjustedSize); in IOKernelFreePhysical()
705 __typed_allocators_ignore(kheap_free(kheap, allocationAddress, adjustedSize)); in IOKernelFreePhysical()
728 mach_vm_address_t allocationAddress; in IOKernelAllocateWithPhysicalRestrict() local
799 allocationAddress = (mach_vm_address_t) kheap_alloc(kheap, in IOKernelAllocateWithPhysicalRestrict() local
804 if (allocationAddress) { in IOKernelAllocateWithPhysicalRestrict()
805 address = (allocationAddress + alignMask + sizeofIOLibPageMallocHeader) in IOKernelAllocateWithPhysicalRestrict()
813 IOMallocAlignedSetHdr(hdr, alignMask, allocationAddress, address); in IOKernelAllocateWithPhysicalRestrict()