Searched refs:nch (Results 1 - 10 of 10) sorted by relevance

/external/opencv/cv/include/
H A Dcvtypes.h109 #define CV_INIT_3X3_DELTAS( deltas, step, nch ) \
110 ((deltas)[0] = (nch), (deltas)[1] = -(step) + (nch), \
111 (deltas)[2] = -(step), (deltas)[3] = -(step) - (nch), \
112 (deltas)[4] = -(nch), (deltas)[5] = (step) - (nch), \
113 (deltas)[6] = (step), (deltas)[7] = (step) + (nch))
/external/opencv/otherlibs/highgui/
H A Dgrfmt_bmp.cpp197 int nch = color ? 3 : 1; local
198 int width3 = m_width*nch;
272 uchar* end = data + len*nch;
282 while( (data += nch) < end );
286 if( data + code*nch > line_end ) goto decode_rle4_bad;
300 x_shift3 = m_strm.GetByte()*nch;
353 len *= nch;
372 int code3 = code*nch;
393 x_shift3 = m_strm.GetByte()*nch;
H A Dgrfmt_sunras.cpp183 int nch = color ? 3 : 1; local
184 int width3 = m_width*nch;
309 while( (max_count -= nch) > 0 );
319 data += len1*nch;
324 len = (len + 1)*nch;
H A Dgrfmt_pxm.cpp206 int nch = m_iscolor ? 3 : 1; local
207 int width3 = m_width*nch;
H A Dgrfmt_jpeg.cpp1117 int nch = color ? 3 : 1; local
1178 data1 = data + x1*nch;
/external/opencv/cv/src/
H A Dcvcontours.cpp44 #define CV_INIT_3X3_DELTAS( deltas, step, nch ) \
45 ((deltas)[0] = (nch), (deltas)[1] = -(step) + (nch), \
46 (deltas)[2] = -(step), (deltas)[3] = -(step) - (nch), \
47 (deltas)[4] = -(nch), (deltas)[5] = (step) - (nch), \
48 (deltas)[6] = (step), (deltas)[7] = (step) + (nch))
/external/webrtc/webrtc/common_audio/
H A Dfft4g.c679 size_t j, nch; local
684 nch = nc >> 1;
685 delta = atanf(1.0f) / nch;
686 c[0] = (float)cos(delta * nch);
687 c[nch] = 0.5f * c[0];
688 for (j = 1; j < nch; j++) {
/external/libedit/src/
H A Dtty.c61 Int nch, och; /* Internal and termio rep of chars */ member in struct:ttymap_t
920 for (tp = tty_map; tp->nch != (Int)-1; tp++) {
921 new[0] = t_n[tp->nch];
/external/llvm/lib/Support/
H A Dregcomp.c100 static int nch(struct parse *, cset *);
737 if (nch(p, cs) == 1) { /* optimize singleton sets */
1193 - nch - number of characters in a set
1196 nch(struct parse *p, cset *cs) function
/external/opencv/cxcore/src/
H A Dcxdrawing.cpp308 int nch = CV_MAT_CN( img->type ); local
313 assert( img && (nch == 1 || nch == 3) && CV_MAT_DEPTH(img->type) == CV_8U );
319 ptr += img->step*2 + 2*nch;
402 if( nch == 3 )
576 //assert( img && (nch == 1 || nch == 3) && CV_MAT_DEPTH(img->type) == CV_8U );

Completed in 361 milliseconds