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

  /external/opencv3/3rdparty/libjasper/
jas_stream.c 104 static int mem_read(jas_stream_obj_t *obj, char *buf, int cnt);
105 static int mem_write(jas_stream_obj_t *obj, char *buf, int cnt);
106 static long mem_seek(jas_stream_obj_t *obj, long offset, int origin);
107 static int mem_close(jas_stream_obj_t *obj);
109 static int sfile_read(jas_stream_obj_t *obj, char *buf, int cnt);
110 static int sfile_write(jas_stream_obj_t *obj, char *buf, int cnt);
111 static long sfile_seek(jas_stream_obj_t *obj, long offset, int origin);
112 static int sfile_close(jas_stream_obj_t *obj);
114 static int file_read(jas_stream_obj_t *obj, char *buf, int cnt);
115 static int file_write(jas_stream_obj_t *obj, char *buf, int cnt)
    [all...]
  /external/opencv3/3rdparty/libjasper/jasper/
jas_stream.h 174 typedef void jas_stream_obj_t; typedef
183 int (*read_)(jas_stream_obj_t *obj, char *buf, int cnt);
186 int (*write_)(jas_stream_obj_t *obj, char *buf, int cnt);
189 long (*seek_)(jas_stream_obj_t *obj, long offset, int origin);
192 int (*close_)(jas_stream_obj_t *obj);
235 jas_stream_obj_t *obj_;

Completed in 34 milliseconds