/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
image.c | 281 GLint bytesPerRow, remainder; 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; [all...] |
texgetimage.c | 487 const GLuint bytesPerRow = texImage->Width * bpp; 502 if (bytesPerRow == dstRowStride && bytesPerRow == srcRowStride) { 503 memcpy(dst, src, bytesPerRow * texImage->Height); 508 memcpy(dst, src, bytesPerRow);
|
texstore.c | 942 const GLint bytesPerRow = srcWidth * texelBytes; 945 dstRowStride == bytesPerRow) { 950 memcpy(dstImage, srcImage, bytesPerRow * srcHeight); 961 memcpy(dstRow, srcRow, bytesPerRow); [all...] |
pack.c | [all...] |
/external/mesa3d/src/mesa/main/ |
image.c | 281 GLint bytesPerRow, remainder; 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; [all...] |
texgetimage.c | 487 const GLuint bytesPerRow = texImage->Width * bpp; 502 if (bytesPerRow == dstRowStride && bytesPerRow == srcRowStride) { 503 memcpy(dst, src, bytesPerRow * texImage->Height); 508 memcpy(dst, src, bytesPerRow);
|
texstore.c | 942 const GLint bytesPerRow = srcWidth * texelBytes; 945 dstRowStride == bytesPerRow) { 950 memcpy(dstImage, srcImage, bytesPerRow * srcHeight); 961 memcpy(dstRow, srcRow, bytesPerRow); [all...] |
pack.c | [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/riscos/ |
SDL_riscossprite.c | 51 int bytesPerRow; 67 bytesPerRow = bytesPerPixel * width; 69 if ((bytesPerRow & 3) != 0) 71 bytesPerRow += 4 - (bytesPerRow & 3); 73 size = bytesPerRow * height;
|
/external/chromium_org/ui/gfx/image/ |
image_unittest_util_ios.mm | 28 /*bytesPerRow=*/ 4,
|
image_mac_unittest.mm | 67 bytesPerRow:0
|
/external/chromium_org/media/video/capture/mac/ |
video_capture_device_qtkit_mac.mm | 245 size_t bytesPerRow = CVPixelBufferGetBytesPerRow(videoFrame); 248 size_t frameSize = bytesPerRow * frameHeight; 250 // TODO(shess): bytesPerRow may not correspond to frameWidth_*2, 260 if (bytesPerRow > expectedBytesPerRow) { 271 addressToPass + y * bytesPerRow,
|
video_capture_device_avfoundation_mac.mm | 220 size_t bytesPerRow = CVPixelBufferGetBytesPerRow(videoFrame); 223 size_t frameSize = bytesPerRow * frameHeight;
|
/external/clang/test/Analysis/Inputs/ |
system-header-simulator.h | 68 size_t bitsPerComponent, size_t bytesPerRow,
|
/external/jpeg/ |
jmemmgr.c | 693 long bytesperrow, file_offset, byte_count, rows, thisrow, i; local 695 bytesperrow = (long) ptr->samplesperrow * SIZEOF(JSAMPLE); 696 file_offset = ptr->cur_start_row * bytesperrow; 708 byte_count = rows * bytesperrow; 726 long bytesperrow, file_offset, byte_count, rows, thisrow, i; local 728 bytesperrow = (long) ptr->blocksperrow * SIZEOF(JBLOCK); 729 file_offset = ptr->cur_start_row * bytesperrow; 741 byte_count = rows * bytesperrow; 820 size_t bytesperrow = (size_t) ptr->samplesperrow * SIZEOF(JSAMPLE); local 824 jzero_far((void FAR *) ptr->mem_buffer[undef_row], bytesperrow); 905 size_t bytesperrow = (size_t) ptr->blocksperrow * SIZEOF(JBLOCK); local [all...] |
/external/qemu/distrib/jpeg-6b/ |
jmemmgr.c | 693 long bytesperrow, file_offset, byte_count, rows, thisrow, i; local 695 bytesperrow = (long) ptr->samplesperrow * SIZEOF(JSAMPLE); 696 file_offset = ptr->cur_start_row * bytesperrow; 708 byte_count = rows * bytesperrow; 726 long bytesperrow, file_offset, byte_count, rows, thisrow, i; local 728 bytesperrow = (long) ptr->blocksperrow * SIZEOF(JBLOCK); 729 file_offset = ptr->cur_start_row * bytesperrow; 741 byte_count = rows * bytesperrow; 820 size_t bytesperrow = (size_t) ptr->samplesperrow * SIZEOF(JSAMPLE); local 824 jzero_far((void FAR *) ptr->mem_buffer[undef_row], bytesperrow); 905 size_t bytesperrow = (size_t) ptr->blocksperrow * SIZEOF(JBLOCK); local [all...] |
/external/chromium_org/chrome/browser/ui/cocoa/autofill/ |
autofill_section_view_unittest.mm | 52 bytesPerRow: NSWidth(bounds) * 4
|
/external/qemu/distrib/sdl-1.2.15/src/video/quartz/ |
SDL_QuartzWM.m | 52 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/drivers/osmesa/ |
osmesa.c | 357 GLint bytesPerRow, i; 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); [all...] |
/external/mesa3d/src/mesa/drivers/osmesa/ |
osmesa.c | 357 GLint bytesPerRow, i; 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); [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/ |
SDL_sysyuv.cc | 223 overlay->pitches[0] = bbitmap->BytesPerRow();
|
SDL_sysvideo.cc | 562 current->pitch = bbitmap->BytesPerRow();
|
/external/chromium/base/mac/ |
mac_util.mm | 386 0, // bytesPerRow - CG will calculate by default.
|
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/ |
st_cb_texture.c | 627 const uint bytesPerRow = width * util_format_get_blocksize(stImage->pt->format); 633 memcpy(dest, map, bytesPerRow); [all...] |
/external/mesa3d/src/mesa/state_tracker/ |
st_cb_texture.c | 627 const uint bytesPerRow = width * util_format_get_blocksize(stImage->pt->format); 633 memcpy(dest, map, bytesPerRow); [all...] |