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

/vbox/src/VBox/ValidationKit/snippets/
H A Dalloc-1.c38 unsigned long cMBs = 1024; local
45 cMBs = strtoul(argv[1], 0, 0);
46 if (!cMBs || argc > 2)
51 cb = cMBs * 1024 * 1024;
52 if (cb / (1024 * 1024) != cMBs)
/vbox/src/VBox/Storage/testcase/
H A Dvditool.cpp95 static int NewImage(const char *pszFilename, uint64_t cMBs) argument
98 pszFilename, cMBs);
113 (uint64_t)cMBs * _1M,
411 uint64_t cMBs;
412 rc = RTStrToUInt64Ex(argv[3], NULL, 10, &cMBs);
415 if (cMBs < 2)
417 RTPrintf("error: Disk size %RU64MB must be at least 2MB!\n", cMBs);
421 rc = NewImage(argv[2], cMBs);

Completed in 75 milliseconds