Searched refs:m_strm (Results 1 - 13 of 13) sorted by relevance

/external/opencv/otherlibs/highgui/
H A Dgrfmt_bmp.cpp87 m_strm.Close();
97 if( !m_strm.Open( m_filename )) return false;
99 if( setjmp( m_strm.JmpBuf()) == 0 )
101 m_strm.Skip( 10 );
102 m_offset = m_strm.GetDWord();
104 int size = m_strm.GetDWord();
108 m_width = m_strm.GetDWord();
109 m_height = m_strm.GetDWord();
110 m_bpp = m_strm.GetDWord() >> 16;
111 m_rle_code = (BmpCompression)m_strm
[all...]
H A Dgrfmt_sunras.cpp89 m_strm.Close();
98 if( !m_strm.Open( m_filename )) return false;
100 if( setjmp( m_strm.JmpBuf()) == 0 )
102 m_strm.Skip( 4 );
103 m_width = m_strm.GetDWord();
104 m_height = m_strm.GetDWord();
105 m_bpp = m_strm.GetDWord();
108 m_strm.Skip( 4 );
109 m_type = (SunRasType)m_strm.GetDWord();
110 m_maptype = (SunRasMapType)m_strm
[all...]
H A Dgrfmt_tiff.cpp265 m_strm.Close();
278 int val = m_strm.GetWord();
287 int val = m_strm.GetDWord();
319 int pos = m_strm.GetPos();
320 m_strm.SetPos( offset );
326 array[i] = ((RMByteStream&)m_strm).GetDWord();
329 array[i] = ((RLByteStream&)m_strm).GetDWord();
335 array[i] = ((RMByteStream&)m_strm).GetWord();
338 array[i] = ((RLByteStream&)m_strm).GetWord();
342 array[i] = m_strm
[all...]
H A Dgrfmt_pxm.cpp137 m_strm.Close();
146 if( !m_strm.Open( m_filename )) return false;
148 if( setjmp( m_strm.JmpBuf()) == 0 )
150 int code = m_strm.GetByte();
154 code = m_strm.GetByte();
166 m_width = ReadNumber( m_strm, INT_MAX );
167 m_height = ReadNumber( m_strm, INT_MAX );
169 m_maxval = m_bpp == 1 ? 1 : ReadNumber( m_strm, INT_MAX );
179 m_offset = m_strm.GetPos();
190 m_strm
[all...]
H A Dgrfmt_bmp.h70 RLByteStream m_strm; member in class:GrFmtBmpReader
90 WLByteStream m_strm; member in class:GrFmtBmpWriter
H A Dgrfmt_pxm.h63 RLByteStream m_strm; member in class:GrFmtPxMReader
85 WLByteStream m_strm; member in class:GrFmtPxMWriter
H A Dgrfmt_sunras.h76 RMByteStream m_strm; member in class:GrFmtSunRasterReader
97 WMByteStream m_strm; member in class:GrFmtSunRasterWriter
H A Dgrfmt_tiff.h126 RLByteStream m_strm; member in class:GrFmtTiffReader
158 WLByteStream m_strm; member in class:GrFmtTiffWriter
H A Dgrfmt_jpeg.h150 RJpegBitStream m_strm; member in class:GrFmtJpegReader
195 WJpegBitStream m_strm; member in class:GrFmtJpegWriter
H A Dgrfmt_jpeg.cpp803 m_strm.Close();
816 if( !m_strm.Open( m_filename )) return false;
823 if( setjmp( m_strm.JmpBuf()) == 0 )
825 RMByteStream& lstrm = m_strm.m_low_strm;
831 int marker = m_strm.FindMarker() & 255;
923 m_strm.Close();
934 RMByteStream& lstrm = m_strm.m_low_strm;
979 RMByteStream& lstrm = m_strm.m_low_strm;
1015 if( m_offset < 0 || !m_strm.IsOpened())
1018 if( setjmp( m_strm
[all...]
/external/opencv/
H A Dcvjni.h172 WLNonFileByteStream* m_strm) {
187 m_strm->Open(testSize);
192 m_strm->PutBytes( fmtSignBmp, (int)strlen(fmtSignBmp) );
195 m_strm->PutDWord( fileStep*height + headerSize ); // file size
196 m_strm->PutDWord( 0 );
197 m_strm->PutDWord( headerSize );
200 m_strm->PutDWord( bitmapHeaderSize );
201 m_strm->PutDWord( width );
202 m_strm->PutDWord( height );
203 m_strm
166 loadImageBytes(const uchar* data, int step, int width, int height, int depth, int channels, WLNonFileByteStream* m_strm) argument
[all...]
H A Dcvjni.cpp759 WLNonFileByteStream* m_strm = new WLNonFileByteStream();
761 mat_image->height, ipl_depth, channels, m_strm);
765 imageSize = m_strm->GetSize();
771 env->SetBooleanArrayRegion(res_array, 0, imageSize, (jboolean*)m_strm->GetByte());
789 m_strm->Close();
790 SAFE_DELETE(m_strm);
/external/lldb/include/lldb/Expression/
H A DIRToDWARF.h108 lldb_private::StreamString &m_strm; ///< The stream to write bytecode to member in class:IRToDWARF

Completed in 3584 milliseconds