Searched defs:cn (Results 1 - 25 of 84) sorted by relevance

1234

/external/annotation-tools/asmx/test/conform/org/objectweb/asm/tree/
H A DClassNodeTest.class ... cr org.objectweb.asm.tree.ClassNode cn
/external/clang/test/OpenMP/
H A Dnvptx_target_codegen.cpp25 double cn[5][n]; local
266 cn[1][3] += 1.0;
H A Dtarget_codegen.cpp87 double cn[5][n]; local
296 cn[1][3] += 1.0;
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
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)
/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/annotation-tools/asmx/test/conform/org/objectweb/asm/tree/analysis/
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/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/mesa3d/src/mesa/math/
H A Dm_eval.c114 * control net cn.
118 _math_horner_bezier_surf(GLfloat * cn, GLfloat * out, GLfloat u, GLfloat v, argument
121 GLfloat *cp = cn + uorder * vorder * dim;
131 GLfloat *ucp = &cn[j * dim];
155 else /* uorder=1 -> cn defines a curve in v */
156 _math_horner_bezier_curve(cn, out, v, dim, vorder);
164 for (i = 0; i < uorder; i++, cn += uinc) {
165 /* For constant i all cn[i][j] (j=0..vorder) are located */
169 _math_horner_bezier_curve(cn, &cp[i * dim], v, dim, vorder);
175 else /* vorder=1 -> cn define
195 _math_de_casteljau_surf(GLfloat * cn, GLfloat * out, GLfloat * du, GLfloat * dv, GLfloat u, GLfloat v, GLuint dim, GLuint uorder, GLuint vorder) argument
[all...]
/external/opencv/cv/src/
H A Dcvsumpixels.cpp213 CvSize size, int cn ) \
218 memset( sum, 0, (size.width+1)*cn*sizeof(sum[0])); \
220 sum += sumstep + cn; \
224 memset( sqsum, 0, (size.width+1)*cn*sizeof(sqsum[0])); \
226 sqsum += sqsumstep + cn; \
229 size.width *= cn; \
236 for( x = -cn; x < 0; x++ ) \
240 sum[x] = cast_macro(src[x]) + sum[x - cn]; \
251 for( x = -cn; x < 0; x++ ) \
260 sumtype t = cast_macro(it) + sum[x-cn]; \
326 int depth, cn; local
[all...]
H A Dcvthresh.cpp311 int ithresh, imaxval, cn; local
323 cn = CV_MAT_CN(src->type);
324 if( cn > 1 )
H A Dcvsamplers.cpp548 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
837 cn = CV_MAT_CN( src->type );
839 if( (cn != 1 && cn !
[all...]
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 Dcvderiv.cpp496 int cn = CV_MAT_CN(state->get_src_type()); \
497 int ksize2 = ksize/2, ksize2n = ksize2*cn; \
503 width *= cn; \
509 dsttype s1 = (dsttype)(s[i-cn] - s0*2 + s[i+cn]); \
515 dsttype s0 = (dsttype)(s[i-cn] + s[i]*2 + s[i+cn]); \
516 dsttype s1 = (dsttype)(s[i-cn] - s[i]*2 + s[i+cn]); \
522 dsttype s0 = (dsttype)(s[i-2*cn]
554 int cn = CV_MAT_CN(state->get_src_type()); local
696 int cn = CV_MAT_CN(state->get_src_type()); local
[all...]
H A Dcvfloodfill.cpp97 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;
1028 int i, type, depth, cn, is_simple, idx; local
[all...]
/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 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...]
H A Dcxnorm.cpp77 _update_op_, worktype, len, cn ) \
81 worktype t0 = (src)[x*(cn)]; \
119 #define ICV_NORM_DIFF_COI_CASE( _op_, _update_op_, worktype, len, cn ) \
122 worktype t0 = (src1)[x*(cn)] - (src2)[x*(cn)]; \
220 CvSize size, int cn, int coi, double* _norm ) \
237 worktype, limit, cn ); \
257 CvSize size, int cn, int coi, double* _norm ) \
267 worktype, size.width, cn ); \
365 int cn, in
977 int type, depth, cn, is_relative; local
[all...]
/external/opencv/otherlibs/highgui/
H A Dloadsave.cpp401 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 ));
/external/annotation-tools/asmx/test/conform/org/objectweb/asm/
H A DAnnotationTest.class ... cr org.objectweb.asm.tree.ClassNode cn
H A DExtendedAnnotationTest.class ... cr org.objectweb.asm.tree.ClassNode cn public java.lang.String nameExpected (java.lang ...
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
H A DRFC4519Style.java18 public static final ASN1ObjectIdentifier cn = new ASN1ObjectIdentifier("2.5.4.3").intern(); field in class:RFC4519Style
75 DefaultSymbols.put(cn, "cn");
119 DefaultLookUp.put("cn", cn);
/external/icu/icu4c/source/common/
H A Drbbitblb.cpp116 RBBINode *cn = new RBBINode(RBBINode::opCat); local
118 if (cn == NULL) {
122 cn->fLeftChild = fTree;
123 fTree->fParent = cn;
124 cn->fRightChild = new RBBINode(RBBINode::endMark);
126 if (cn->fRightChild == NULL) {
128 delete cn;
131 cn->fRightChild->fParent = cn;
132 fTree = cn;
[all...]

Completed in 687 milliseconds

1234