HomeSort by relevance Sort by last modified time
    Searched full:srcy (Results 1 - 25 of 27) sorted by null

1 2

  /external/skia/src/core/
SkSpriteBlitterTemplate.h 29 int srcY = y - fTop;
32 fSource->SkSPRITE_SRC_GETADDR(srcX, srcY);
37 SkDEBUGCODE((void)fSource->SkSPRITE_SRC_GETADDR(srcX + width - 1, srcY + height - 1);)
39 SkSPRITE_PREAMBLE((*fSource), srcX, srcY);
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
SDL_fbmatrox.c 125 int srcX, srcY;
148 FB_dst_to_xy(this, src, &srcX, &srcY);
153 srcY += srcrect->y;
163 if ( srcY < dstY ) {
165 srcY += (h - 1);
170 stop = start = (srcY * pitch) + srcX;
176 if ( srcY < dstY ) {
SDL_fb3dfx.c 102 int srcX, srcY;
124 srcY = srcrect->y;
135 if ( srcY <= dstY ) {
137 srcY += (dstrect->h - 1);
160 tdfx_out32(LAUNCH_2D, srcX | (srcY << 16));
SDL_fbriva.c 115 int srcX, srcY;
136 FB_dst_to_xy(this, src, &srcX, &srcY);
141 srcY += srcrect->y;
146 Blt->TopLeftSrc = (srcY << 16) | srcX;
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_yuv.c 86 int srcx, srcy, srcw, srch; local
96 srcy = 0;
117 srcy -= (dsty * overlay->h) / dstrect->h;
131 src.y = srcy;
SDL_surface.c 448 int srcx, srcy, w, h; local
481 srcy = srcrect->y;
483 if(srcy < 0) {
484 h += srcy;
485 dstrect->y -= srcy;
486 srcy = 0;
488 maxh = src->h - srcy;
493 srcx = srcy = 0;
517 srcy += dy;
527 sr.y = srcy;
    [all...]
  /external/webkit/WebCore/svg/graphics/filters/
SVGFEDisplacementMap.cpp 117 int srcY = y + static_cast<int>(scaleY * srcPixelArrayB->get(dstIndex + m_yChannelSelector - 1) + scaleAdjustmentY);
119 if (srcX < 0 || srcX >= imageRect.width() || srcY < 0 || srcY >= imageRect.height())
122 unsigned char pixelValue = srcPixelArrayA->get(srcY * stride + srcX * 4 + channel);
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
xf86dga.h 217 int srcy,
229 int srcy,
xf86dgastr.h 202 CARD16 srcy B16;
216 CARD16 srcy B16;
  /external/quake/quake/src/QW/client/
draw.h 29 void Draw_SubPic(int x, int y, qpic_t *pic, int srcx, int srcy, int width, int height);
draw.c 395 void Draw_SubPic(int x, int y, qpic_t *pic, int srcx, int srcy, int width, int height)
409 source = pic->data + srcy * pic->width + srcx;
gl_draw.c 683 void Draw_SubPic(int x, int y, qpic_t *pic, int srcx, int srcy, int width, int height)
699 newtl = gl->tl + (srcy*oldglheight)/pic->height;
    [all...]
sbar.c 244 void Sbar_DrawSubPic(int x, int y, qpic_t *pic, int srcx, int srcy, int width, int height)
246 Draw_SubPic (x, y+(vid.height-SBAR_HEIGHT), pic, srcx, srcy, width, height);
  /system/extras/tests/framebuffer/
mdp_test.c 180 int srcx = 0; int srcy = 0; local
198 if (parse_geometry(optarg, &srcw, &srch, &srcx, &srcy)) {
202 printf("Got source: w=%d h=%d x=%d y=%d\n", srcw, srch, srcx, srcy);
301 req->src_rect.y = srcy;
  /external/skia/src/images/
SkImageDecoder.cpp 201 int width, int height, int srcX, int srcY) {
205 (srcX - destX) / sampleSize == 0 && (srcY - destY) / sampleSize == 0) {
216 (srcY - destY) / sampleSize);
  /external/skia/src/utils/
SkNinePatch.cpp 235 const int32_t srcY[4] = {
250 s.fTop = srcY[y];
251 s.fBottom = srcY[y+1];
  /frameworks/base/media/libstagefright/codecs/avc/common/src/
deblock.cpp 59 static void DeblockMb(AVCCommonObj *video, int mb_x, int mb_y, uint8 *SrcY, uint8 *SrcU, uint8 *SrcV);
79 uint8 *SrcY, *SrcU, *SrcV;
81 SrcY = video->currPic->Sl; // pointers to source
91 DeblockMb(video, j, i, SrcY, SrcU, SrcV);
92 // update SrcY, SrcU, SrcV
93 SrcY += MB_BLOCK_SIZE;
98 SrcY += ((pitch << 4) - width);
290 void DeblockMb(AVCCommonObj *video, int mb_x, int mb_y, uint8 *SrcY, uint8 *SrcU, uint8 *SrcV)
344 EdgeLoop_Luma_vertical(SrcY, Strength, Alpha, Beta, clipTable, 20);
346 EdgeLoop_Luma_vertical(SrcY, Strength, Alpha, Beta, clipTable, pitch)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/Xxf86dga/
XF86DGA2.c 539 int srcy,
556 req->srcy = srcy;
569 int srcy,
587 req->srcy = srcy;
  /external/webkit/WebCore/platform/graphics/wince/
GraphicsContextWince.cpp 401 int srcY = y1 * cosA - transform.m_postShiftY;
402 if (srcX >= 0 && srcX <= sourceW && srcY >= 0 && srcY <= sourceH)
403 *dest++ = source[srcY * paddedSourceW + srcX] | 0xFF000000;
416 int srcY = -x1 * sinA + transform.m_postShiftY;
417 if (srcX >= 0 && srcX <= sourceW && srcY >= 0 && srcY <= sourceH)
418 *dest++ = source[srcY * paddedSourceW + srcX];
427 int srcX, srcY;
428 transform.map(x, y, &srcX, &srcY);
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/dga/
SDL_dgavideo.c 864 int srcx, srcy; local
876 DGA_dst_to_xy(this, src, &srcx, &srcy);
878 srcy += srcrect->y;
885 printf("Blitting %dx%d from %d,%d to %d,%d\n", w, h, srcx, srcy, dstx, dsty);
889 srcx, srcy, w, h, dstx, dsty, src->format->colorkey);
892 srcx, srcy, w, h, dstx, dsty);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
shmstr.h 131 CARD16 srcY B16;
  /external/skia/include/images/
SkImageDecoder.h 342 * @param (srcX, srcY) the upper-left point of the src Btimap in terms of
350 int srcX, int srcY);
  /external/clearsilver/imd/
imd.c 280 int srcX,srcY,srcW,srcH;
345 srcX=0; srcY=0; srcW=src_im->sx; srcH=src_im->sy;
390 gdImageCopyResized(dest_im,src_im,dstX,dstY,srcX,srcY,dstW,dstH,srcW,srcH);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xproto.h     [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/xorg/
xf86str.h 1033 int srcx, int srcy,
1039 int srcx, int srcy,
    [all...]

Completed in 1196 milliseconds

1 2