| 1444 | } // initializeKnobs |
| 1445 | |
| 1446 | void |
| 1447 | Settings::setCachingLabels() |
| 1448 | { |
| 1449 | int maxTotalRam = _maxRAMPercent->getValue(); |
| 1450 | U64 systemTotalRam = getSystemTotalRAM(); |
| 1451 | U64 maxRAM = (U64)( ( (double)maxTotalRam / 100. ) * systemTotalRam ); |
| 1452 | |
| 1453 | _maxRAMLabel->setValue( printAsRAM(maxRAM).toStdString() ); |
| 1454 | _unreachableRAMLabel->setValue( printAsRAM( (double)systemTotalRam * ( (double)_unreachableRAMPercent->getValue() / 100. ) ).toStdString() ); |
| 1455 | } |
| 1456 | |
| 1457 | void |
| 1458 | Settings::setDefaultValues() |
nothing calls this directly
no test coverage detected