HomeSort by relevance Sort by last modified time
    Searched refs:bytesPerRow (Results 1 - 15 of 15) sorted by null

  /external/skia/src/core/
SkConvertPixels.h 21 size_t bytesPerRow, int rowCount) {
22 SkASSERT(bytesPerRow <= dstRB);
23 SkASSERT(bytesPerRow <= srcRB);
24 if (bytesPerRow == dstRB && bytesPerRow == srcRB) {
25 memcpy(dst, src, bytesPerRow * rowCount);
30 memcpy(dst, src, bytesPerRow);
  /external/libvncserver/libvncclient/
cursor.c 49 size_t bytesPerRow, bytesMaskData;
57 bytesPerRow = (width + 7) / 8;
58 bytesMaskData = bytesPerRow * height;
104 *ptr = buf[y * bytesPerRow + x] >> b & 1;
109 *ptr = buf[y * bytesPerRow + x] >> b & 1;
162 *ptr++ = buf[y * bytesPerRow + x] >> b & 1;
166 *ptr++ = buf[y * bytesPerRow + x] >> b & 1;
  /frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
PortableFloatMap.java 55 final int bytesPerRow = mBytesPerPixel * mWidth;
57 mData = ByteBuffer.allocate(bytesPerRow * mHeight);
70 while (offset < bytesPerRow) {
71 nRead = in.read(row, offset, bytesPerRow - offset);
  /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/webrtc/webrtc/modules/video_capture/mac/qtkit/
video_capture_qtkit_objc.mm 240 size_t bytesPerRow = CVPixelBufferGetBytesPerRow(videoFrame);
242 size_t frameSize = bytesPerRow * frameHeight;
  /external/dng_sdk/source/
dng_read_image.cpp 1064 uint32 bytesPerRow = fTileArea.W () * fPlanes * (uint32) sizeof (uint16);
1067 fBlock.LogicalSize () / bytesPerRow,
1079 fBufferSize = bytesPerRow * stripLength;
    [all...]
dng_ifd.cpp     [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/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...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 
  /prebuilts/tools/darwin-x86_64/swt/
swt.jar 

Completed in 713 milliseconds