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

1 23 4 5 6 7

  /external/opencv/cxcore/src/
cxmatmul.cpp 1611 int i, j, type, cn, dst_cn; 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...]
cxcopy.cpp 151 #define ICV_DEF_COPY_MASK_2D( name, type, cn ) \
162 ICV_DEF_COPY_MASK_C##cn##_CASE( type ) \
204 #define ICV_DEF_SET_MASK_2D( name, type, cn ) \
211 CV_UN_ENTRY_C##cn( type ); \
218 ICV_DEF_SET_MASK_C##cn##_CASE( type ) \
805 #define ICV_DEF_FLIP_HZ_FUNC( flavor, arrtype, cn ) \
815 ICV_DEF_FLIP_HZ_CASE_C##cn( arrtype ) \
    [all...]
  /external/srec/srec/include/
srec_context.h 219 #define FST_GetNodeInfo(cn,nd) (cn->FSMnode_info_list[nd])
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
c1035pf.cpp 119 pShift_reg = pointer to Old CN generator shift register state (Word32)
123 pShift_reg -> Updated CN generator shift register state
225 pSeed = pointer to the Old CN generator shift register state (Word32)
228 param[] = array to hold CN generated paramters (Word16)
232 param[] = CN generated parameters (Word16)
233 pSeed = Updated CN generator shift register state (Word16)
537 pSeed = pointer to the Old CN generator shift register state (Word32)
540 param[] = array to hold CN generated paramters (Word16)
544 param[] = CN generated parameters (Word16)
545 pSeed = Updated CN generator shift register state (Word16
    [all...]
c8_31pf.cpp 666 cn Array of type Word16 -- residual after long term prediction
749 Word16 cn[], /* i : residual after long term prediction */
782 cn,
  /frameworks/base/test-runner/src/android/test/
ActivityUnitTestCase.java 135 ComponentName cn = new ComponentName(mActivityClass.getPackage().getName(), local
137 intent.setComponent(cn);
  /external/opencv/cv/src/
cvpyramids.cpp 941 int type, depth, cn; local
1034 int type, depth, cn; local
    [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...]
cvsamplers.cpp 548 int cn, src_step, dst_step; local
563 cn = CV_MAT_CN( src->type );
565 if( (cn != 1 && cn != 3) || !CV_ARE_CNS_EQ( src, dst ))
578 func = (CvGetRectSubPixFunc)(gr_tab[cn != 1].fn_2d[CV_MAT_DEPTH(src->type)]);
585 func = (CvGetRectSubPixFunc)(gr_tab[cn != 1].fn_2d[1]);
819 int k, cn; local
    [all...]
  /external/opencv/otherlibs/highgui/
loadsave.cpp 401 int cn; local
433 cn = iscolor ? 3 : 1;
442 CV_CALL( matrix = cvCreateMat( size.height, size.width, CV_MAKETYPE(type, cn) ));
451 CV_CALL( image = cvCreateImage( size, type, cn ));