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

/macosx-10.5.8/xnu-1228.15.4/osfmk/ppc/
H A Dppc_vm_init.c122 uint64_t cbsize, xhid0; local
170 cbsize = (uint64_t)args->PhysicalDRAM[i].size << (12 - bank_shift); /* Remember current size */
172 if (!cbsize) continue; /* Skip if the bank is empty */
174 mem_actual = mem_actual + cbsize; /* Get true memory size */
178 if (cbsize > mem_limit) cbsize = mem_limit; /* Trim to max allowed */
179 max_mem += cbsize; /* Total up what we have so far */
180 mem_limit = mem_limit - cbsize; /* Calculate amount left to do */
184 pmap_mem_regions[pmap_mem_regions_count].mrEnd = ((uint64_t)args->PhysicalDRAM[i].base >> bank_shift) + (cbsize >> 12) - 1; /* Set the end address of bank */

Completed in 19 milliseconds