Searched refs:vm_size (Results 1 - 10 of 10) sorted by relevance

/macosx-10.10.1/libauto-186/
H A DLarge.cpp50 Large::Large(Zone *zone, usword_t vm_size, usword_t size, usword_t layout, usword_t refcount, usword_t age, const WriteBarrier &wb) argument
51 : _prev(NULL), _next(NULL), _zone(zone), _vm_size(vm_size), _size(size), _layout(layout), _refcount(refcount), _age(age),
80 usword_t vm_size = align2(header_size + allocation_size + guard_size + wb_size, page_size_log2); local
83 void *space = zone->arena_allocate_large(vm_size);
96 return new (space) Large(zone, vm_size, allocation_size, layout, refcount_is_one ? 1 : 0, initial_age, wb);
H A DLarge.h70 Large(Zone *zone, usword_t vm_size, usword_t size, usword_t layout, usword_t refcount, usword_t age, const WriteBarrier &wb);
162 inline usword_t vm_size() const { return _vm_size; } function in class:Auto::Large
H A DInUseEnumerator.cpp109 record(displace(large, sizeof(Large) + largeReader->size()), largeReader->vm_size() - (sizeof(Large) + largeReader->size()), MALLOC_ADMIN_REGION_RANGE_TYPE);
H A DZone.cpp1132 stats->size_allocated += l->vm_size();
/macosx-10.10.1/libdispatch-442.1.4/src/
H A Ddata.c90 mach_vm_size_t vm_size = size; local
92 mach_vm_deallocate(mach_task_self(), vm_addr, vm_size); local
511 mach_vm_size_t vm_size = dd->size; local
520 kr = mach_vm_allocate(mach_task_self(), &vm_addr, vm_size,
537 mos = vm_size;
548 } else if (mos < vm_size) {
559 kr = mach_vm_deallocate(mach_task_self(), vm_addr, vm_size);
H A Dallocator.c353 mach_vm_size_t vm_size = MAGAZINES_PER_HEAP * BYTES_PER_MAGAZINE; local
356 while (slowpath(kr = mach_vm_map(mach_task_self(), &vm_addr, vm_size,
H A Dvoucher.c1051 mach_vm_size_t vm_size = _voucher_activity_buffer_size * local
1054 while (slowpath(kr = mach_vm_map(mach_task_self(), &vm_addr, vm_size,
1069 .buffer_size = vm_size,
1077 kr = mach_vm_deallocate(mach_task_self(), vm_addr, vm_size);
H A Dsource.c2446 mach_vm_size_t vm_size = mach_vm_round_page( local
2448 _dispatch_mach_recv_msg_buf_size = (mach_msg_size_t)vm_size;
2452 while (slowpath(kr = mach_vm_allocate(mach_task_self(), &vm_addr, vm_size,
2462 _dispatch_mach_recv_kevent.ext[1] = vm_size;
4118 mach_vm_size_t vm_size = dmsg->dmsg_size; local
4121 vm_addr, vm_size));
/macosx-10.10.1/xnu-2782.1.97/osfmk/i386/AT386/
H A Dmodel_dep.c490 vm_offset_t vm_size, vm_addr; local
513 vm_size = (vm_offset_t)i386_ptob((uint32_t)mptr->NumberOfPages);
524 (void *) vm_size);
525 pmap_map_bd(vm_addr, phys_addr, phys_addr + round_page(vm_size),
556 vm_offset_t vm_size, vm_addr; local
579 vm_size = (vm_offset_t)i386_ptob((uint32_t)mptr->NumberOfPages);
600 vm_size = (vm_offset_t)i386_ptob((uint32_t)mptr->NumberOfPages);
608 pmap_map(vm_addr, phys_addr, phys_addr + round_page(vm_size),
/macosx-10.10.1/xnu-2782.1.97/tools/lldbmacros/
H A Dmemory.py1010 @header("{0: <20s} {1: <20s} {2: <20s} {3: >5s} {4: >5s} {5: <20s} {6: <20s}".format("vm_map", "pmap", "vm_size", "#ents", "rpage", "hint", "first_free"))
1015 vm_size = uint64_t(vmmap.size).value
1018 out_string += format_string.format(vmmap, vmmap.pmap, vm_size, vmmap.hdr.nentries, resident_pages, vmmap.hint, vmmap.first_free)

Completed in 357 milliseconds