HomeSort by: relevance | last modified time | path
    Searched defs:srcPitch (Results 1 - 25 of 57) sorted by relevancy

1 2 3

  /xsrc/external/mit/xf86-video-chips/dist/src/
ct_shadow.c 62 int count, width, height, y1, y2, dstPitch, srcPitch;
67 srcPitch = -cPtr->Rotate * cPtr->ShadowPitch;
78 srcPtr = cPtr->ShadowPtr + ((1 - y2) * srcPitch) + pbox->x1;
82 srcPtr = cPtr->ShadowPtr + (y1 * srcPitch) + pbox->x2 - 1;
90 *(dst++) = src[0] | (src[srcPitch] << 8) |
91 (src[srcPitch * 2] << 16) |
92 (src[srcPitch * 3] << 24);
93 src += srcPitch * 4;
108 int count, width, height, y1, y2, dstPitch, srcPitch;
113 srcPitch = -cPtr->Rotate * cPtr->ShadowPitch >> 1
    [all...]
  /xsrc/external/mit/xf86-video-cirrus/dist/src/
cir_shadow.c 78 int count, width, height, x1, x2, y1, y2, dstPitch, srcPitch;
83 srcPitch = -pCir->rotate * pCir->ShadowPitch;
102 srcPtr = pCir->ShadowPtr + ((1 - y2) * srcPitch) + x1;
106 srcPtr = pCir->ShadowPtr + (y1 * srcPitch) + x2 - 1;
114 *(dst++) = src[0] | (src[srcPitch] << 8) |
115 (src[srcPitch * 2] << 16) |
116 (src[srcPitch * 3] << 24);
117 src += srcPitch * 4;
132 int count, width, height, x1, x2, y1, y2, dstPitch, srcPitch;
137 srcPitch = -pCir->rotate * pCir->ShadowPitch >> 1
    [all...]
  /xsrc/external/mit/xf86-video-mga/dist/src/
mga_shadow.c 69 int count, width, height, y1, y2, dstPitch, srcPitch;
74 srcPitch = -pMga->Rotate * pMga->ShadowPitch;
85 srcPtr = pMga->ShadowPtr + ((1 - y2) * srcPitch) + pbox->x1;
89 srcPtr = pMga->ShadowPtr + (y1 * srcPitch) + pbox->x2 - 1;
97 *(dst++) = src[0] | (src[srcPitch] << 8) |
98 (src[srcPitch * 2] << 16) |
99 (src[srcPitch * 3] << 24);
100 src += srcPitch * 4;
115 int count, width, height, y1, y2, dstPitch, srcPitch;
120 srcPitch = -pMga->Rotate * pMga->ShadowPitch >> 1
    [all...]
  /xsrc/external/mit/xf86-video-neomagic/dist/src/
neo_shadow.c 78 int count, width, height, y1, y2, dstPitch, srcPitch;
83 srcPitch = -nPtr->rotate * nPtr->ShadowPitch;
94 srcPtr = nPtr->ShadowPtr + ((1 - y2) * srcPitch) + pbox->x1;
98 srcPtr = nPtr->ShadowPtr + (y1 * srcPitch) + pbox->x2 - 1;
106 *(dst++) = src[0] | (src[srcPitch] << 8) |
107 (src[srcPitch * 2] << 16) |
108 (src[srcPitch * 3] << 24);
109 src += srcPitch * 4;
124 int count, width, height, y1, y2, dstPitch, srcPitch;
129 srcPitch = -nPtr->rotate * nPtr->ShadowPitch >> 1
    [all...]
neo_video.c 616 int srcPitch, srcPitch2 = 0, dstPitch, size;
650 srcPitch = (width + 3) & ~3;
651 offset2 = srcPitch * height;
657 srcPitch = (width + 3) & ~3;
658 offset3 = srcPitch * height;
667 srcPitch = width << 1;
668 dstPitch = (srcPitch + 15) & ~15;
707 xf86XVCopyYUV12ToPacked(buf + (top * srcPitch) + (left >> 1),
709 dstStart, srcPitch, srcPitch2,
713 buf += (top * srcPitch) + left
    [all...]
  /xsrc/external/mit/xf86-video-nsc/dist/src/
nsc_gx1_shadow.c 255 int count, width, height, y1, y2, dstPitch, srcPitch, srcPitch2,
261 srcPitch = -pGeode->Rotate * pGeode->ShadowPitch;
262 srcPitch2 = srcPitch * 2;
263 srcPitch3 = srcPitch * 3;
264 srcPitch4 = srcPitch * 4;
274 srcPtr = pGeode->ShadowPtr + ((1 - y2) * srcPitch) + pbox->x1;
278 srcPtr = pGeode->ShadowPtr + (y1 * srcPitch) + pbox->x2 - 1;
285 *(dst++) = src[0] | (src[srcPitch] << 8) |
315 int count, width, height, y1, y2, dstPitch, srcPitch, srcPitch2;
320 srcPitch = -pGeode->Rotate * pGeode->ShadowPitch >> 1
    [all...]
nsc_gx2_shadow.c 255 int count, width, height, y1, y2, dstPitch, srcPitch, srcPitch2,
261 srcPitch = -pGeode->Rotate * pGeode->ShadowPitch;
262 srcPitch2 = srcPitch * 2;
263 srcPitch3 = srcPitch * 3;
264 srcPitch4 = srcPitch * 4;
274 srcPtr = pGeode->ShadowPtr + ((1 - y2) * srcPitch) + pbox->x1;
278 srcPtr = pGeode->ShadowPtr + (y1 * srcPitch) + pbox->x2 - 1;
285 *(dst++) = src[0] | (src[srcPitch] << 8) |
315 int count, width, height, y1, y2, dstPitch, srcPitch, srcPitch2;
320 srcPitch = -pGeode->Rotate * pGeode->ShadowPitch >> 1
    [all...]
  /xsrc/external/mit/xf86-video-rendition/dist/src/
rendition_shadow.c 72 int count, width, height, y1, y2, dstPitch, srcPitch;
77 srcPitch = -pRendition->board.rotate * pRendition->board.shadowPitch;
88 srcPtr = pRendition->board.shadowPtr + ((1 - y2) * srcPitch) + pbox->x1;
92 srcPtr = pRendition->board.shadowPtr + (y1 * srcPitch) + pbox->x2 - 1;
100 *(dst++) = src[0] | (src[srcPitch] << 8) |
101 (src[srcPitch * 2] << 16) |
102 (src[srcPitch * 3] << 24);
103 src += srcPitch * 4;
118 int count, width, height, y1, y2, dstPitch, srcPitch;
123 srcPitch = -pRendition->board.rotate * pRendition->board.shadowPitch >> 1
    [all...]
  /xsrc/external/mit/xf86-video-s3/dist/src/
s3_shadow.c 92 int count, width, height, y1, y2, dstPitch, srcPitch;
97 srcPitch = -pS3->rotate * pS3->ShadowPitch;
108 srcPtr = pS3->ShadowPtr + ((1 - y2) * srcPitch) + pbox->x1;
112 srcPtr = pS3->ShadowPtr + (y1 * srcPitch) + pbox->x2 - 1;
120 *(dst++) = src[0] | (src[srcPitch] << 8) |
121 (src[srcPitch * 2] << 16) |
122 (src[srcPitch * 3] << 24);
123 src += srcPitch * 4;
138 int count, width, height, y1, y2, dstPitch, srcPitch;
143 srcPitch = -pS3->rotate * pS3->ShadowPitch >> 1
    [all...]
s3_video.c 373 int srcPitch, srcPitchUV = 0, dstPitch, dstSize;
427 srcPitch = (width + 3) & ~3;
428 offsetV = srcPitch * height;
445 xf86XVCopyYUV12ToPacked(buf + (top * srcPitch) + left,
447 dst_start, srcPitch, srcPitchUV,
467 srcPitch = width << 1;
468 buf += (top * srcPitch) + (left << 1);
471 xf86XVCopyPacked(buf, dst_start, srcPitch, dstPitch,
  /xsrc/external/mit/xf86-video-s3virge/dist/src/
s3v_shadow.c 118 int count, width, height, y1, y2, dstPitch, srcPitch;
123 srcPitch = -ps3v->rotate * ps3v->ShadowPitch;
134 srcPtr = ps3v->ShadowPtr + ((1 - y2) * srcPitch) + pbox->x1;
138 srcPtr = ps3v->ShadowPtr + (y1 * srcPitch) + pbox->x2 - 1;
146 *(dst++) = src[0] | (src[srcPitch] << 8) |
147 (src[srcPitch * 2] << 16) |
148 (src[srcPitch * 3] << 24);
149 src += srcPitch * 4;
164 int count, width, height, y1, y2, dstPitch, srcPitch;
169 srcPitch = -ps3v->rotate * ps3v->ShadowPitch >> 1
    [all...]
s3v_xv.c 704 int srcPitch, srcPitch2=0, dstPitch;
743 srcPitch = (width + 3) & ~3;
744 offset2 = srcPitch * height;
751 srcPitch = (width << 1);
782 xf86XVCopyYUV12ToPacked(buf + (top * srcPitch) + (left >> 1),
784 srcPitch, srcPitch2, dstPitch, nlines, npixels);
789 buf += (top * srcPitch) + left;
791 xf86XVCopyPacked(buf, dst_start, srcPitch, dstPitch, nlines, npixels);
  /xsrc/external/mit/xf86-video-savage/dist/src/
savage_shadow.c 66 int count, width, height, y1, y2, dstPitch, srcPitch;
71 srcPitch = -psav->rotate * psav->ShadowPitch;
82 srcPtr = psav->ShadowPtr + ((1 - y2) * srcPitch) + pbox->x1;
86 srcPtr = psav->ShadowPtr + (y1 * srcPitch) + pbox->x2 - 1;
94 *(dst++) = src[0] | (src[srcPitch] << 8) |
95 (src[srcPitch * 2] << 16) |
96 (src[srcPitch * 3] << 24);
97 src += srcPitch * 4;
112 int count, width, height, y1, y2, dstPitch, srcPitch;
117 srcPitch = -psav->rotate * psav->ShadowPitch >> 1
    [all...]
  /xsrc/external/mit/xf86-video-trident/dist/src/
trident_shadow.c 78 int count, width, height, y1, y2, dstPitch, srcPitch;
83 srcPitch = -pTrident->Rotate * pTrident->ShadowPitch;
94 srcPtr = pTrident->ShadowPtr + ((1 - y2) * srcPitch) + pbox->x1;
98 srcPtr = pTrident->ShadowPtr + (y1 * srcPitch) + pbox->x2 - 1;
106 *(dst++) = src[0] | (src[srcPitch] << 8) |
107 (src[srcPitch * 2] << 16) |
108 (src[srcPitch * 3] << 24);
109 src += srcPitch * 4;
124 int count, width, height, y1, y2, dstPitch, srcPitch;
129 srcPitch = -pTrident->Rotate * pTrident->ShadowPitch >> 1
    [all...]
  /xsrc/external/mit/xf86-video-nv/dist/src/
nv_shadow.c 77 int count, width, height, y1, y2, dstPitch, srcPitch;
87 srcPitch = -pNv->Rotate * pNv->ShadowPitch;
98 srcPtr = pNv->ShadowPtr + ((1 - y2) * srcPitch) + pbox->x1;
102 srcPtr = pNv->ShadowPtr + (y1 * srcPitch) + pbox->x2 - 1;
110 *(dst++) = src[0] | (src[srcPitch] << 8) |
111 (src[srcPitch * 2] << 16) |
112 (src[srcPitch * 3] << 24);
113 src += srcPitch * 4;
128 int count, width, height, y1, y2, dstPitch, srcPitch;
138 srcPitch = -pNv->Rotate * pNv->ShadowPitch >> 1
    [all...]
riva_shadow.c 66 int count, width, height, y1, y2, dstPitch, srcPitch;
71 srcPitch = -pRiva->Rotate * pRiva->ShadowPitch;
82 srcPtr = pRiva->ShadowPtr + ((1 - y2) * srcPitch) + pbox->x1;
86 srcPtr = pRiva->ShadowPtr + (y1 * srcPitch) + pbox->x2 - 1;
94 *(dst++) = src[0] | (src[srcPitch] << 8) |
95 (src[srcPitch * 2] << 16) |
96 (src[srcPitch * 3] << 24);
97 src += srcPitch * 4;
112 int count, width, height, y1, y2, dstPitch, srcPitch;
117 srcPitch = -pRiva->Rotate * pRiva->ShadowPitch >> 1
    [all...]
  /xsrc/external/mit/xf86-video-sis/dist/src/
sis_shadow.c 217 int count, width, height, y1, y2, dstPitch, srcPitch;
222 srcPitch = -pSiS->Rotate * pSiS->ShadowPitch;
232 srcPtr = pSiS->ShadowPtr + ((1 - y2) * srcPitch) + pbox->x1;
235 srcPtr = pSiS->ShadowPtr + (y1 * srcPitch) + pbox->x2 - 1;
244 (src[srcPitch] << 8) |
245 (src[srcPitch * 2] << 16) |
246 (src[srcPitch * 3] << 24);
247 src += (srcPitch * 4);
261 int count, width, height, y1, y2, dstPitch, srcPitch;
266 srcPitch = -pSiS->Rotate * pSiS->ShadowPitch >> 1
    [all...]
sis_videostr.h 49 short srcPitch, height;
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/
sna_video.c 304 int dstPitch = frame->pitch[!sub], srcPitch;
316 srcPitch = ALIGN((frame->width >> 1), 4);
318 srcPitch = ALIGN(frame->width, 4);
320 src += y * srcPitch + x;
327 if (srcPitch == dstPitch && srcPitch == w)
328 memcpy(dst, src, srcPitch * h);
331 src += srcPitch;
340 src += srcPitch;
350 src += srcPitch;
    [all...]
  /xsrc/external/mit/xf86-video-vboxvideo/dist/src/
pointer.c 245 size_t sizeRequest, sizeRgba, sizeMask, srcPitch, dstPitch;
264 srcPitch = PixmapBytePad (bitsp->width, 1);
312 ++y, pm += srcPitch, ps += srcPitch, m += dstPitch)
  /xsrc/external/mit/xf86-video-intel/dist/src/sna/
sna_video.c 352 int dstPitch = frame->pitch[0] >> 1, srcPitch;
359 srcPitch = ALIGN((frame->width >> 1), 2);
361 src += y * srcPitch + x;
368 if (srcPitch == dstPitch && srcPitch == w)
369 memcpy(dst, src, (srcPitch * h) << 1);
372 src += srcPitch;
381 src += srcPitch;
391 src += srcPitch;
400 src += srcPitch;
    [all...]
  /xsrc/external/mit/xf86-video-intel/dist/src/uxa/
intel_video.c 321 int srcPitch, int dstPitch, int top, int left, int h, int w)
329 "srcPitch: %d, dstPitch: %d\n", top, left, h, w,
330 srcPitch, dstPitch);
333 src = buf + (top * srcPitch) + (left << 1);
347 src += srcPitch;
360 src += srcPitch;
363 src = buf + (top * srcPitch) + (left << 1);
368 src[(j * 2) + 1 + (i * srcPitch)];
370 src[(j * 2) + 1 + ((i + 1) * srcPitch)];
373 src[(j * 2) + 3 + (i * srcPitch)];
    [all...]
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/uxa/
intel_video.c 321 int srcPitch, int dstPitch, int top, int left, int h, int w)
329 "srcPitch: %d, dstPitch: %d\n", top, left, h, w,
330 srcPitch, dstPitch);
333 src = buf + (top * srcPitch) + (left << 1);
347 src += srcPitch;
360 src += srcPitch;
363 src = buf + (top * srcPitch) + (left << 1);
368 src[(j * 2) + 1 + (i * srcPitch)];
370 src[(j * 2) + 1 + ((i + 1) * srcPitch)];
373 src[(j * 2) + 3 + (i * srcPitch)];
    [all...]
  /xsrc/external/mit/xf86-video-xgi/dist/src/
xgi_video.h 75 short srcPitch, height;
  /xsrc/external/mit/xf86-video-apm/dist/src/
apm_video.c 671 int srcPitch, dstPitch, srcPitch2 = 0;
721 srcPitch = (width + 3) & ~3;
722 offset2 = srcPitch * height;
729 srcPitch = width;
730 dstPitch = (srcPitch + 3) & ~3;
735 srcPitch = (width << 2);
736 dstPitch = (srcPitch + 3) & ~3;
742 srcPitch = pApm->PutImageStride;
744 srcPitch = (width << 1);
745 dstPitch = (srcPitch + 3) & ~3
    [all...]

Completed in 24 milliseconds

1 2 3