Searched refs:idst (Results 1 - 14 of 14) sorted by relevance

/external/opencv/cv/src/
H A Dcvutils.cpp153 int* idst = (int*)dst; local
163 for( i = 0; i < dstroi.height; i++, idst += dststep )
165 if( idst + left != isrc )
167 idst[j + left] = isrc[j];
169 idst[j] = idst[j + cn];
171 idst[j] = idst[j - cn];
208 int* idst = (int*)dst, *tab; local
256 idst
343 int* idst = (int*)dst; local
[all...]
H A Dcvthresh.cpp118 int* idst = (int*)dst; local
131 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step )
136 idst[j] = ((CV_TOGGLE_FLT(temp) <= iThresh) - 1) & iMax;
142 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step )
147 idst[j] = ((CV_TOGGLE_FLT(temp) > iThresh) - 1) & iMax;
167 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step )
172 idst[j] = ((CV_TOGGLE_FLT( temp ) <= iThresh) - 1) & temp;
178 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step )
183 idst[j] = ((CV_TOGGLE_FLT( temp ) > iThresh) - 1) & temp;
/external/chromium_org/third_party/skia/samplecode/
H A DSamplePolyToPoly.cpp86 const int idst[], int count) {
92 dst[i].set(SkIntToScalar(idst[2*i+0]), SkIntToScalar(idst[2*i+1]));
85 doDraw(SkCanvas* canvas, SkPaint* paint, const int isrc[], const int idst[], int count) argument
/external/skia/samplecode/
H A DSamplePolyToPoly.cpp86 const int idst[], int count) {
92 dst[i].set(SkIntToScalar(idst[2*i+0]), SkIntToScalar(idst[2*i+1]));
85 doDraw(SkCanvas* canvas, SkPaint* paint, const int isrc[], const int idst[], int count) argument
/external/chromium_org/third_party/skia/gm/
H A Dpoly2poly.cpp194 const int idst[], int count) {
200 dst[i].set(SkIntToScalar(idst[2*i+0]), SkIntToScalar(idst[2*i+1]));
193 doDraw(SkCanvas* canvas, SkPaint* paint, const int isrc[], const int idst[], int count) argument
/external/skia/gm/
H A Dpoly2poly.cpp194 const int idst[], int count) {
200 dst[i].set(SkIntToScalar(idst[2*i+0]), SkIntToScalar(idst[2*i+1]));
193 doDraw(SkCanvas* canvas, SkPaint* paint, const int isrc[], const int idst[], int count) argument
/external/chromium_org/third_party/skia/src/core/
H A DSkBitmapProcState.cpp65 SkIRect idst; local
66 dst.round(&idst);
67 return idst.width() == bitmap.width() && idst.height() == bitmap.height();
H A DSkCanvas.cpp1696 SkIRect idst; local
1697 dst.roundOut(&idst);
1698 return !SkIRect::Intersects(idst, fMCRec->fRasterClip->getBounds());
H A DSkMatrix.cpp1684 SkIRect idst; local
1685 dst.round(&idst);
1686 return isrc == idst;
/external/skia/src/core/
H A DSkBitmapProcState.cpp65 SkIRect idst; local
66 dst.round(&idst);
67 return idst.width() == bitmap.width() && idst.height() == bitmap.height();
H A DSkCanvas.cpp1696 SkIRect idst; local
1697 dst.roundOut(&idst);
1698 return !SkIRect::Intersects(idst, fMCRec->fRasterClip->getBounds());
H A DSkMatrix.cpp1684 SkIRect idst; local
1685 dst.round(&idst);
1686 return isrc == idst;
/external/valgrind/main/VEX/priv/
H A Dhost_ppc_isel.c1716 HReg idst = newVRegI(env); local
1728 addInstr(env, PPCInstr_Load(4, idst, zero_r1, mode64));
1730 /* in 64-bit mode we need to sign-widen idst. */
1732 addInstr(env, PPCInstr_Unary(Pun_EXTSW, idst, idst));
1738 return idst;
1746 HReg idst = newVRegI(env); local
1758 addInstr(env, PPCInstr_Load(8, idst, zero_r1, True/*mode64*/));
1763 return idst;
1771 HReg idst local
1792 HReg idst = newVRegI(env); local
[all...]
/external/opencv/cxcore/src/
H A Dcxdxt.cpp958 int* idst = (int*)dst;
961 int t0 = idst[i*2+1] ^ 0x80000000;
962 int t1 = idst[i*2+3] ^ 0x80000000;
963 idst[i*2+1] = t0; idst[i*2+3] = t1;
967 idst[2*i+1] ^= 0x80000000;

Completed in 314 milliseconds