Home
last modified time | relevance | path

Searched refs:m_bytes_in_buffer (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
Dcio.c283 if (p_stream->m_bytes_in_buffer >= p_size) { in opj_stream_read_data()
286 p_stream->m_bytes_in_buffer -= p_size; in opj_stream_read_data()
294 l_read_nb_bytes += p_stream->m_bytes_in_buffer; in opj_stream_read_data()
295 memcpy(p_buffer,p_stream->m_current_data,p_stream->m_bytes_in_buffer); in opj_stream_read_data()
296 p_stream->m_current_data += p_stream->m_bytes_in_buffer; in opj_stream_read_data()
297 p_stream->m_byte_offset += (OPJ_OFF_T)p_stream->m_bytes_in_buffer; in opj_stream_read_data()
298 p_stream->m_bytes_in_buffer = 0; in opj_stream_read_data()
303 if (p_stream->m_bytes_in_buffer) { in opj_stream_read_data()
304 l_read_nb_bytes += p_stream->m_bytes_in_buffer; in opj_stream_read_data()
305 memcpy(p_buffer,p_stream->m_current_data,p_stream->m_bytes_in_buffer); in opj_stream_read_data()
[all …]
Dcio.h151 OPJ_SIZE_T m_bytes_in_buffer; member