Searched refs:g_cbPages (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/VMM/testcase/
H A DtstCompressionBenchmark.cpp45 static size_t g_cbPages; variable
48 /** Buffer for the decompressed data (g_cbPages). */
324 g_cbPages = g_cPages * PAGE_SIZE;
327 if (cbTotal / cIterations != g_cbPages)
336 rc = RTFileReadAllEx(pszPageFile, offPageFile, g_cbPages, RTFILE_RDALL_O_DENY_NONE, (void **)&g_pabSrc, &cbFile);
338 return Error("Error reading %zu bytes from %s at %llu: %Rrc\n", g_cbPages, pszPageFile, offPageFile, rc);
339 if (cbFile != g_cbPages)
340 return Error("Error reading %zu bytes from %s at %llu: got %zu bytes\n", g_cbPages, pszPageFile, offPageFile, cbFile);
344 g_pabSrc = (uint8_t *)RTMemAlloc(g_cbPages);
354 uint8_t *pbEnd = &g_pabSrc[g_cbPages];
[all...]

Completed in 42 milliseconds