HomeSort by relevance Sort by last modified time
    Searched refs:m_strm (Results 1 - 12 of 12) sorted by null

  /external/opencv/otherlibs/highgui/
grfmt_bmp.cpp 87 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.GetDWord()
    [all...]
grfmt_sunras.cpp 89 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.GetDWord()
    [all...]
grfmt_bmp.h 70 RLByteStream m_strm; member in class:GrFmtBmpReader
90 WLByteStream m_strm; member in class:GrFmtBmpWriter
grfmt_pxm.h 63 RLByteStream m_strm; member in class:GrFmtPxMReader
85 WLByteStream m_strm; member in class:GrFmtPxMWriter
grfmt_tiff.cpp 265 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.GetByte()
    [all...]
grfmt_pxm.cpp 137 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.Close()
    [all...]
grfmt_sunras.h 76 RMByteStream m_strm; member in class:GrFmtSunRasterReader
97 WMByteStream m_strm; member in class:GrFmtSunRasterWriter
grfmt_tiff.h 126 RLByteStream m_strm; member in class:GrFmtTiffReader
158 WLByteStream m_strm; member in class:GrFmtTiffWriter
grfmt_jpeg.h 150 RJpegBitStream m_strm; member in class:GrFmtJpegReader
195 WJpegBitStream m_strm; member in class:GrFmtJpegWriter
grfmt_jpeg.cpp 803 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.JmpBuf()) == 0
    [all...]
  /external/opencv/
cvjni.h 172 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->PutWord( 1 );
    [all...]
cvjni.cpp 759 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);

Completed in 246 milliseconds