Home
last modified time | relevance | path

Searched refs:idst (Results 1 – 7 of 7) sorted by relevance

/external/opencv/cv/src/
Dcvutils.cpp153 int* idst = (int*)dst; in icvCopyReplicateBorder_8u() local
163 for( i = 0; i < dstroi.height; i++, idst += dststep ) in icvCopyReplicateBorder_8u()
165 if( idst + left != isrc ) in icvCopyReplicateBorder_8u()
167 idst[j + left] = isrc[j]; in icvCopyReplicateBorder_8u()
169 idst[j] = idst[j + cn]; in icvCopyReplicateBorder_8u()
171 idst[j] = idst[j - cn]; in icvCopyReplicateBorder_8u()
208 int* idst = (int*)dst, *tab; in icvCopyReflect101Border_8u() local
256 idst += top*dststep; in icvCopyReflect101Border_8u()
257 for( i = 0; i < srcroi.height; i++, isrc += srcstep, idst += dststep ) in icvCopyReflect101Border_8u()
259 if( idst + left != isrc ) in icvCopyReflect101Border_8u()
[all …]
Dcvthresh.cpp118 int* idst = (int*)dst; in icvThresh_32f_C1R() local
131 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step ) in icvThresh_32f_C1R()
136 idst[j] = ((CV_TOGGLE_FLT(temp) <= iThresh) - 1) & iMax; in icvThresh_32f_C1R()
142 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step ) in icvThresh_32f_C1R()
147 idst[j] = ((CV_TOGGLE_FLT(temp) > iThresh) - 1) & iMax; in icvThresh_32f_C1R()
167 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step ) in icvThresh_32f_C1R()
172 idst[j] = ((CV_TOGGLE_FLT( temp ) <= iThresh) - 1) & temp; in icvThresh_32f_C1R()
178 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step ) in icvThresh_32f_C1R()
183 idst[j] = ((CV_TOGGLE_FLT( temp ) > iThresh) - 1) & temp; in icvThresh_32f_C1R()
/external/skia/gm/
Dpoly2poly.cpp26 const int idst[], int count) { in doDraw() argument
32 dst[i].set(SkIntToScalar(idst[2*i+0]), SkIntToScalar(idst[2*i+1])); in doDraw()
/external/skia/samplecode/
DSamplePolyToPoly.cpp88 const int idst[], int count) { in doDraw() argument
94 dst[i].set(SkIntToScalar(idst[2*i+0]), SkIntToScalar(idst[2*i+1])); in doDraw()
/external/opencv/cxcore/src/
Dcxdxt.cpp958 int* idst = (int*)dst; in icvDFT_32fc() local
961 int t0 = idst[i*2+1] ^ 0x80000000; in icvDFT_32fc()
962 int t1 = idst[i*2+3] ^ 0x80000000; in icvDFT_32fc()
963 idst[i*2+1] = t0; idst[i*2+3] = t1; in icvDFT_32fc()
967 idst[2*i+1] ^= 0x80000000; in icvDFT_32fc()
/external/valgrind/main/VEX/priv/
Dhost_ppc_isel.c1487 HReg idst = newVRegI(env); in iselWordExpr_R_wrk() local
1499 addInstr(env, PPCInstr_Load(4, idst, zero_r1, mode64)); in iselWordExpr_R_wrk()
1503 addInstr(env, PPCInstr_Unary(Pun_EXTSW, idst, idst)); in iselWordExpr_R_wrk()
1509 return idst; in iselWordExpr_R_wrk()
1517 HReg idst = newVRegI(env); in iselWordExpr_R_wrk() local
1529 addInstr(env, PPCInstr_Load(8, idst, zero_r1, True/*mode64*/)); in iselWordExpr_R_wrk()
1534 return idst; in iselWordExpr_R_wrk()
/external/skia/src/core/
DSkCanvas.cpp1187 SkIRect idst; in quickReject() local
1188 dst.roundOut(&idst); in quickReject()
1189 return !SkIRect::Intersects(idst, fMCRec->fRasterClip->getBounds()); in quickReject()