Home | History | Annotate | Download | only in src

Lines Matching refs:m_start

67         m_start = new uchar[m_block_size];
68 m_end = m_start + m_block_size;
77 m_start = m_end = m_current = 0;
104 size_t readed = fread( m_start, 1, m_block_size, m_file );
105 m_end = m_start + readed;
106 m_current = m_start;
134 m_start = buf.data;
135 m_end = m_start + buf.cols*buf.rows*buf.elemSize();
152 m_start = m_end = m_current = 0;
159 delete[] m_start;
160 m_start = m_end = m_current = 0;
171 m_current = m_start + pos;
178 m_current = m_start + offset;
185 return m_block_pos + (int)(m_current - m_start);
337 m_start = m_end = m_current = 0;
360 if( !m_start )
361 m_start = new uchar[m_block_size];
363 m_end = m_start + m_block_size;
364 m_current = m_start;
370 int size = (int)(m_current - m_start);
380 memcpy( &(*m_buf)[sz], m_start, size );
384 fwrite( m_start, 1, size, m_file );
386 m_current = m_start;
401 m_current = m_start;
414 m_current = m_start;
435 if( m_start )
436 delete[] m_start;
437 m_start = m_end = m_current = 0;
444 return m_block_pos + (int)(m_current - m_start);