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 134 OPJ_OFF_T(* m_opj_skip)(struct opj_stream_private *, OPJ_OFF_T,
140 OPJ_BOOL(* m_opj_seek)(struct opj_stream_private *, OPJ_OFF_T,
151 OPJ_OFF_T m_byte_offset;
305 OPJ_OFF_T opj_stream_skip(opj_stream_private_t * p_stream, OPJ_OFF_T p_size,
315 OPJ_OFF_T opj_stream_tell(const opj_stream_private_t * p_stream);
325 OPJ_OFF_T opj_stream_get_number_byte_left(const opj_stream_private_t *
335 OPJ_OFF_T opj_stream_write_skip(opj_stream_private_t * p_stream,
336 OPJ_OFF_T p_size, struct opj_event_mgr * p_event_mgr)
    [all...]
cio.c 290 p_stream->m_byte_offset += (OPJ_OFF_T)p_size;
299 p_stream->m_byte_offset += (OPJ_OFF_T)p_stream->m_bytes_in_buffer;
311 p_stream->m_byte_offset += (OPJ_OFF_T)p_stream->m_bytes_in_buffer;
342 p_stream->m_byte_offset += (OPJ_OFF_T)p_stream->m_bytes_in_buffer;
349 p_stream->m_byte_offset += (OPJ_OFF_T)p_size;
371 p_stream->m_byte_offset += (OPJ_OFF_T)p_stream->m_bytes_in_buffer;
376 p_stream->m_byte_offset += (OPJ_OFF_T)p_stream->m_bytes_in_buffer;
407 p_stream->m_byte_offset += (OPJ_OFF_T)p_size;
423 p_stream->m_byte_offset += (OPJ_OFF_T)l_remaining_bytes;
463 OPJ_OFF_T opj_stream_read_skip(opj_stream_private_t * p_stream
    [all...]
openjpeg.h 130 typedef int64_t OPJ_OFF_T; /* 64-bit file offset type */
609 typedef OPJ_OFF_T(* opj_stream_skip_fn)(OPJ_OFF_T p_nb_bytes,
615 typedef OPJ_BOOL(* opj_stream_seek_fn)(OPJ_OFF_T p_nb_bytes,
732 OPJ_OFF_T start_pos;
734 OPJ_OFF_T end_ph_pos;
736 OPJ_OFF_T end_pos;
750 OPJ_OFF_T pos;
    [all...]
jp2.h 181 OPJ_OFF_T j2k_codestream_offset;
182 OPJ_OFF_T jpip_iptr_offset;
openjpeg.c 100 OPJ_OFF_T file_length = 0;
103 file_length = (OPJ_OFF_T)OPJ_FTELL(p_file);
115 static OPJ_OFF_T opj_skip_from_file(OPJ_OFF_T p_nb_bytes, FILE * p_user_data)
124 static OPJ_BOOL opj_seek_from_file(OPJ_OFF_T p_nb_bytes, FILE * p_user_data)
    [all...]
j2k.h 477 OPJ_OFF_T m_last_sot_read_pos;
510 OPJ_OFF_T m_tlm_start;
jp2.c 498 const OPJ_OFF_T bleft = opj_stream_get_number_byte_left(cio);
499 if (bleft > (OPJ_OFF_T)(0xFFFFFFFFU - 8U)) {
505 assert((OPJ_OFF_T)box->length == bleft + 8);
    [all...]
j2k.c     [all...]
  /external/pdfium/core/fxcodec/codec/
codec_int.h 37 OPJ_OFF_T opj_skip_from_memory(OPJ_OFF_T nb_bytes, void* p_user_data);
38 OPJ_BOOL opj_seek_from_memory(OPJ_OFF_T nb_bytes, void* p_user_data);
fx_codec_jpx_unittest.cpp 14 static const OPJ_OFF_T kSkipError = static_cast<OPJ_OFF_T>(-1);
225 // take OPJ_OFF_T's as arguments, which are typically a signed type.
286 EXPECT_EQ(std::numeric_limits<OPJ_OFF_T>::max(),
287 opj_skip_from_memory(std::numeric_limits<OPJ_OFF_T>::max(), &dd));
322 opj_skip_from_memory(std::numeric_limits<OPJ_OFF_T>::min(), &dd));
364 opj_seek_from_memory(std::numeric_limits<OPJ_OFF_T>::min(), &dd));
397 EXPECT_TRUE(opj_seek_from_memory(std::numeric_limits<OPJ_OFF_T>::max(), &dd));
fx_codec_jpx_opj.cpp 232 OPJ_OFF_T opj_skip_from_memory(OPJ_OFF_T nb_bytes, void* p_user_data) {
235 return static_cast<OPJ_OFF_T>(-1);
242 return static_cast<OPJ_OFF_T>(-1);
244 // FIXME: use std::make_unsigned<OPJ_OFF_T>::type once c++11 lib is OK'd.
264 OPJ_BOOL opj_seek_from_memory(OPJ_OFF_T nb_bytes, void* p_user_data) {
274 // 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 627 milliseconds