Lines Matching defs:cbRam
152 uint64_t cbRam;
557 u32 = pThis->cbRam > 640 ? 640 : (uint32_t)pThis->cbRam / _1K; /* <-- this test is wrong, but it doesn't matter since we never assign less than 1MB */
562 u32 = pThis->cbRam >= 65 * _1M ? 0xffff : ((uint32_t)pThis->cbRam - _1M) / _1K;
574 if (pThis->cbRam > 16 * _1M)
575 u32 = (uint32_t)( (RT_MIN(RT_MIN(pThis->cbRam, offRamHole), UINT32_C(0xffe00000)) - 16U * _1M) / _64K );
585 if (pThis->cbRam <= offRamHole)
589 c64KBAbove4GB = (pThis->cbRam - offRamHole) / _64K;
1084 rc = CFGMR3QueryU64(pCfg, "RamSize", &pThis->cbRam);