Searched refs:cn (Results 1 - 25 of 152) sorted by relevance

1234567

/external/cn-cbor/src/
H A DCMakeLists.txt3 # compiling/installing sources for cn-cbor
6 cn-cbor.c
7 cn-create.c
8 cn-encoder.c
9 cn-error.c
10 cn-get.c
16 add_library ( cn-cbor SHARED ${cbor_srcs} )
17 target_include_directories ( cn-cbor PUBLIC ../include )
18 target_include_directories ( cn-cbor PRIVATE ../src )
20 install ( TARGETS cn
[all...]
/external/cn-cbor/test/
H A DCMakeLists.txt13 target_link_libraries ( ${name}_test PRIVATE cn-cbor )
23 add_executable (cn-test test.c )
24 target_include_directories ( cn-test PRIVATE ../include )
25 target_link_libraries ( cn-test PRIVATE cn-cbor )
31 COMMAND env MallocStackLogging=true ./cn-test >new.out
33 DEPENDS cn-test
/external/opencv/cv/src/
H A Dcvutils.cpp113 int top, int left, int cn, const uchar* )
118 if( srcstep == dststep && dst + dststep*top + left*cn == src &&
122 cn == 1 ? icvCopyReplicateBorder_8u_C1IR_p :
123 cn == 2 ? icvCopyReplicateBorder_16s_C1IR_p :
124 cn == 3 ? icvCopyReplicateBorder_8u_C3IR_p :
125 cn == 4 ? icvCopyReplicateBorder_32s_C1IR_p :
126 cn == 6 ? icvCopyReplicateBorder_16s_C3IR_p :
127 cn == 8 ? icvCopyReplicateBorder_16s_C4IR_p :
128 cn == 12 ? icvCopyReplicateBorder_32s_C3IR_p :
129 cn
111 icvCopyReplicateBorder_8u( const uchar* src, int srcstep, CvSize srcroi, uchar* dst, int dststep, CvSize dstroi, int top, int left, int cn, const uchar* ) argument
334 icvCopyConstBorder_8u( const uchar* src, int srcstep, CvSize srcroi, uchar* dst, int dststep, CvSize dstroi, int top, int left, int cn, const uchar* value ) argument
[all...]
H A Dcvsmooth.cpp196 int cn = CV_MAT_CN(state->get_src_type()); local
199 width = (width - 1)*cn; ksize *= cn;
201 for( k = 0; k < cn; k++, src++, dst++ )
204 for( i = 0; i < ksize; i += cn )
207 for( i = 0; i < width; i += cn )
210 dst[i+cn] = s;
222 int cn = CV_MAT_CN(state->get_src_type()); local
225 width = (width - 1)*cn; ksize *= cn;
250 int cn = CV_MAT_CN(state->get_src_type()); local
311 int cn = CV_MAT_CN(state->get_src_type()); local
387 int cn = CV_MAT_CN(state->get_src_type()); local
445 int cn = CV_MAT_CN(state->get_src_type()); local
649 icvMedianBlur_8u_CnR_O1( uchar* src, int src_step, uchar* dst, int dst_step, CvSize size, int kernel_size, int cn, int pad_left, int pad_right ) argument
[all...]
H A D_cvipp.h73 #define IPCV_MOMENTS( suffix, ipp_suffix, cn ) \
74 IPCVAPI_EX( CvStatus, icvMoments##suffix##_C##cn##R, \
75 "ippiMoments" #ipp_suffix "_C" #cn "R", CV_PLUGINS1(CV_PLUGIN_IPPI),\
169 #define ICV_PYRDOWN( flavor, cn ) \
170 IPCVAPI_EX( CvStatus, icvPyrDown_Gauss5x5_##flavor##_C##cn##R, \
171 "ippiPyrDown_Gauss5x5_" #flavor "_C" #cn "R", CV_PLUGINS1(CV_PLUGIN_IPPCV), \
175 #define ICV_PYRUP( flavor, cn ) \
176 IPCVAPI_EX( CvStatus, icvPyrUp_Gauss5x5_##flavor##_C##cn##R, \
177 "ippiPyrUp_Gauss5x5_" #flavor "_C" #cn "R", CV_PLUGINS1(CV_PLUGIN_IPPCV), \
198 #define IPCV_RESIZE( flavor, cn ) \
[all...]
/external/annotation-tools/asmx/test/conform/org/objectweb/asm/tree/
H A DClassNodeTest.java51 ClassNode cn = new ClassNode();
52 cr.accept(cn, false);
54 cn.accept(cw);
H A DClassNodeTest.class ... cr org.objectweb.asm.tree.ClassNode cn
/external/annotation-tools/asmx/test/conform/org/objectweb/asm/tree/analysis/
H A DBasicVerifierTest.java54 ClassNode cn = new ClassNode();
55 cr.accept(cn, false);
56 List methods = cn.methods;
61 a.analyze(cn.name, method);
H A DDataflowTest.java54 ClassNode cn = new ClassNode();
55 cr.accept(cn, false);
56 List methods = cn.methods;
61 a.analyze(cn.name, method);
H A DSimpleVerifierTest.java54 ClassNode cn = new ClassNode();
55 cr.accept(cn, false);
56 List methods = cn.methods;
61 a.analyze(cn.name, method);
H A DBasicVerifierTest.class ... cr org.objectweb.asm.tree.ClassNode cn java.util.List methods int i org. ...
H A DDataflowTest.class ... cr org.objectweb.asm.tree.ClassNode cn java.util.List methods int i org. ...
H A DSimpleVerifierTest.class ... cr org.objectweb.asm.tree.ClassNode cn java.util.List methods int i org. ...
/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Dcomfort_noise_unittest.cc25 ComfortNoise cn(fs, &db, &sync_buffer);
/external/opencv/cxcore/src/
H A Dcxlut.cpp103 #define ICV_DEF_LUT_FUNC_8U_CN( flavor, dsttype, cn ) \
104 CvStatus CV_STDCALL icvLUT_Transform8u_##flavor##_C##cn##R( \
109 size.width *= cn; \
114 ICV_LUT_CASE_C##cn( dsttype ) \
136 const dsttype* _lut, int cn ) \
138 int max_block_size = (1 << 10)*cn; \
142 size.width *= cn; \
148 for( k = 0; k < cn; k++ ) \
149 for( i = 0; i < size.width; i += cn ) \
150 dst[i+k] = _lut[src[i+k]*cn
222 int depth, cn, lut_cn; local
[all...]
H A Dcxmeansdv.cpp49 sqr_macro, len, cn ) \
50 for( ; x <= (len) - 4*(cn); x += 4*(cn))\
53 worktype t1 = src[x + (cn)]; \
59 t0 = src[x + 2*(cn)]; \
60 t1 = src[x + 3*(cn)]; \
67 for( ; x < (len); x += (cn) ) \
134 sqr_macro, len, cn ) \
140 t0 = src[x*(cn)]; pix++; \
147 t0 = src[(x+1)*(cn)]; pi
[all...]
H A Dcxsumpixels.cpp48 #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(sumtyp
888 int sdepth, ddepth, cn, op0 = op; local
[all...]
H A Dcxminmaxloc.cpp48 #define CV_MINMAXLOC_ENTRY( _toggle_, srctype, temptype, cn ) \
51 int x, loc = 0, width = size.width*(cn); \
67 #define ICV_DEF_MINMAXLOC_1D_CASE_COI( _toggle_, temptype, cn ) \
68 for( x = 0; x < width; x += (cn), loc++ ) \
108 CvSize size, int cn, int coi, \
113 CV_MINMAXLOC_ENTRY( _toggle_, srctype, temptype, cn ); \
117 ICV_DEF_MINMAXLOC_1D_CASE_COI( _toggle_, temptype, cn ); \
165 #define CV_MINMAXLOC_MASK_ENTRY( _toggle_, srctype, temptype, cn ) \
171 if( width*(cn) == step && width == maskStep ) \
184 min_val = (src)[x*(cn)]; \
298 int type, depth, cn, coi = 0; local
[all...]
/external/mesa3d/src/mesa/math/
H A Dm_eval.h75 * control net cn.
79 _math_horner_bezier_surf(GLfloat *cn, GLfloat *out, GLfloat u, GLfloat v,
94 * values in the control net cn.
98 _math_de_casteljau_surf(GLfloat *cn, GLfloat *out, GLfloat *du, GLfloat *dv,
/external/libopus/silk/fixed/
H A Dresidual_energy16_FIX.c46 opus_int cn[ MAX_MATRIX_SIZE ]; local
68 cn[ i ] = silk_LSHIFT( ( opus_int )c[ i ], Qxtra );
69 silk_assert( silk_abs(cn[i]) <= ( silk_int16_MAX + 1 ) ); /* Check that silk_SMLAWB can be used */
76 tmp = silk_SMLAWB( tmp, wXx[ i ], cn[ i ] );
86 tmp = silk_SMLAWB( tmp, pRow[ j ], cn[ j ] );
88 tmp = silk_SMLAWB( tmp, silk_RSHIFT( pRow[ i ], 1 ), cn[ i ] );
89 tmp2 = silk_SMLAWB( tmp2, tmp, cn[ i ] );
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-indic-machine.rl68 cn = c.ZWJ?.n?;
77 halant_or_matra_group = (final_halant_group | (h.ZWJ)? matra_group{0,4}) (Coeng (cn|V))?;
80 consonant_syllable = (Repha|CS)? (cn.halant_group){0,4} cn medial_group halant_or_matra_group syllable_tail;
81 vowel_syllable = reph? V.n? (ZWJ | (halant_group.cn){0,4} medial_group halant_or_matra_group syllable_tail);
82 standalone_cluster = ((Repha|CS)? PLACEHOLDER | reph? DOTTEDCIRCLE).n? (halant_group.cn){0,4} medial_group halant_or_matra_group syllable_tail;
84 broken_cluster = reph? n? (halant_group.cn){0,4} medial_group halant_or_matra_group syllable_tail;
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/declarations/
H A DHelper.java66 String cn = ((com.github.javaparser.ast.body.ClassOrInterfaceDeclaration) container).getName().getId();
68 return cn;
70 return b + "." + cn;
74 String cn = ((com.github.javaparser.ast.body.EnumDeclaration) container).getName().getId();
76 return cn;
78 return b + "." + cn;
/external/valgrind/coregrind/m_demangle/
H A Dsafe-ctype.c133 #define cn _sch_iscntrl macro
154 #define C (const unsigned short) ( cn) /* control character */
155 #define Z (const unsigned short) (nv |cn) /* NUL */
156 #define M (const unsigned short) (nv|sp |cn) /* cursor movement: \f \v */
157 #define V (const unsigned short) (vs|sp |cn) /* vertical space: \r \n */
158 #define T (const unsigned short) (nv|sp|bl|cn) /* tab */
/external/clang/test/OpenMP/
H A Dtarget_firstprivate_codegen.cpp54 double cn[5][n]; local
113 #pragma omp target firstprivate(aa,b,bn,c,cn,d)
119 cn[1][3] = 1.0;
181 // firstprivate(cn), 3 entries, 5, n, cn: (1) base_ptr = 5, ptr = 5, size = 8; (2) (1) base_ptr = n, ptr = n, size = 8; (3) base_ptr = &cn[0], ptr = &cn[0], size = 5*n*sizeof(double)
282 // firstprivate(cn)
H A Dtarget_private_codegen.cpp31 double cn[5][n]; local
66 #pragma omp target private(a, b, bn, c, cn, d)
72 cn[1][3] = 1.0;
115 // cn[1][3] = 1.0

Completed in 696 milliseconds

1234567