Searched refs:pmap_steal_memory (Results 1 - 5 of 5) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/osfmk/vm/
H A Dpmap.h129 extern void *pmap_steal_memory(vm_size_t size);
163 * and vm/vm_resident.c implements pmap_steal_memory and pmap_startup
H A Dvm_resident.c111 * for debugging purposes. The implementation of pmap_steal_memory
531 pmap_steal_memory(vm_page_bucket_count *
577 * We implement pmap_steal_memory and pmap_startup with the help
582 pmap_steal_memory( function
595 * If this is the first call to pmap_steal_memory,
618 kprintf("pmap_steal_memory: %08X - %08X; size=%08X\n", addr, virtual_space_start, size); /* (TEST/DEBUG) */
628 panic("pmap_steal_memory");
668 vm_pages = (vm_page_t) pmap_steal_memory(npages * sizeof *vm_pages);
791 * because pmap_steal_memory has been using it.
H A Dvm_map.c560 map_data = pmap_steal_memory(map_data_size);
576 kentry_data = pmap_steal_memory(kentry_data_size);
/macosx-10.5.8/xnu-1228.15.4/osfmk/ddb/
H A Ddb_aout.c173 dbsym_start = (struct nlist *)pmap_steal_memory(((unsigned int)sym_end - (unsigned int)sym_start + 4096) & -4096); /* Get space for symbols */
174 dbstrtab = (char *)pmap_steal_memory(((unsigned int)estrtab - (unsigned int)strtab + 4096) & -4096); /* Get space for strings */
/macosx-10.5.8/xnu-1228.15.4/osfmk/kern/
H A Dzalloc.c721 zdata = (vm_offset_t)((char *)pmap_steal_memory(zdata_size) - (char *)0);

Completed in 96 milliseconds