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

/vbox/src/VBox/VMM/testcase/
H A DtstCompressionBenchmark.cpp51 /** Buffer for the compressed data (g_cbComprAlloc). */
58 static size_t g_cbComprAlloc; variable
67 AssertReturn(g_cbCompr + cbBuf <= g_cbComprAlloc, VERR_BUFFER_OVERFLOW);
365 g_cbComprAlloc = RT_MAX(g_cbPages * 2, 256 * PAGE_SIZE);
366 g_pabCompr = (uint8_t *)RTMemAlloc(g_cbComprAlloc);
410 memset(g_pabCompr, 0xaa, g_cbComprAlloc);
422 size_t cbLeft = g_cbComprAlloc;

Completed in 46 milliseconds