Searched refs:nch (Results 1 - 12 of 12) 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/jhead/
H A Djpgfile.c51 int nch; local
54 nch = 0;
64 Comment[nch++] = (char)ch;
66 Comment[nch++] = '?';
70 Comment[nch] = '\0'; // Null terminate
/external/qemu/distrib/sdl-1.2.15/src/audio/nas/
H A DSDL_nasaudio.c334 find_device(_THIS, int nch) argument
341 AuDeviceNumTracks(AuServerDevice(this->hidden->aud, i)) == nch) {
/external/webrtc/src/modules/audio_processing/aec/
H A Daec_rdft.c196 int j, nch; local
200 nch = nc >> 1;
201 delta = atanf(1.0f) / nch;
202 c[0] = cosf(delta * nch);
203 c[nch] = 0.5f * c[0];
204 for (j = 1; j < nch; j++) {
/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/src/modules/audio_processing/utility/
H A Dfft4g.c673 int j, nch; local
678 nch = nc >> 1;
679 delta = (float)atan(1.0f) / nch;
680 c[0] = (float)cos(delta * nch);
681 c[nch] = 0.5f * c[0];
682 for (j = 1; j < nch; j++) {
/external/llvm/lib/Support/
H A Dregcomp.c92 static int nch(struct parse *, cset *);
701 if (nch(p, cs) == 1) { /* optimize singleton sets */
1155 - nch - number of characters in a set
1158 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 942 milliseconds