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

/external/qemu/distrib/sdl-1.2.15/src/video/riscos/
H A DSDL_riscossprite.c51 int bytesPerRow; local
67 bytesPerRow = bytesPerPixel * width;
69 if ((bytesPerRow & 3) != 0)
71 bytesPerRow += 4 - (bytesPerRow & 3);
73 size = bytesPerRow * height;
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dimage.c281 GLint bytesPerRow, remainder; local
287 bytesPerRow = (width + 7) / 8;
290 bytesPerRow = (packing->RowLength + 7) / 8;
299 bytesPerRow = bytesPerPixel * width;
302 bytesPerRow = bytesPerPixel * packing->RowLength;
306 remainder = bytesPerRow % packing->Alignment;
308 bytesPerRow += (packing->Alignment - remainder);
313 bytesPerRow = -bytesPerRow;
316 return bytesPerRow;
329 GLint bytesPerRow, bytesPerImage, remainder; local
[all...]
H A Dtexgetimage.c487 const GLuint bytesPerRow = texImage->Width * bpp; local
502 if (bytesPerRow == dstRowStride && bytesPerRow == srcRowStride) {
503 memcpy(dst, src, bytesPerRow * texImage->Height);
508 memcpy(dst, src, bytesPerRow);
H A Dtexstore.c942 const GLint bytesPerRow = srcWidth * texelBytes; local
945 dstRowStride == bytesPerRow) {
950 memcpy(dstImage, srcImage, bytesPerRow * srcHeight);
961 memcpy(dstRow, srcRow, bytesPerRow);
3062 GLint bytesPerRow; local
3066 bytesPerRow = srcWidth * components * sizeof(GLfloat);
3070 memcpy(dstRow, srcRow, bytesPerRow);
4479 GLint bytesPerRow, dstRowStride, srcRowStride; local
4510 bytesPerRow = srcRowStride; /* bytes per row of blocks */
4515 memcpy(dstMap, src, bytesPerRow);
[all...]
H A Dpack.c5844 GLint bytesPerRow, compsPerRow; local
5854 bytesPerRow = (width + 7) >> 3;
5869 bytesPerRow = bytesPerPixel * width;
5880 = (GLubyte *) malloc(bytesPerRow * height * depth);
5951 memcpy(dst, src, bytesPerRow);
5956 flip_bytes((GLubyte *) dst, bytesPerRow);
5964 dst += bytesPerRow;
/external/mesa3d/src/mesa/main/
H A Dimage.c281 GLint bytesPerRow, remainder; local
287 bytesPerRow = (width + 7) / 8;
290 bytesPerRow = (packing->RowLength + 7) / 8;
299 bytesPerRow = bytesPerPixel * width;
302 bytesPerRow = bytesPerPixel * packing->RowLength;
306 remainder = bytesPerRow % packing->Alignment;
308 bytesPerRow += (packing->Alignment - remainder);
313 bytesPerRow = -bytesPerRow;
316 return bytesPerRow;
329 GLint bytesPerRow, bytesPerImage, remainder; local
[all...]
H A Dtexgetimage.c487 const GLuint bytesPerRow = texImage->Width * bpp; local
502 if (bytesPerRow == dstRowStride && bytesPerRow == srcRowStride) {
503 memcpy(dst, src, bytesPerRow * texImage->Height);
508 memcpy(dst, src, bytesPerRow);
H A Dtexstore.c942 const GLint bytesPerRow = srcWidth * texelBytes; local
945 dstRowStride == bytesPerRow) {
950 memcpy(dstImage, srcImage, bytesPerRow * srcHeight);
961 memcpy(dstRow, srcRow, bytesPerRow);
3062 GLint bytesPerRow; local
3066 bytesPerRow = srcWidth * components * sizeof(GLfloat);
3070 memcpy(dstRow, srcRow, bytesPerRow);
4479 GLint bytesPerRow, dstRowStride, srcRowStride; local
4510 bytesPerRow = srcRowStride; /* bytes per row of blocks */
4515 memcpy(dstMap, src, bytesPerRow);
[all...]
H A Dpack.c5844 GLint bytesPerRow, compsPerRow; local
5854 bytesPerRow = (width + 7) >> 3;
5869 bytesPerRow = bytesPerPixel * width;
5880 = (GLubyte *) malloc(bytesPerRow * height * depth);
5951 memcpy(dst, src, bytesPerRow);
5956 flip_bytes((GLubyte *) dst, bytesPerRow);
5964 dst += bytesPerRow;
/external/chromium_org/third_party/skia/src/core/
H A DSkConfig8888.cpp129 static void rect_memcpy(void* dst, size_t dstRB, const void* src, size_t srcRB, size_t bytesPerRow, argument
131 SkASSERT(bytesPerRow <= srcRB);
132 SkASSERT(bytesPerRow <= dstRB);
134 memcpy(dst, src, bytesPerRow);
/external/chromium_org/third_party/webrtc/modules/video_capture/mac/qtkit/
H A Dvideo_capture_qtkit_objc.mm239 size_t bytesPerRow = CVPixelBufferGetBytesPerRow(videoFrame);
241 int frameSize = bytesPerRow * frameHeight;
/external/skia/src/core/
H A DSkBitmapDevice.cpp158 static void rect_memcpy(void* dst, size_t dstRB, const void* src, size_t srcRB, size_t bytesPerRow, argument
160 SkASSERT(bytesPerRow <= srcRB);
161 SkASSERT(bytesPerRow <= dstRB);
163 memcpy(dst, src, bytesPerRow);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/osmesa/
H A Dosmesa.c357 GLint bytesPerRow, i; local
367 bytesPerRow = rowlength * _mesa_get_format_bytes(osmesa->srb->Base.Format);
372 osmesa->rowaddr[i] = (GLvoid *) ((GLubyte *) origin + i * bytesPerRow);
379 osmesa->rowaddr[i] = (GLvoid *) ((GLubyte *) origin + j * bytesPerRow);
/external/mesa3d/src/mesa/drivers/osmesa/
H A Dosmesa.c357 GLint bytesPerRow, i; local
367 bytesPerRow = rowlength * _mesa_get_format_bytes(osmesa->srb->Base.Format);
372 osmesa->rowaddr[i] = (GLvoid *) ((GLubyte *) origin + i * bytesPerRow);
379 osmesa->rowaddr[i] = (GLvoid *) ((GLubyte *) origin + j * bytesPerRow);
/external/qemu/distrib/sdl-1.2.15/src/video/quartz/
H A DSDL_QuartzWM.m52 imgrep = [ [ [ NSBitmapImageRep alloc ] initWithBitmapDataPlanes: NULL pixelsWide: w pixelsHigh: h bitsPerSample: 1 samplesPerPixel: 2 hasAlpha: YES isPlanar: YES colorSpaceName: NSDeviceWhiteColorSpace bytesPerRow: (w+7)/8 bitsPerPixel: 0 ] autorelease ];
425 imgrep = [ [ [ NSBitmapImageRep alloc ] initWithBitmapDataPlanes: NULL pixelsWide: icon->w pixelsHigh: icon->h bitsPerSample: 8 samplesPerPixel: 4 hasAlpha: YES isPlanar: NO colorSpaceName: NSDeviceRGBColorSpace bytesPerRow: 4*icon->w bitsPerPixel: 32 ] autorelease ];
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_cb_texture.c627 const uint bytesPerRow = width * util_format_get_blocksize(stImage->pt->format); local
633 memcpy(dest, map, bytesPerRow);
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_texture.c627 const uint bytesPerRow = width * util_format_get_blocksize(stImage->pt->format); local
633 memcpy(dest, map, bytesPerRow);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderThemeChromiumMac.mm325 bytesPerRow:4
352 bytesPerRow:4
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 2000 milliseconds