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 269 if (p_stream->m_bytes_in_buffer >= p_size) {
272 p_stream->m_bytes_in_buffer -= p_size;
280 l_read_nb_bytes += p_stream->m_bytes_in_buffer;
281 memcpy(p_buffer,p_stream->m_current_data,p_stream->m_bytes_in_buffer);
282 p_stream->m_current_data += p_stream->m_bytes_in_buffer;
283 p_stream->m_byte_offset += (OPJ_OFF_T)p_stream->m_bytes_in_buffer;
284 p_stream->m_bytes_in_buffer = 0;
289 if (p_stream->m_bytes_in_buffer) {
290 l_read_nb_bytes += p_stream->m_bytes_in_buffer;
291 memcpy(p_buffer,p_stream->m_current_data,p_stream->m_bytes_in_buffer);
    [all...]
cio.h 151 OPJ_SIZE_T m_bytes_in_buffer; member in struct:opj_stream_private

Completed in 56 milliseconds