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

  /external/pdfium/third_party/libopenjpeg20/
cio.c 285 if (p_stream->m_bytes_in_buffer >= p_size) {
288 p_stream->m_bytes_in_buffer -= p_size;
296 l_read_nb_bytes += p_stream->m_bytes_in_buffer;
297 memcpy(p_buffer, p_stream->m_current_data, p_stream->m_bytes_in_buffer);
298 p_stream->m_current_data += p_stream->m_bytes_in_buffer;
299 p_stream->m_byte_offset += (OPJ_OFF_T)p_stream->m_bytes_in_buffer;
300 p_stream->m_bytes_in_buffer = 0;
305 if (p_stream->m_bytes_in_buffer) {
306 l_read_nb_bytes += p_stream->m_bytes_in_buffer;
307 memcpy(p_buffer, p_stream->m_current_data, p_stream->m_bytes_in_buffer);
    [all...]
cio.h 146 OPJ_SIZE_T m_bytes_in_buffer; member in struct:opj_stream_private

Completed in 79 milliseconds