Home | History | Annotate | Download | only in src

Lines Matching refs:uchar

47 double CvMAT::get( const uchar* ptr, int type, int coi )
55 t = ((uchar*)ptr)[coi];
77 void CvMAT::set( uchar* ptr, int type, int coi, double d )
86 ((uchar*)ptr)[coi] = CV_CAST_8U(i);
110 void CvMAT::set( uchar* ptr, int type, int coi, int i )
117 ((uchar*)ptr)[coi] = CV_CAST_8U(i);
138 void CvMAT::set( uchar* ptr, int type, double d )
146 ((uchar*)ptr)[0] = CV_CAST_8U(i);
148 while( --i ) ((uchar*)ptr)[i] = 0;
182 void CvMAT::set( uchar* ptr, int type, int i )
189 ((uchar*)ptr)[0] = CV_CAST_8U(i);
191 while( --i ) ((uchar*)ptr)[i] = 0;
842 fprintf( out, fmt, ((uchar*)(data.ptr + i*step))[j] );