Searched defs:cbPNG (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Main/src-all/
H A DDisplayPNGUtil.cpp30 uint32_t cbPNG; member in struct:PNGWriteCtx
42 if (pCtx->cbAllocated - pCtx->cbPNG < cb)
44 uint32_t cbNew = pCtx->cbPNG + (uint32_t)cb;
45 AssertReturnVoidStmt(cbNew > pCtx->cbPNG && cbNew <= _1G, pCtx->rc = VERR_TOO_MUCH_DATA);
59 memcpy(pCtx->pu8PNG + pCtx->cbPNG, p, cb);
60 pCtx->cbPNG += (uint32_t)cb;
150 ctx.cbPNG = 0;
186 *pcbPNG = ctx.cbPNG;
189 LogFlowFunc(("PNG %d bytes, bitmap %d bytes\n", ctx.cbPNG, cbBitmap));
/vbox/src/VBox/Main/src-client/
H A DDisplayImpl.cpp252 uint32_t cbPNG; member in struct:__anon16501
266 &pData->cbPNG, &pData->cxPNG, &pData->cyPNG, 1);
275 pData->cbPNG = 0;
294 uint32_t cbPNG = 0; local
351 cbPNG = pScreenshot->cbPNG;
384 rc = DisplayMakePNG(pu8Data, cx, cy, &pu8PNG, &cbPNG, &cxPNG, &cyPNG, 1);
392 cbPNG = 0;
436 SSMR3PutU32(pSSM, cbPNG + 2 * sizeof(uint32_t));
439 if (cbPNG)
2142 uint32_t cbPNG = 0; local
[all...]
/vbox/src/VBox/Main/src-server/
H A DMachineImpl.cpp6449 uint32_t cbPNG = 0; local
6453 vrc = DisplayMakePNG(pu8Data, u32Width, u32Height, &pu8PNG, &cbPNG, &cxPNG, &cyPNG, 0);
6457 aData.resize(cbPNG);
6458 if (cbPNG)
6459 memcpy(&aData.front(), pu8PNG, cbPNG);

Completed in 130 milliseconds