/external/jdiff/src/jdiff/ |
HTMLIndexes.java | 517 String cn = cls.name_; local 519 cn = cls.pkgName_; 521 h_.writeText("<A HREF=\"pkg_" + cls.pkgName_ + h_.reportFileExt + "#" + cls.name_ + "\" class=\"hiddenlink\" target=\"rightframe\"><b><i>" + cn + "</i></b></A><br>"); 523 h_.writeText("<A HREF=\"pkg_" + cls.pkgName_ + h_.reportFileExt + "#" + cls.name_ + "\" class=\"hiddenlink\" target=\"rightframe\"><b>" + cn + "</b></A><br>"); 525 String cn = cls.name_; local 527 cn = cls.pkgName_; 529 h_.writeText("<A HREF=\"" + classRef + h_.reportFileExt + "\" class=\"hiddenlink\" target=\"rightframe\"><i>" + cn + "</i></A><br>"); 531 h_.writeText("<A HREF=\"" + classRef + h_.reportFileExt + "\" class=\"hiddenlink\" target=\"rightframe\">" + cn + "</A><br>"); [all...] |
/external/opencv/cv/src/ |
cvlkpyramid.cpp | 1159 int cn, equal_sizes; local [all...] |
/external/opencv/cxcore/src/ |
cxarray.cpp | 1704 int cn = CV_MAT_CN( type ); local 1783 int cn = CV_MAT_CN( flags ); local 2937 int total_width, new_rows, cn; local [all...] |
/external/opencv3/modules/core/src/ |
mathfuncs.cpp | 66 int type = _src1.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); local 89 dstarg = ocl::KernelArg::WriteOnly(dst, cn, kercn); 96 size_t globalsize[] = { src1.cols * cn / kercn, (src1.rows + rowsPerWI - 1) / rowsPerWI }; 172 int type = src1.type(), depth = src1.depth(), cn = src1.channels(); local 185 int len = (int)it.size*cn; 207 int type = src1.type(), depth = src1.depth(), cn = src1.channels(); local 222 int j, k, total = (int)(it.size*cn), blockSize = total; 227 blockSize = std::min(blockSize, ((BLOCK_SIZE+cn-1)/cn)*cn); 303 int type = _src1.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type), local 346 int type = X.type(), depth = X.depth(), cn = X.channels(); local 589 int type = _angle.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type), local 624 int type = src2.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); local 789 int type = _src.type(), depth = _src.depth(), cn = _src.channels(); local 856 int type = _src.type(), depth = _src.depth(), cn = _src.channels(); local 1294 int type = _src.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type), local [all...] |
rand.cpp | 410 randnScale_( const float* src, T* dst, int len, int cn, const PT* mean, const PT* stddev, bool stdmtx ) 415 if( cn == 1 ) 423 for( i = 0; i < len; i++, src += cn, dst += cn ) 424 for( k = 0; k < cn; k++ ) 430 for( i = 0; i < len; i++, src += cn, dst += cn ) 432 for( j = 0; j < cn; j++ ) 435 for( k = 0; k < cn; k++ ) 436 s += src[k]*stddev[j*cn + k] 485 int depth = mat.depth(), cn = mat.channels(); local [all...] |
stat.cpp | 81 int operator () (const schar * src0, const uchar * mask, int * dst, int len, int cn) const 83 if (mask || (cn != 1 && cn != 2 && cn != 4) || !USE_SSE2) 113 for (int i = 0; i < 4; i += cn) 114 for (int j = 0; j < cn; ++j) 117 return x / cn; 124 int operator () (const int * src0, const uchar * mask, double * dst, int len, int cn) const 126 if (mask || (cn != 1 && cn != 2 && cn != 4) || !USE_SSE2 1036 int cn = m.channels(); local 1057 int type = _src.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type), local 1153 int k, cn = src.channels(), depth = src.depth(); local [all...] |
/external/opencv3/modules/core/test/ocl/ |
test_arithm.cpp | 57 int cn; local 68 cn = GET_PARAM(2); 75 const int src_type = CV_MAKE_TYPE(src_depth, cn); 76 const int lut_type = CV_MAKE_TYPE(lut_depth, same_cn ? cn : 1); 77 const int dst_type = CV_MAKE_TYPE(lut_depth, cn); 119 int cn; local 133 cn = GET_PARAM(1); 139 const int type = CV_MAKE_TYPE(depth, cn); 585 const int type = CV_MAKE_TYPE(depth, cn); 902 const int type = CV_MAKE_TYPE(depth, cn); 1481 int cn; local 1563 int cn; local 1638 int cn; local 1714 int sdepth, ddepth, cn, dim, dtype; local [all...] |
/external/opencv3/modules/core/test/ |
test_io.cpp | 115 int cn = cvtest::randInt(rng) % 4 + 1; local 116 Mat test_mat(cvtest::randInt(rng)%30+1, cvtest::randInt(rng)%30+1, CV_MAKETYPE(depth, cn)); 146 cn = cvtest::randInt(rng) % 4 + 1; 152 MatND test_mat_nd(3, sz, CV_MAKETYPE(depth, cn));
|
test_math.cpp | 57 int cn = cvtest::randInt(rng) % 4 + 1, type = CV_MAKETYPE(depth, cn); local 102 int cn = cvtest::randInt(rng) % 4 + 1; local 119 int type = CV_MAKETYPE(depth, cn); 397 int cn = cvtest::randInt(rng) % max_cn + 1; local 411 int type = !flag ? CV_MAKETYPE(depth, cn) : CV_64FC1; 522 int cn = cvtest::randInt(rng) & 1 ? 3 : 1, type = CV_MAKETYPE(depth, cn); local 527 if( cn == 3 ) 930 int depth, cn, mattype local 961 int cn, depth, mat_depth; local [all...] |
/external/opencv3/modules/imgproc/src/ |
corner.cpp | 609 int type = src.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); local 614 (borderTypeNI == BORDER_CONSTANT || borderTypeNI == BORDER_REPLICATE) && cn == 1 && (!src.isSubmatrix() || isolated) ) 628 if (ippiHarrisCornerGetBufferSize(roisize, masksize, blockSize, datatype, cn, &bufsize) >= 0)
|
moments.cpp | 562 int type = _src.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); local 577 if( cn > 1 )
|
pyramids.cpp | 858 int cn = _src.channels(); local 982 int cn = _src.channels(); local 1068 int type = _src.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); local [all...] |
templmatch.cpp | 59 static bool extractFirstChannel_32F(InputArray _image, OutputArray _result, int cn) 66 ocl::Kernel k("extractFirstChannel", ocl::imgproc::match_template_oclsrc, format("-D FIRST_CHANNEL -D T1=%s -D cn=%d -D PIX_PER_WI_Y=%d", 67 ocl::typeToStr(depth), cn, pxPerWIy)); 81 int type = _src.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); local 82 int wdepth = CV_32F, wtype = CV_MAKE_TYPE(wdepth, cn); 92 format("-D CALC_SUM -D T=%s -D T1=%s -D WT=%s -D cn=%d -D convertToWT=%s -D WGS=%d -D WGS2_ALIGNED=%d", 93 ocl::typeToStr(type), ocl::typeToStr(depth), ocl::typeToStr(wtype), cn, 94 ocl::convertTypeStr(depth, wdepth, cn, cvt), 256 int type = _image.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); local 257 int wdepth = CV_32F, wtype = CV_MAKE_TYPE(wdepth, cn); 320 int type = _image.type(), cn = CV_MAT_CN(type); local 349 int type = _image.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); local 378 int type = _image.type(), cn = CV_MAT_CN(type); local 409 int type = _image.type(), cn = CV_MAT_CN(type); local 444 int type = image_sums.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); local 479 int type = image_sums.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); local 544 int cn = _img.channels(); local 644 int depth = img.depth(), cn = img.channels(); local 820 int type = _img.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); local 908 int type = _img.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); local [all...] |
/external/opencv3/modules/python/src2/ |
cv2.cpp | 168 int cn = CV_MAT_CN(type); local 178 if( cn > 1 ) 179 _sizes[dims++] = cn; [all...] |
/external/opencv3/modules/superres/src/ |
btv_l1.cpp | 247 int type = _src.type(), cn = CV_MAT_CN(type); local 249 format("-D cn=%d", cn)); 271 int cn = _src.channels(); local 272 CV_Assert( cn == 1 || cn == 3 || cn == 4 ); 283 const func_t func = funcs[cn]; 314 int cn = src1.channels(); local 317 ocl::KernelArg::WriteOnly(dst, cn)); 423 int cn = _src.channels(); local [all...] |
/external/opencv3/modules/ts/src/ |
ts_perf.cpp | 300 double Regression::getElem(cv::Mat& m, int y, int x, int cn) 304 case CV_8U: return *(m.ptr<unsigned char>(y, x) + cn); 305 case CV_8S: return *(m.ptr<signed char>(y, x) + cn); 306 case CV_16U: return *(m.ptr<unsigned short>(y, x) + cn); 307 case CV_16S: return *(m.ptr<signed short>(y, x) + cn); 308 case CV_32S: return *(m.ptr<signed int>(y, x) + cn); 309 case CV_32F: return *(m.ptr<float>(y, x) + cn); 310 case CV_64F: return *(m.ptr<double>(y, x) + cn); 326 int x, y, cn; local 329 cn = regRNG.uniform(0, m.channels()) [all...] |
/external/pdfium/third_party/libopenjpeg20/ |
jp2.c | 742 l_value = jp2->color.jp2_cdef->info[i].cn; 848 if (info[i].cn >= nr_channels) { 849 opj_event_msg(p_manager, EVT_ERROR, "Invalid component index %d (>= %d).\n", info[i].cn, nr_channels); 865 if ((OPJ_UINT32)info[i].cn == (nr_channels - 1U)) { 1222 OPJ_UINT16 i, n, cn, asoc, acn; local [all...] |
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
voAMRWBEnc.c | 189 Word16 cn[L_SUBFR]; /* Target vector in residual domain */ local 778 * Find approx. target in residual domain "cn[]" for inovation search. * 780 /* first half: xn[] --> cn[] */ 789 Residu_opt(p_Aq,code + M, cn, L_SUBFR / 2); 791 Residu(p_Aq,code + M, cn, L_SUBFR / 2); 794 /* second half: res[] --> cn[] (approximated and faster) */ 795 Copy(&exc[i_subfr + (L_SUBFR / 2)], cn + (L_SUBFR / 2), L_SUBFR / 2); [all...] |
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
DatabaseHelper.java | 2205 ComponentName cn = new ComponentName(pkg, cls); local [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/ |
RecentsTaskLoader.java | 596 ComponentName cn = taskKey.getComponent(); local 597 ActivityInfo activityInfo = mActivityInfoCache.get(cn); 599 activityInfo = ssp.getActivityInfo(cn, taskKey.userId); 600 if (cn == null || activityInfo == null) { 601 Log.e(TAG, "Unexpected null component name or activity info: " + cn + ", " + 605 mActivityInfoCache.put(cn, activityInfo); 625 for (ComponentName cn : activityInfoCache.keySet()) { 626 if (cn.getPackageName().equals(event.packageName)) { 628 Log.d(TAG, "Removing activity info from cache: " + cn); 630 mActivityInfoCache.remove(cn); [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/ |
TaskViewHeader.java | 636 ComponentName cn = mTask.key.getComponent(); local 638 ActivityInfo activityInfo = ssp.getActivityInfo(cn, userId);
|
/frameworks/base/services/core/java/com/android/server/firewall/ |
IntentFirewall.java | 187 ComponentName cn = intent.getComponent(); local 189 if (cn != null) { 190 shortComponent = cn.flattenToShortString();
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
AutoInstallsLayout.java | 346 ComponentName cn; local 348 cn = new ComponentName(packageName, className); 349 info = mPackageManager.getActivityInfo(cn, 0); 353 cn = new ComponentName(packages[0], className); 354 info = mPackageManager.getActivityInfo(cn, 0); 358 .setComponent(cn) 509 protected long verifyAndInsert(ComponentName cn, Bundle extras) { 510 mValues.put(Favorites.APPWIDGET_PROVIDER, cn.flattenToString());
|
DeviceProfile.java | 151 ComponentName cn = new ComponentName(context.getPackageName(), local 153 defaultWidgetPadding = AppWidgetHostView.getDefaultPaddingForWidget(context, cn, null);
|
IconCache.java | 304 String cn = c.getString(indexComponent); local 305 ComponentName component = ComponentName.unflattenFromString(cn); 614 ComponentName cn = new ComponentName(packageName, packageName + EMPTY_CLASS_NAME); local 615 return new ComponentKey(cn, user); [all...] |