summaryrefslogtreecommitdiffstats
path: root/build/phone-xxxhdpi-3072-dalvik-heap.mk
Commit message (Collapse)AuthorAgeFilesLines
* Fix xxxhdpi 3072 heap sizesAbhisek Devkota2016-08-171-2/+2
| | | | | | | | Bootloops on shamu with current values Fix for 94774ac01d1953bcc7a70a7018267ee34793d3f7 Change-Id: Iade253bd8bc5074486d2d69bb9c738844615b08d
* dalvik: rework 3 and 4-GB dalvik heap configurationsAlex Naidis2016-08-151-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The previous configuration sets target utilization as .25, which is geared towards low memory devices. This path increases it to .75 and makes us pass the check: (heaptargetutilization / 2) * heapsize = heapgrowthlimit Example: heapgrowthlimit: 256m heapsize: 512m heaptargetutilization: 0.75 0.75/2 * 512 = 192 To pass the check this has to be true: 192 = 256 (WRONG) Check not passed. This new configuration is optimized for higher RAM devices and passes the check: heapgrowthlimit: 384m heapsize: 1024m heaptargetutilization: 0.75 0.75/2 * 1024 = 384 384 = 384 (TRUE) Check passed. Change-Id: I6839339382229da80546761c3746a032081ff2cd Signed-off-by: Alex Naidis <alex.naidis@linux.com>
* Add dalvik heap override for xxxhdpi phonebmc08gt2015-10-121-0/+25
Change-Id: Ib2649f55327775bbd4d94012952b4301536391ed Signed-off-by: bmc08gt <brandon.mcansh@gmail.com>