Lines Matching refs:jpc_bitstream_t
88 static jpc_bitstream_t *jpc_bitstream_alloc(void);
95 jpc_bitstream_t *jpc_bitstream_sopen(jas_stream_t *stream, char *mode) in jpc_bitstream_sopen()
97 jpc_bitstream_t *bitstream; in jpc_bitstream_sopen()
126 int jpc_bitstream_close(jpc_bitstream_t *bitstream) in jpc_bitstream_close()
149 static jpc_bitstream_t *jpc_bitstream_alloc() in jpc_bitstream_alloc()
151 jpc_bitstream_t *bitstream; in jpc_bitstream_alloc()
154 if (!(bitstream = jas_malloc(sizeof(jpc_bitstream_t)))) { in jpc_bitstream_alloc()
171 int jpc_bitstream_getbit_func(jpc_bitstream_t *bitstream) in jpc_bitstream_getbit_func()
181 int jpc_bitstream_putbit_func(jpc_bitstream_t *bitstream, int b) in jpc_bitstream_putbit_func()
191 long jpc_bitstream_getbits(jpc_bitstream_t *bitstream, int n) in jpc_bitstream_getbits()
212 int jpc_bitstream_putbits(jpc_bitstream_t *bitstream, int n, long v) in jpc_bitstream_putbits()
238 int jpc_bitstream_fillbuf(jpc_bitstream_t *bitstream) in jpc_bitstream_fillbuf()
273 int jpc_bitstream_needalign(jpc_bitstream_t *bitstream) in jpc_bitstream_needalign()
302 int jpc_bitstream_pending(jpc_bitstream_t *bitstream) in jpc_bitstream_pending()
328 int jpc_bitstream_align(jpc_bitstream_t *bitstream) in jpc_bitstream_align()
342 int jpc_bitstream_inalign(jpc_bitstream_t *bitstream, int fillmask, in jpc_bitstream_inalign()
390 int jpc_bitstream_outalign(jpc_bitstream_t *bitstream, int filldata) in jpc_bitstream_outalign()