Searched refs:nch (Results 1 - 10 of 10) sorted by relevance
/external/opencv/cv/include/ |
H A D | cvtypes.h | 109 #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 D | grfmt_bmp.cpp | 197 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 D | grfmt_sunras.cpp | 183 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 D | grfmt_pxm.cpp | 206 int nch = m_iscolor ? 3 : 1; local 207 int width3 = m_width*nch;
|
H A D | grfmt_jpeg.cpp | 1117 int nch = color ? 3 : 1; local 1178 data1 = data + x1*nch;
|
/external/opencv/cv/src/ |
H A D | cvcontours.cpp | 44 #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 D | fft4g.c | 679 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 D | tty.c | 61 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 D | regcomp.c | 100 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 D | cxdrawing.cpp | 308 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