Searched defs:cbLine (Results 1 - 13 of 13) sorted by relevance

/vbox/src/VBox/Main/webservice/
H A Dsplit-soapC.cpp125 size_t cbLine; local
129 cbLine = pNextLine - pLine;
132 cbLine = strlen(pLine);
133 if (fwrite(pLine, 1, cbLine, pFileOut) != cbLine)
139 cbWritten += cbLine;
152 for (const char *p = pLine; p < pLine + cbLine; p++)
/vbox/src/bldprogs/
H A Dbin2c.c80 size_t cbLine = 16; local
119 cbLine = strtoul(argv[iArg], NULL, 0);
120 if (cbLine == 0 || cbLine > sizeof(abLine))
189 while ((cbRead = fread(&abLine[0], 1, cbLine, pFileIn)) > 0)
195 && (off / cbLine) % iBreakEvery == 0)
201 for (; j < cbLine; j++)
210 for (; j < cbLine; j++)
/vbox/src/VBox/Additions/x11/vboxvideo/
H A Dsetmode.c101 cbOldFB = pVBox->cbLine * pScrn->virtualX;
159 offStart = y * pVBox->cbLine + x * vboxBPP(pScrn) / 8;
163 if ( offStart + pVBox->cbLine * cHeight > pVBox->cbFBMax
164 || pVBox->cbLine * pScrn->virtualY > pVBox->cbFBMax)
184 offStart, pVBox->cbLine, cwReal, cHeight,
204 uint64_t cbLine = vboxLineLength(pScrn, width); local
205 int displayWidth = vboxDisplayPitch(pScrn, cbLine);
218 if (cbLine > UINT32_MAX || cbLine * height >= pVBox->cbFBMax)
226 pScrn->depth, vboxBPP(pScrn), cbLine,
[all...]
H A Dvboxvideo.h195 uint32_t cbLine; member in struct:VBOXRec
322 uint32_t cbLine = (cDisplayWidth * vboxBPP(pScrn) / 8 + 3) & ~3; local
323 return cbLine < INT32_MAX ? cbLine : INT32_MAX;
327 static inline int32_t vboxDisplayPitch(ScrnInfoPtr pScrn, int32_t cbLine) argument
329 return cbLine * 8 / vboxBPP(pScrn);
H A Dvboxvideo.c276 int cbLine = adjustedWidth * pScrn->bitsPerPixel / 8; local
286 TRACE_LOG("pPixmap=%p adjustedWidth=%d height=%d pScrn->depth=%d pScrn->bitsPerPixel=%d cbLine=%d pVBox->base=%p pPixmap->drawable.width=%d pPixmap->drawable.height=%d\n",
287 pPixmap, adjustedWidth, height, pScrn->depth, pScrn->bitsPerPixel, cbLine, pVBox->base, pPixmap->drawable.width,
293 || (unsigned)cbLine * (unsigned)height >= pVBox->cbFBMax)
302 pScreen->ModifyPixmapHeader(pPixmap, adjustedWidth, height, pScrn->depth, pScrn->bitsPerPixel, cbLine, pVBox->base);
957 pVBox->cbLine = vboxLineLength(pScrn, pScrn->virtualX);
958 pScrn->displayWidth = vboxDisplayPitch(pScrn, pVBox->cbLine);
/vbox/src/VBox/Additions/WINNT/Graphics/Video/disp/xpdm/
H A DVBoxDispVrdpBmp.cpp41 static uint64_t surfHash (const SURFOBJ *pso, uint32_t cbLine) argument
50 u64CRC = RTCrc64Process (u64CRC, pu8, cbLine);
63 uint32_t cbLine; local
76 cbLine = pso->sizlBitmap.cx * bytesPerPixel;
77 phash->hash64 = surfHash (pso, cbLine);
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dbmpscale.cpp63 DECLINLINE(void) gdImageSetPixel (gdImagePtr im, int x, int y, int color, int cbLine) argument
65 *(int32_t *)(im + y * cbLine + x * 4) = color;
/vbox/src/VBox/Frontends/VBoxAutostart/
H A DVBoxAutostartCfg.cpp101 size_t cbLine; member in struct:CFGTOKENIZER
147 pCfgTokenizer->cbLine);
152 pCfgTokenizer->cbLine += 128;
153 pszTmp = (char *)RTMemRealloc(pCfgTokenizer->pszLine, pCfgTokenizer->cbLine);
341 pCfgTokenizer->cbLine = 128;
342 pCfgTokenizer->pszLine = (char *)RTMemAllocZ(pCfgTokenizer->cbLine);
/vbox/src/VBox/Main/include/
H A DDisplayImpl.h60 uint32_t cbLine; member in struct:_DISPLAYFBINFO::__anon16481
151 int i_handleDisplayResize(unsigned uScreenId, uint32_t bpp, void *pvVRAM, uint32_t cbLine,
300 uint32_t cbLine, uint32_t cx, uint32_t cy);
/vbox/src/VBox/Additions/linux/drm/
H A Dvbox_mode.c643 size_t cbLine = (width + 7) / 8; local
649 dst[i * cbLine + j / 8] |= (0x80 >> (j % 8));
/vbox/src/VBox/Main/src-client/
H A DDisplayImpl.cpp626 maFramebuffers[ul].updateImage.cbLine = 0;
696 maFramebuffers[uScreenId].updateImage.cbLine = 0;
873 uint32_t cbLine, uint32_t w, uint32_t h, uint16_t flags)
876 "w=%d h=%d bpp=%d cbLine=0x%X, flags=0x%X\n",
877 uScreenId, pvVRAM, w, h, bpp, cbLine, flags));
889 pFBInfo->updateImage.cbLine = 0;
898 pFBInfo->u32LineSize = cbLine;
947 pFBInfo->updateImage.cbLine = ulBytesPerLine;
1046 const uint8_t *pu8Src = pFBInfo->updateImage.pu8Address + pFBInfo->updateImage.cbLine * y + x * 4;
1053 pu8Src += pFBInfo->updateImage.cbLine;
872 i_handleDisplayResize(unsigned uScreenId, uint32_t bpp, void *pvVRAM, uint32_t cbLine, uint32_t w, uint32_t h, uint16_t flags) argument
[all...]
/vbox/include/VBox/RemoteDesktop/
H A DVRDE.h1182 unsigned cbLine; member in struct:_VRDEFRAMEBUFFERINFO
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA.cpp1780 /* For text modes the direct use of guest VRAM is not implemented, so bpp and cbLine are 0 here. */
4170 * @param cbLine The source line length (aka line_offset).
4178 uint32_t offStart, uint32_t cbLine,
4193 for (iRow = 0; iRow < cRows; iRow++, pbSrcOuter += cbLine)
4195 if ((uintptr_t)(pbSrcOuter + cbLine - pThis->CTX_SUFF(vram_ptr)) > pThis->vram_size) {
4266 uint32_t cbLine; local
4269 vga_get_offsets(pThis, &cbLine, &offStart, &uLineCompareIgn);
4270 if (!cbLine)
4271 cbLine = 80 * 8;
4280 uint32_t iScrBegin = offStart / cbLine;
4177 vgaInfoTextWorker(PVGASTATE pThis, PCDBGFINFOHLP pHlp, uint32_t offStart, uint32_t cbLine, uint32_t cCols, uint32_t cRows, uint32_t iScrBegin, uint32_t iScrEnd) argument
4521 vgaDummyResize(PPDMIDISPLAYCONNECTOR pInterface, uint32_t bpp, void *pvVRAM, uint32_t cbLine, uint32_t cx, uint32_t cy) argument
[all...]

Completed in 93 milliseconds