Home
last modified time | relevance | path

Searched refs:sstep (Results 1 – 25 of 38) sorted by relevance

12

/external/quake/quake/src/QW/client/
Dd_sky.c69 fixed16_t s, t, snext, tnext, sstep, tstep; in D_DrawSkyScans8() local
72 sstep = 0; // keep compiler happy in D_DrawSkyScans8()
104 sstep = (snext - s) >> SKY_SPAN_SHIFT; in D_DrawSkyScans8()
118 sstep = (snext - s) / spancountminus1; in D_DrawSkyScans8()
127 s += sstep; in D_DrawSkyScans8()
Dd_spr8.s406 movl %ebp,sstep
428 addl sstep,%ebx // advance sfrac fractional part by sstep frac
443 addl sstep,%ebx
458 addl sstep,%ebx
473 addl sstep,%ebx
488 addl sstep,%ebx
548 addl sstep,%ebx
563 addl sstep,%ebx
578 addl sstep,%ebx
687 movl %ebp,sstep
[all …]
Dd_scan.c259 fixed16_t s, t, snext, tnext, sstep, tstep; in D_DrawSpans8() local
263 sstep = 0; // keep compiler happy in D_DrawSpans8()
333 sstep = (snext - s) >> 3; in D_DrawSpans8()
363 sstep = (snext - s) / (spancount - 1); in D_DrawSpans8()
371 s += sstep; in D_DrawSpans8()
Dd_sprite.c42 fixed16_t s, t, snext, tnext, sstep, tstep; in D_SpriteDrawSpans() local
48 sstep = 0; // keep compiler happy in D_SpriteDrawSpans()
126 sstep = (snext - s) >> 3; in D_SpriteDrawSpans()
156 sstep = (snext - s) / (spancount - 1); in D_SpriteDrawSpans()
176 s += sstep; in D_SpriteDrawSpans()
Dd_spr8.asm200 externdef sstep:dword
485 mov ds:dword ptr[sstep],ebp
504 add ebx,ds:dword ptr[sstep]
518 add ebx,ds:dword ptr[sstep]
532 add ebx,ds:dword ptr[sstep]
546 add ebx,ds:dword ptr[sstep]
560 add ebx,ds:dword ptr[sstep]
608 add ebx,ds:dword ptr[sstep]
622 add ebx,ds:dword ptr[sstep]
636 add ebx,ds:dword ptr[sstep]
[all …]
Dd_varsa.s171 .globl advancetable, sstep, tstep, pspantemp, counttemp, jumptemp
173 sstep: .long 0 label
Dd_varsa.asm200 externdef sstep:dword
332 public advancetable, sstep, tstep, pspantemp, counttemp, jumptemp
334 sstep dd 0 define
Dquakeasm.h227 .extern sstep
Dr_varsa.asm200 externdef sstep:dword
Dsys_wina.asm200 externdef sstep:dword
Dd_scana.asm200 externdef sstep:dword
/external/quake/quake/src/WinQuake/
Dd_sky.cpp69 fixed16_t s, t, snext, tnext, sstep, tstep; in D_DrawSkyScans8() local
72 sstep = 0; // keep compiler happy in D_DrawSkyScans8()
104 sstep = (snext - s) >> SKY_SPAN_SHIFT; in D_DrawSkyScans8()
118 sstep = (snext - s) / spancountminus1; in D_DrawSkyScans8()
127 s += sstep; in D_DrawSkyScans8()
Dd_spr8.s406 movl %ebp,sstep
428 addl sstep,%ebx // advance sfrac fractional part by sstep frac
443 addl sstep,%ebx
458 addl sstep,%ebx
473 addl sstep,%ebx
488 addl sstep,%ebx
548 addl sstep,%ebx
563 addl sstep,%ebx
578 addl sstep,%ebx
687 movl %ebp,sstep
[all …]
Dd_sprite.cpp42 fixed16_t s, t, snext, tnext, sstep, tstep; in D_SpriteDrawSpans() local
48 sstep = 0; // keep compiler happy in D_SpriteDrawSpans()
126 sstep = (snext - s) >> 3; in D_SpriteDrawSpans()
156 sstep = (snext - s) / (spancount - 1); in D_SpriteDrawSpans()
176 s += sstep; in D_SpriteDrawSpans()
Dd_scan.cpp261 fixed16_t s, t, snext, tnext, sstep, tstep; in D_DrawSpans8() local
265 sstep = 0; // keep compiler happy in D_DrawSpans8()
335 sstep = (snext - s) >> 3; in D_DrawSpans8()
365 sstep = (snext - s) / (spancount - 1); in D_DrawSpans8()
373 s += sstep; in D_DrawSpans8()
Dd_varsa.s171 .globl advancetable, sstep, tstep, pspantemp, counttemp, jumptemp
173 sstep: .long 0 label
Dquakeasm.h233 .extern sstep
/external/opencv/cv/src/
Dcvstereobm.cpp202 int sstep = left->step; in icvFindStereoCorrespondenceBM_SSE2() local
224 lptr = lptr0 + MIN(MAX(x, -lofs), width-lofs-1) - dy0*sstep; in icvFindStereoCorrespondenceBM_SSE2()
225 rptr = rptr0 + MIN(MAX(x, -rofs), width-rofs-1) - dy0*sstep; in icvFindStereoCorrespondenceBM_SSE2()
227 … for( y = -dy0; y < height + dy1; y++, hsad += ndisp, cbuf += ndisp, lptr += sstep, rptr += sstep ) in icvFindStereoCorrespondenceBM_SSE2()
256 lptr_sub = lptr0 + MIN(MAX(x0, -lofs), width-1-lofs) - dy0*sstep; in icvFindStereoCorrespondenceBM_SSE2()
257 lptr = lptr0 + MIN(MAX(x1, -lofs), width-1-lofs) - dy0*sstep; in icvFindStereoCorrespondenceBM_SSE2()
258 rptr = rptr0 + MIN(MAX(x1, -rofs), width-1-rofs) - dy0*sstep; in icvFindStereoCorrespondenceBM_SSE2()
261 hsad += ndisp, lptr += sstep, lptr_sub += sstep, rptr += sstep ) in icvFindStereoCorrespondenceBM_SSE2()
409 int sstep = left->step; in icvFindStereoCorrespondenceBM() local
430 lptr = lptr0 + MIN(MAX(x, -lofs), width-lofs-1) - dy0*sstep; in icvFindStereoCorrespondenceBM()
[all …]
Dcvundistort.cpp387 int sstep, dstep; in cvUndistortPoints() local
430 sstep = _src->rows == 1 ? 1 : _src->step/CV_ELEM_SIZE(stype); in cvUndistortPoints()
447 x = srcf[i*sstep].x; in cvUndistortPoints()
448 y = srcf[i*sstep].y; in cvUndistortPoints()
452 x = srcd[i*sstep].x; in cvUndistortPoints()
453 y = srcd[i*sstep].y; in cvUndistortPoints()
Dcvimgwarp.cpp1801 int sstep = src->step; in icvRemapFixedPt_8u() local
1805 const uchar* sptr1 = sptr0 + sstep; in icvRemapFixedPt_8u()
1807 __m128i xy2ofs = _mm_set1_epi32(1 + (sstep << 16)); in icvRemapFixedPt_8u()
1906 const uchar* sptr = sptr0 + sstep*yi + xi; in icvRemapFixedPt_8u()
1908 dptr[x] = (uchar)((sptr[0]*a[0] + sptr[1]*a[1] + sptr[sstep]*a[2] + in icvRemapFixedPt_8u()
1909 sptr[sstep+1]*a[3])>>CV_REMAP_SHIFT*2); in icvRemapFixedPt_8u()
1925 const uchar* sptr = sptr0 + sstep*yi + xi*3; in icvRemapFixedPt_8u()
1929 sptr[sstep]*a[2] + sptr[sstep+3]*a[3])>>CV_REMAP_SHIFT*2; in icvRemapFixedPt_8u()
1931 sptr[sstep+1]*a[2] + sptr[sstep+4]*a[3])>>CV_REMAP_SHIFT*2; in icvRemapFixedPt_8u()
1933 sptr[sstep+2]*a[2] + sptr[sstep+5]*a[3])>>CV_REMAP_SHIFT*2; in icvRemapFixedPt_8u()
[all …]
Dcvsegmentation.cpp402 int sstep = src->step; in cvPyrMeanShiftFiltering() local
439 for( i = 0; i < size.height; i++, sptr += sstep - size.width*3, in cvPyrMeanShiftFiltering()
468 ptr = sptr + (miny - i)*sstep + (minx - j)*3; in cvPyrMeanShiftFiltering()
470 for( y = miny; y <= maxy; y++, ptr += sstep - (maxx-minx+1)*3 ) in cvPyrMeanShiftFiltering()
Dcvdistransform.cpp454 int sstep, dstep; in icvTrueDistTrans() local
478 sstep = src->step; in icvTrueDistTrans()
501 const uchar* sptr = src->data.ptr + i + (m-1)*sstep; in icvTrueDistTrans()
506 for( j = m-1; j >= 0; j--, sptr -= sstep ) in icvTrueDistTrans()
Dcvstereogc.cpp450 int sstep = src->step; in icvInitGraySubpix() local
454 const uchar* sptr = src->data.ptr + sstep*y; in icvInitGraySubpix()
455 const uchar* sptr_prev = y > 0 ? sptr - sstep : sptr; in icvInitGraySubpix()
456 const uchar* sptr_next = y < rows-1 ? sptr + sstep : sptr; in icvInitGraySubpix()
/external/opencv/ml/src/
D_ml.h91 #define ICV_RAWDATA( mat, flags, rdata, sstep, cstep, m, n ) \ argument
95 (sstep) = (mat).step; \
103 (sstep) = CV_ELEM_SIZE( (mat).type ); \
125 int sstep, cstep; \
143 sstep = cstep = clstep = ncl = tmstep = ntm = msstep = mcstep = mm = mn = 0; \
153 ICV_RAWDATA( *(param), (flags), data, sstep, cstep, m, n ); \
/external/opencv/cxcore/src/
Dcxutils.cpp1064 int sstep = src->step, dstep = dst ? dst->step : 0; in cvSort() local
1136 sstep /= elemSize; in cvSort()
1141 icvCopy1D( src->data.ptr + i*elemSize, sstep, tsrc, 1, len, elemSize ); in cvSort()
1169 const uchar* sptr = src->data.ptr + i*sstep; in cvSort()
1181 const uchar* sptr = src->data.ptr + sstep*i; in cvSort()

12