Home
last modified time | relevance | path

Searched refs:sizeofIOLibPageMallocHeader (Results 1 – 1 of 1) sorted by relevance

/xnu-8020.101.4/iokit/Kernel/
H A DIOLib.cpp426 #define sizeofIOLibPageMallocHeader (sizeof(IOLibPageMallocHeader) - (TRACK_ALLOC ? 0 : sizeof(… macro
428 #define sizeofIOLibPageMallocHeader (sizeof(IOLibPageMallocHeader)) macro
462 adjustedSize = size + sizeofIOLibPageMallocHeader; in IOMallocAligned_internal()
492 address = (allocationAddress + alignMask + sizeofIOLibPageMallocHeader) in IOMallocAligned_internal()
495 hdr = (typeof(hdr))(address - sizeofIOLibPageMallocHeader); in IOMallocAligned_internal()
556 adjustedSize = size + sizeofIOLibPageMallocHeader; in IOFreeAligned_internal()
565 hdr = (typeof(hdr))(((uintptr_t)address) - sizeofIOLibPageMallocHeader); in IOFreeAligned_internal()
611 adjustedSize = (2 * size) + sizeofIOLibPageMallocHeader; in IOKernelFreePhysical()
620 hdr = (typeof(hdr))(((uintptr_t)address) - sizeofIOLibPageMallocHeader); in IOKernelFreePhysical()
665 if (os_mul_and_add_overflow(2, size, sizeofIOLibPageMallocHeader, &adjustedSize)) { in IOKernelAllocateWithPhysicalRestrict()
[all …]