HomeSort by relevance Sort by last modified time
    Searched refs:rowstride (Results 1 - 19 of 19) 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 74 unsigned rowStride,
84 return rowStride * ((height + blockHeight - 1) / blockHeight) * depth;
95 return rowStride * height * depth;
134 lvl->rowstride = get_texture_image_row_stride(rmesa, mt->mesaFormat, lvl->width, mt->tilebits, mt->target);
135 lvl->size = get_texture_image_size(mt->mesaFormat, lvl->rowstride, height, lvl->depth, mt->tilebits);
146 lvl->rowstride, lvl->width, height, lvl->faces[face].offset);
423 assert(srclvl->rowstride == dstlvl->rowstride);
radeon_tex_copy.c 131 timg->mt->levels[level].rowstride / dst_bpp,
radeon_fbo.c 802 imageOffset += radeon_image->mt->levels[att->TextureLevel].rowstride *
810 rrb->pitch = radeon_image->mt->levels[att->TextureLevel].rowstride;
radeon_texture.c 189 *stride = lvl->rowstride;
559 radeonImage->base.RowStride = image->pitch;
  /frameworks/rs/
rsGrallocConsumer.cpp 140 int32_t rowstride = -1; local
141 ret = AImage_getPlaneRowStride(img, 0, &rowstride);
142 if (ret != AMEDIA_OK || rowstride == -1) {
143 ALOGE("%s: get row stride for image %p failed! ret: %d, rowstride %d",
144 __FUNCTION__, img, ret, rowstride);
159 mAlloc[idx]->mHal.drvState.lod[0].stride = 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 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/libyuv/files/source/
scale_argb.cc 480 int rowstride = kRowSize; local
487 ScaleARGBFilterCols(rowptr + rowstride, src, dst_width, x, dx);
500 rowptr += rowstride;
501 rowstride = -rowstride;
510 InterpolateRow(dst_argb, rowptr, rowstride, dst_width * 4, yf);
687 int rowstride = kRowSize; local
699 ScaleARGBFilterCols(rowptr + rowstride, src_row_y, dst_width, x, dx);
723 rowptr += rowstride;
724 rowstride = -rowstride
    [all...]
scale.cc 1301 int rowstride = kRowSize; local
1436 int rowstride = kRowSize; local
    [all...]
  /external/mesa3d/src/mesa/main/
texgetimage.c 140 GLint rowstride; local
145 GL_MAP_READ_BIT, &srcMap, &rowstride);
149 const GLubyte *src = srcMap + row * rowstride;
187 GLint rowstride; local
193 &srcMap, &rowstride);
197 const GLubyte *src = srcMap + row * rowstride;
231 GLint rowstride; local
236 GL_MAP_READ_BIT, &srcMap, &rowstride);
240 const GLubyte *src = srcMap + row * rowstride;
460 GLint rowstride; local
    [all...]
texcompress_bptc.c 661 GLint rowStride, GLint i, GLint j,
666 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16;
673 GLint rowStride, GLint i, GLint j,
678 fetch_bptc_rgba_unorm_bytes(map, rowStride, i, j, texel_bytes);
688 GLint rowStride, GLint i, GLint j,
693 fetch_bptc_rgba_unorm_bytes(map, rowStride, i, j, texel_bytes);
925 GLint rowStride, GLint i, GLint j,
931 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16;
938 GLint rowStride, GLint i, GLint j,
941 fetch_bptc_rgb_float(map, rowStride, i, j, texel, true)
1280 int rowstride; local
1592 int rowstride; local
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/include/
svga3d_surfacedefs.h 1117 const uint32 rowstride = DIV_ROUND_UP(width, bw) * desc->bytes_per_block; local
    [all...]
  /external/gemmlowp/standalone/
neon-gemm-kernel-benchmark.cc     [all...]

Completed in 608 milliseconds