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

  /external/libvncserver/libvncserver/
draw.c 5 int rowstride = s->paddedWidthInBytes, bpp = s->bitsPerPixel>>3; local
13 memcpy(s->frameBuffer+j*rowstride+i*bpp,colour,bpp);
18 memcpy(s->frameBuffer+(y)*rowstride+(x)*bpp,colour,bpp)
22 int rowstride = s->paddedWidthInBytes, bpp = s->bitsPerPixel>>3; local
33 int rowstride = s->paddedWidthInBytes, bpp = s->bitsPerPixel>>3; local
font.c 9 int rowstride=rfbScreen->paddedWidthInBytes; local
29 memcpy(rfbScreen->frameBuffer+(y+j)*rowstride+(x+i)*bpp,colour,bpp);
56 int rowstride=rfbScreen->paddedWidthInBytes; local
89 memcpy(rfbScreen->frameBuffer+(y+j)*rowstride+(x+i)*bpp,
92 memcpy(rfbScreen->frameBuffer+(y+j)*rowstride+(x+i)*bpp,
main.c 361 rowstride=screen->paddedWidthInBytes; local
368 out = screen->frameBuffer+rect.x1*bpp+rect.y1*rowstride;
369 in = screen->frameBuffer+(rect.x1-dx)*bpp+(rect.y1-dy)*rowstride;
371 for(j=rect.y1;j<rect.y2;j++,out+=rowstride,in+=rowstride)
374 out += rowstride*(rect.y2-rect.y1-1);
375 in += rowstride*(rect.y2-rect.y1-1);
376 for(j=rect.y2-1;j>=rect.y1;j--,out-=rowstride,in-=rowstride)
cursor.c 477 rowstride=s->paddedWidthInBytes; local
504 memcpy(s->frameBuffer+(y1+j)*rowstride+x1*bpp,
519 rowstride=s->paddedWidthInBytes, local
558 const char* src=s->frameBuffer+(y1+j)*rowstride+x1*bpp;
599 dest = s->frameBuffer + (j+y1)*rowstride + (i+x1)*bpp;
664 memcpy(s->frameBuffer+(j+y1)*rowstride+(i+x1)*bpp,
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_mipmap_tree.h 46 GLuint rowstride; /** in bytes */ member in struct:_radeon_mipmap_level
98 unsigned rowStride,
radeon_mipmap_tree.c 75 unsigned rowStride,
85 return rowStride * ((height + blockHeight - 1) / blockHeight) * depth;
96 return rowStride * height * depth;
135 lvl->rowstride = get_texture_image_row_stride(rmesa, mt->mesaFormat, lvl->width, mt->tilebits, mt->target);
136 lvl->size = get_texture_image_size(mt->mesaFormat, lvl->rowstride, height, lvl->depth, mt->tilebits);
147 lvl->rowstride, lvl->width, height, lvl->faces[face].offset);
433 assert(srclvl->rowstride == dstlvl->rowstride);
459 copy_rows(dest, dstlvl->rowstride, image->base.Map, srcrowstride,
radeon_tex_copy.c 131 timg->mt->levels[level].rowstride / dst_bpp,
radeon_texture.c 172 image->base.RowStride = lvl->rowstride / _mesa_get_format_bytes(image->base.Base.TexFormat);
257 *stride = lvl->rowstride;
616 radeonImage->base.RowStride = image->pitch;
725 rs = lvl->rowstride / texel_size;
736 image->base.RowStride = rs;
radeon_fbo.c 883 imageOffset += radeon_image->mt->levels[att->TextureLevel].rowstride *
891 rrb->pitch = radeon_image->mt->levels[att->TextureLevel].rowstride;
  /external/libvncserver/examples/
example.c 98 static void drawline(unsigned char* buffer,int rowstride,int bpp,int x1,int y1,int x2,int y2)
104 buffer[y1*rowstride+x1*bpp+i]=0xff;
113 buffer[j*rowstride+(x1+(j-y1)*(x2-x1)/(y2-y1))*bpp+i]=0xff;
118 buffer[(y1+(i-x1)*(y2-y1)/(x2-x1))*rowstride+i*bpp+j]=0xff;
  /external/libvpx/libvpx/third_party/libyuv/source/
scale_argb.cc 401 int rowstride = kRowSize; local
408 ScaleARGBFilterCols(rowptr + rowstride, src, dst_width, x, dx);
421 rowptr += rowstride;
422 rowstride = -rowstride;
431 InterpolateRow(dst_argb, rowptr, rowstride, dst_width * 4, yf);
597 int rowstride = kRowSize; local
609 ScaleARGBFilterCols(rowptr + rowstride, src_row_y, dst_width, x, dx);
633 rowptr += rowstride;
634 rowstride = -rowstride
    [all...]
scale.cc 1153 int rowstride = kRowSize; local
1284 int rowstride = kRowSize; local
    [all...]
  /external/libyuv/files/source/
scale_argb.cc 385 int rowstride = kRowSize; local
392 ScaleARGBFilterCols(rowptr + rowstride, src, dst_width, x, dx);
405 rowptr += rowstride;
406 rowstride = -rowstride;
415 InterpolateRow(dst_argb, rowptr, rowstride, dst_width * 4, yf);
573 int rowstride = kRowSize; local
585 ScaleARGBFilterCols(rowptr + rowstride, src_row_y, dst_width, x, dx);
609 rowptr += rowstride;
610 rowstride = -rowstride
    [all...]
scale.cc 1136 int rowstride = kRowSize; local
1267 int rowstride = kRowSize; local
    [all...]
  /external/mesa3d/src/mesa/main/
texgetimage.c 136 GLint rowstride; local
141 &srcMap, &rowstride);
145 const GLubyte *src = srcMap + row * rowstride;
181 GLint rowstride; local
186 &srcMap, &rowstride);
190 const GLubyte *src = srcMap + row * rowstride;
374 GLint rowstride; local
379 &srcMap, &rowstride);
382 const GLubyte *src = srcMap + row * rowstride;

Completed in 3125 milliseconds