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

  /external/opencv3/modules/imgcodecs/src/
grfmt_sunras.hpp 88 int m_maplength; member in class:cv::SunRasterDecoder
grfmt_sunras.cpp 92 m_maplength = m_strm.getDWord();
98 ((m_maptype == RMT_NONE && m_maplength == 0) ||
99 (m_maptype == RMT_EQUAL_RGB && m_maplength <= palSize && m_bpp <= 8)))
103 if( m_maplength != 0 )
107 if( m_strm.getBytes( buffer, m_maplength ) == m_maplength )
110 palSize = m_maplength/3;
123 assert( m_offset == 32 + m_maplength );
136 assert( m_offset == 32 + m_maplength );
  /external/opencv/otherlibs/highgui/
grfmt_sunras.cpp 111 m_maplength = m_strm.GetDWord();
117 (m_maptype == RMT_NONE && m_maplength == 0 ||
118 m_maptype == RMT_EQUAL_RGB && m_maplength <= palSize && m_bpp <= 8))
122 if( m_maplength != 0 )
127 m_strm.GetBytes( buffer, m_maplength, &readed );
128 if( readed == m_maplength )
131 palSize = m_maplength/3;
144 assert( m_offset == 32 + m_maplength );
157 assert( m_offset == 32 + m_maplength );
grfmt_sunras.h 82 int m_maplength; member in class:GrFmtSunRasterReader

Completed in 967 milliseconds