Lines Matching defs:cbSub
653 unsigned fProt, size_t offSub, size_t cbSub)
655 // AssertMsgReturn(!offSub && !cbSub, ("%#x %#x\n", offSub, cbSub), VERR_NOT_SUPPORTED);
679 if (cbSub == 0)
680 cbSub = pMemToMap->cb - offSub;
687 cbSub, /* Size of the mapping */
698 rc = vm_map_wire(kernel_map, Addr, Addr + cbSub, VM_MAP_WIRE_SYSTEM|VM_MAP_WIRE_NOHOLES);
704 cbSub);
712 rc = vm_map_remove(kernel_map, Addr, Addr + cbSub);
809 DECLHIDDEN(int) rtR0MemObjNativeProtect(PRTR0MEMOBJINTERNAL pMem, size_t offSub, size_t cbSub, uint32_t fProt)
813 vm_offset_t AddrEnd = AddrStart + cbSub;