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

  /external/pdfium/third_party/libopenjpeg20/
cio.h 141 OPJ_OFF_T (* m_opj_skip)(struct opj_stream_private * ,OPJ_OFF_T , struct opj_event_mgr *);
146 OPJ_BOOL (* m_opj_seek) (struct opj_stream_private * , OPJ_OFF_T , struct opj_event_mgr *);
156 OPJ_OFF_T m_byte_offset;
301 OPJ_OFF_T opj_stream_skip (opj_stream_private_t * p_stream,OPJ_OFF_T p_size, struct opj_event_mgr * p_event_mgr);
310 OPJ_OFF_T opj_stream_tell (const opj_stream_private_t * p_stream);
320 OPJ_OFF_T opj_stream_get_number_byte_left (const opj_stream_private_t * p_stream);
329 OPJ_OFF_T opj_stream_write_skip (opj_stream_private_t * p_stream, OPJ_OFF_T p_size, struct opj_event_mgr * p_event_mgr)
    [all...]
cio.c 274 p_stream->m_byte_offset += (OPJ_OFF_T)p_size;
283 p_stream->m_byte_offset += (OPJ_OFF_T)p_stream->m_bytes_in_buffer;
295 p_stream->m_byte_offset += (OPJ_OFF_T)p_stream->m_bytes_in_buffer;
327 p_stream->m_byte_offset += (OPJ_OFF_T)p_stream->m_bytes_in_buffer;
335 p_stream->m_byte_offset += (OPJ_OFF_T)p_size;
358 p_stream->m_byte_offset += (OPJ_OFF_T)p_stream->m_bytes_in_buffer;
364 p_stream->m_byte_offset += (OPJ_OFF_T)p_stream->m_bytes_in_buffer;
395 p_stream->m_byte_offset += (OPJ_OFF_T)p_size;
411 p_stream->m_byte_offset += (OPJ_OFF_T)l_remaining_bytes;
450 OPJ_OFF_T opj_stream_read_skip (opj_stream_private_t * p_stream, OPJ_OFF_T p_size, opj_event_mgr_t * p_event (…)
    [all...]
openjpeg.h 130 typedef int64_t OPJ_OFF_T; /* 64-bit file offset type */
603 typedef OPJ_OFF_T (* opj_stream_skip_fn) (OPJ_OFF_T p_nb_bytes, void * p_user_data) ;
608 typedef OPJ_BOOL (* opj_stream_seek_fn) (OPJ_OFF_T p_nb_bytes, void * p_user_data) ;
723 OPJ_OFF_T start_pos;
725 OPJ_OFF_T end_ph_pos;
727 OPJ_OFF_T end_pos;
741 OPJ_OFF_T pos;
950 OPJ_OFF_T start_pos;
952 OPJ_OFF_T end_header
    [all...]
jp2.h 189 OPJ_OFF_T j2k_codestream_offset;
190 OPJ_OFF_T jpip_iptr_offset;
j2k.h 491 OPJ_OFF_T m_last_sot_read_pos;
521 OPJ_OFF_T m_tlm_start;
openjpeg.c 99 OPJ_OFF_T file_length = 0;
102 file_length = (OPJ_OFF_T)OPJ_FTELL(p_file);
113 static OPJ_OFF_T opj_skip_from_file (OPJ_OFF_T p_nb_bytes, FILE * p_user_data)
122 static OPJ_BOOL opj_seek_from_file (OPJ_OFF_T p_nb_bytes, FILE * p_user_data)
jp2.c 486 const OPJ_OFF_T bleft = opj_stream_get_number_byte_left(cio);
488 assert( (OPJ_OFF_T)box->length == bleft );
    [all...]
j2k.c     [all...]
  /external/pdfium/core/fxcodec/codec/
codec_int.h 41 OPJ_OFF_T opj_skip_from_memory(OPJ_OFF_T nb_bytes, void* p_user_data);
42 OPJ_BOOL opj_seek_from_memory(OPJ_OFF_T nb_bytes, void* p_user_data);
fx_codec_jpx_unittest.cpp 13 static const OPJ_OFF_T kSkipError = static_cast<OPJ_OFF_T>(-1);
314 // take OPJ_OFF_T's as arguments, which are typically a signed type.
375 EXPECT_EQ(std::numeric_limits<OPJ_OFF_T>::max(),
376 opj_skip_from_memory(std::numeric_limits<OPJ_OFF_T>::max(), &dd));
411 opj_skip_from_memory(std::numeric_limits<OPJ_OFF_T>::min(), &dd));
453 opj_seek_from_memory(std::numeric_limits<OPJ_OFF_T>::min(), &dd));
486 EXPECT_TRUE(opj_seek_from_memory(std::numeric_limits<OPJ_OFF_T>::max(), &dd));
fx_codec_jpx_opj.cpp 65 OPJ_OFF_T opj_skip_from_memory(OPJ_OFF_T nb_bytes, void* p_user_data) {
68 return static_cast<OPJ_OFF_T>(-1);
75 return static_cast<OPJ_OFF_T>(-1);
77 // FIXME: use std::make_unsigned<OPJ_OFF_T>::type once c++11 lib is OK'd.
97 OPJ_BOOL opj_seek_from_memory(OPJ_OFF_T nb_bytes, void* p_user_data) {
107 // FIXME: use std::make_unsigned<OPJ_OFF_T>::type once c++11 lib is OK'd.
  /external/ImageMagick/coders/
jp2.c 217 static OPJ_BOOL JP2SeekHandler(OPJ_OFF_T offset,void *context)
226 static OPJ_OFF_T JP2SkipHandler(OPJ_OFF_T offset,void *context)
    [all...]

Completed in 79 milliseconds