Searched refs:max_mem (Results 1 - 14 of 14) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/osfmk/chud/
H A Dchud_memory.c40 return max_mem;
/macosx-10.5.8/xnu-1228.15.4/osfmk/ppc/
H A Dppc_vm_init.c78 * This is left only for compatibility and max_mem should be used.
85 uint64_t max_mem; /* Size of physical memory (bytes), adjusted by maxmem */ variable
163 max_mem = 0; /* Will use to total memory found so far */
179 max_mem += cbsize; /* Total up what we have so far */
195 mem_size = (unsigned int)max_mem; /* Get size of memory */
196 if(max_mem > 0x0000000080000000ULL) mem_size = 0x80000000; /* Pin at 2 GB */
198 sane_size = max_mem; /* Calculate a sane value to use for init */
242 pmap_bootstrap(max_mem, &first_avail, kmapsize);
365 kprintf("max_mem: %ld M\n", (unsigned long)(max_mem >> 2
[all...]
/macosx-10.5.8/xnu-1228.15.4/osfmk/mach/
H A Dhost_info.h130 uint64_t max_mem; /* actual size of physical memory */ member in struct:host_basic_info
H A Dvm_param.h215 extern uint64_t max_mem; /* 64-bit size of memory - limited by maxmem */
H A Dmachine.h97 uint64_t max_mem; /* actual size of physical memory */ member in struct:machine_info
/macosx-10.5.8/xnu-1228.15.4/osfmk/kern/
H A Dstartup.c187 machine_info.max_mem = max_mem;
H A Dhost.c179 basic_info->max_mem = machine_info.max_mem;
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/ppc/
H A Dmem.c168 if(((vll >> 31) == 1) || vll >= ((dgWork.dgFlags & enaDiagDM) ? mem_actual : max_mem))
/macosx-10.5.8/xnu-1228.15.4/osfmk/vm/
H A Dvm_kern.c872 * the machine-dependent init code includes in max_mem.
874 vm_page_wire_count = (atop_64(max_mem) - (vm_page_free_count
881 * pages that are potentially usable by a user app (max_mem) minus
888 if (max_mem > 2000)
889 vm_global_user_wire_limit = max_mem - 1000;
891 vm_global_user_wire_limit = max_mem * 100 / 80;
H A Dvm_resident.c566 vm_page_wire_count = atop_64(max_mem) - vm_page_free_count; /* initial value */
1776 atop_64(max_mem);
1890 atop_64(max_mem);
2272 atop_64(max_mem);
2327 atop_64(max_mem);
2418 atop_64(max_mem);
3482 atop_64(max_mem);
H A Dvm_pageout.c1364 atop_64(max_mem);
/macosx-10.5.8/xnu-1228.15.4/osfmk/i386/
H A Di386_vm_init.c88 uint64_t max_mem; /* Size of physical memory (bytes), adjusted by maxmem */ variable
453 max_mem = sane_size;
H A Dcpu_topology.c254 return machine_info.max_mem;
/macosx-10.5.8/xnu-1228.15.4/bsd/kern/
H A Dkern_mib.c362 SYSCTL_QUAD (_hw, HW_MEMSIZE, memsize, CTLFLAG_RD | CTLFLAG_KERN, &max_mem, "");
578 cachesize[0] = max_mem;

Completed in 75 milliseconds