Lines Matching refs:opj_bio_t
51 static void opj_bio_putbit(opj_bio_t *bio, OPJ_UINT32 b);
57 static OPJ_UINT32 opj_bio_getbit(opj_bio_t *bio);
63 static OPJ_BOOL opj_bio_byteout(opj_bio_t *bio);
69 static OPJ_BOOL opj_bio_bytein(opj_bio_t *bio);
81 static OPJ_BOOL opj_bio_byteout(opj_bio_t *bio) in opj_bio_byteout()
92 static OPJ_BOOL opj_bio_bytein(opj_bio_t *bio) in opj_bio_bytein()
103 static void opj_bio_putbit(opj_bio_t *bio, OPJ_UINT32 b) in opj_bio_putbit()
113 static OPJ_UINT32 opj_bio_getbit(opj_bio_t *bio) in opj_bio_getbit()
129 opj_bio_t* opj_bio_create(void) in opj_bio_create()
131 opj_bio_t *bio = (opj_bio_t*)opj_malloc(sizeof(opj_bio_t)); in opj_bio_create()
135 void opj_bio_destroy(opj_bio_t *bio) in opj_bio_destroy()
142 ptrdiff_t opj_bio_numbytes(opj_bio_t *bio) in opj_bio_numbytes()
147 void opj_bio_init_enc(opj_bio_t *bio, OPJ_BYTE *bp, OPJ_UINT32 len) in opj_bio_init_enc()
156 void opj_bio_init_dec(opj_bio_t *bio, OPJ_BYTE *bp, OPJ_UINT32 len) in opj_bio_init_dec()
165 void opj_bio_write(opj_bio_t *bio, OPJ_UINT32 v, OPJ_UINT32 n) in opj_bio_write()
175 OPJ_UINT32 opj_bio_read(opj_bio_t *bio, OPJ_UINT32 n) in opj_bio_read()
195 OPJ_BOOL opj_bio_flush(opj_bio_t *bio) in opj_bio_flush()
208 OPJ_BOOL opj_bio_inalign(opj_bio_t *bio) in opj_bio_inalign()