Searched defs:sizeMB (Results 1 - 2 of 2) sorted by relevance

/external/qemu/android/qemu-launcher/
H A Demulator-qemu.cpp353 long sizeMB = strtol(opts->partition_size, &end, 0); local
357 if (sizeMB < 0 || *end != 0) {
361 if (sizeMB < minSizeMB || sizeMB > maxSizeMB) {
363 sizeMB, minSizeMB, maxSizeMB );
366 defaultPartitionSize = (uint64_t) sizeMB * ONE_MB;
565 long sizeMB = strtol(opts->cache_size, &end, 0); local
567 if (sizeMB < 0 || *end != 0) {
571 hw->disk_cachePartition_size = (uint64_t) sizeMB * ONE_MB;
/external/qemu/android/
H A Dmain.c551 long sizeMB = strtol(opts->partition_size, &end, 0); local
555 if (sizeMB < 0 || *end != 0) {
559 if (sizeMB < minSizeMB || sizeMB > maxSizeMB) {
561 sizeMB, minSizeMB, maxSizeMB );
564 defaultPartitionSize = (uint64_t) sizeMB * ONE_MB;
764 long sizeMB = strtol(opts->cache_size, &end, 0); local
766 if (sizeMB < 0 || *end != 0) {
770 hw->disk_cachePartition_size = (uint64_t) sizeMB * ONE_MB;

Completed in 102 milliseconds