HomeSort by relevance Sort by last modified time
    Searched defs:cn (Results 51 - 75 of 152) sorted by null

1 23 4 5 6 7

  /external/opencv/cv/src/
cvfloodfill.cpp 97 CvFFillSegment* buffer, int buffer_size, int cn )
110 if( cn == 1 )
125 assert( cn == 3 );
174 if( cn == 1 )
229 CvFFillSegment* buffer, int buffer_size, int cn )
242 if( cn == 1 )
257 assert( cn == 3 );
306 if( cn == 1 )
376 CvFFillSegment* buffer, int buffer_size, int cn )
399 for( i = 0; i < cn; i++
1028 int i, type, depth, cn, is_simple, idx; local
    [all...]
cvmoments.cpp 254 ( const srctype* img, int step, CvSize size, int cn, int coi, double *moments ) \
275 for( x = 0; x < size.width - 3; x += 4, ptr += cn*4 ) \
277 temptype p0 = __op__(ptr[0]), p1 = __op__(ptr[cn]), \
278 p2 = __op__(ptr[2*cn]), p3 = __op__(ptr[3*cn]); \
300 for( ; x < size.width; sx += 2 * x + 1, x++, ptr += cn ) \
378 int type = 0, depth, cn, pix_size; local
429 cn = CV_MAT_CN( type );
433 if( cn > 1 && coi == 0 )
492 mat->step, cur_tile_size, cn, coi, tiles + k*10 ))
    [all...]
cvsegmentation.cpp 330 const int cn = 3; local
415 dptr = dst_pyramid[level+1]->data.ptr + dstep + cn;
424 for( j = 1; j < size1.width-1; j++, dptr += cn )
cvtemplmatch.cpp 63 cn, templ_cn, corr_cn, buf_size = 0, local
92 cn = CV_MAT_CN(img->type);
142 if( cn > 1 && depth != max_depth )
146 if( (corr_cn > 1 || cn > 1) && corr_depth != max_depth )
216 for( i = 0; i < cn; i++ )
230 if( cn > 1 )
334 int depth, cn; local
382 cn = CV_MAT_CN(img->type);
384 if( is_normed && cn == 1 && templ->rows > 8 && templ->cols > 8 &&
426 CV_MAKETYPE( CV_64F, cn )));
    [all...]
cvundistort.cpp 48 const float* dist_coeffs, int cn )
76 const uchar* ptr = src + iy*srcstep + ix*cn;
78 for( i = 0; i < cn; i++ )
81 t0 += _x*(CV_8TO32F(ptr[i+cn]) - t0);
82 t1 += _x*(CV_8TO32F(ptr[i + srcstep + cn]) - t1);
83 dst[u*cn + i] = (uchar)cvRound(t0 + _y*(t1 - t0));
88 for( i = 0; i < cn; i++ )
89 dst[u*cn + i] = 0;
122 int cn, src_step, dst_step; local
167 cn = CV_MAT_CN(src->type)
    [all...]
cvlkpyramid.cpp 1159 int cn, equal_sizes; local
    [all...]
  /external/opencv/cxcore/src/
cxarithm.cpp 284 int y, dy, type, depth, cn, cont_flag = 0; local
376 cn = CV_MAT_CN(type);
382 int len = size.width*size.height*cn;
503 cvSize( tsize.width*cn, tsize.height ), 0 ) :
507 cvSize( tsize.width*cn, tsize.height )));
535 int sctype, y, dy, type, depth, cn, coi = 0, cont_flag = 0; local
618 cn = CV_MAT_CN(type);
729 cvSize( tsize.width*cn, tsize.height ), buf ));
759 int y, dy, type, depth, cn, cont_flag = 0; local
1007 int sctype, y, dy, type, depth, cn, coi = 0, cont_flag = 0; local
    [all...]
cxconvert.cpp 126 #define ICV_DEF_PX2PL_COI( arrtype, len, cn ) \
130 for( j = 0; j <= (len) - 4; j += 4, (src) += 4*(cn))\
133 arrtype t1 = (src)[(cn)]; \
138 t0 = (src)[(cn)*2]; \
139 t1 = (src)[(cn)*3]; \
145 for( ; j < (len); j++, (src) += (cn)) \
153 cn, entry_macro ) \
154 IPCVAPI_IMPL( CvStatus, icvCopy_##flavor##_C##cn##P##cn##R,\
165 ICV_DEF_PX2PL_C##cn( arrtype, size.width );
447 int type, cn, coi = 0; local
557 int type, cn, coi = 0; local
800 int cn; local
847 int cn = from_to[i*2 + k]; local
    [all...]
cxsumpixels.cpp 48 #define ICV_SUM_COI_CASE( __op__, len, cn ) \
49 for( ; x <= (len) - 4*(cn); x += 4*(cn) ) \
50 s0 += __op__(src[x]) + __op__(src[x+(cn)]) + \
51 __op__(src[x+(cn)*2]) + __op__(src[x+(cn)*3]);\
53 for( ; x < (len); x += (cn) ) \
231 #define ICV_DEF_SUM_NOHINT_BLOCK_FUNC_2D( name, flavor, cn, \
233 IPCVAPI_IMPL(CvStatus, icv##name##_##flavor##_C##cn##R,( \
237 ICV_SUM_ENTRY_BLOCK_C##cn(sumtype,worktype,(block_size)*(cn));
888 int sdepth, ddepth, cn, op0 = op; local
    [all...]
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/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
jp2.h 97 OPJ_UINT16 cn, typ, asoc; member in struct:opj_jp2_cdef_info
jp2.c 773 if (info[i].cn >= image->numcomps) {
774 opj_event_msg(p_manager, EVT_ERROR, "Invalid component index %d (>= %d).\n", info[i].cn, image->numcomps);
1089 OPJ_UINT16 i, n, cn, asoc, acn; local
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
IntentTest.java 293 ComponentName cn = new ComponentName("com.foobar.app", "activity"); local
294 intentB.setComponent(cn);
309 assertSame(cn, intentA.getComponent());
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
SystemServicesProxy.java 153 ComponentName cn = new ComponentName("com.android.test" + packageIndex, local
161 rti.baseIntent.setComponent(cn);
306 * @param cn The component name of the activity.
309 public ActivityInfo getActivityInfo(ComponentName cn, int userId) {
314 return mIpm.getActivityInfo(cn, PackageManager.GET_META_DATA, userId);
324 * @param cn The component name of the activity.
326 public ActivityInfo getActivityInfo(ComponentName cn) {
331 return mPm.getActivityInfo(cn, PackageManager.GET_META_DATA);
  /packages/apps/Launcher3/src/com/android/launcher3/
IconCache.java 402 ComponentName cn = getPackageComponent(packageName); local
403 CacheKey cacheKey = new CacheKey(cn, user);
419 entry.icon = getPreloadedIcon(cn, user);
Utilities.java 393 ComponentName cn = intent.getComponent(); local
395 if (cn == null) {
401 packageName = cn.getPackageName();
  /frameworks/base/cmds/pm/src/com/android/commands/pm/
Pm.java 528 ComponentName cn = new ComponentName(ii.packageName, ii.name); local
529 System.out.print(cn.flattenToShortString());
1439 ComponentName cn = ComponentName.unflattenFromString(pkg); local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaCallTracker.java 595 if (Phone.DEBUG_PHONE) log("adding fgCall cn " + n + " to droppedDuringPoll");
596 CdmaConnection cn = (CdmaConnection)mForegroundCall.mConnections.get(n); local
597 mDroppedDuringPoll.add(cn);
603 if (Phone.DEBUG_PHONE) log("adding rgCall cn " + n + " to droppedDuringPoll");
604 CdmaConnection cn = (CdmaConnection)mRingingCall.mConnections.get(n); local
605 mDroppedDuringPoll.add(cn);
876 CdmaConnection cn = (CdmaConnection)call.mConnections.get(i); local
890 CdmaConnection cn = (CdmaConnection)call.mConnections.get(i); local
903 CdmaConnection cn = (CdmaConnection)call.mConnections.get(i); local
    [all...]
  /development/samples/Home/src/com/example/android/home/
Home.java 303 final ComponentName cn = new ComponentName(favoritePackage, favoriteClass); local
304 intent.setComponent(cn);
  /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...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
voAMRWBEnc.c 189 Word16 cn[L_SUBFR]; /* Target vector in residual domain */ local
776 * Find approx. target in residual domain "cn[]" for inovation search. *
778 /* first half: xn[] --> cn[] */
787 Residu_opt(p_Aq,code + M, cn, L_SUBFR / 2);
789 Residu(p_Aq,code + M, cn, L_SUBFR / 2);
792 /* second half: res[] --> cn[] (approximated and faster) */
793 Copy(&exc[i_subfr + (L_SUBFR / 2)], cn + (L_SUBFR / 2), L_SUBFR / 2);
    [all...]
  /frameworks/base/core/java/android/app/
WallpaperManager.java 1122 final ComponentName cn = ComponentName.unflattenFromString(flat); local
1130 final ComponentName cn = ComponentName.unflattenFromString(flat); local
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DatabaseHelper.java 2078 ComponentName cn = new ComponentName(pkg, cls); local
    [all...]
  /frameworks/base/services/backup/java/com/android/server/backup/
PackageManagerBackupAgent.java 393 String cn = inputBufferStream.readUTF(); local
394 mRestoredHome = ComponentName.unflattenFromString(cn);
  /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();

Completed in 1286 milliseconds

1 23 4 5 6 7