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

  /external/opencv3/3rdparty/libjasper/
jpc_bs.h 226 (jas_stream_putc((bitstream)->stream_, (bitstream)->buf_ >> 8) == EOF) \
jp2_cod.c 708 if (jas_stream_putc(out, val & 0xff) == EOF) {
716 if (jas_stream_putc(out, (val >> 8) & 0xff) == EOF ||
717 jas_stream_putc(out, val & 0xff) == EOF) {
725 if (jas_stream_putc(out, (val >> 24) & 0xff) == EOF ||
726 jas_stream_putc(out, (val >> 16) & 0xff) == EOF ||
727 jas_stream_putc(out, (val >> 8) & 0xff) == EOF ||
728 jas_stream_putc(out, val & 0xff) == EOF) {
jas_icc.c     [all...]
jpc_bs.c 432 if (jas_stream_putc(bitstream->stream_, bitstream->buf_ & 0xff) == EOF) {
jpc_mqenc.c 169 if (jas_stream_putc(enc->out, (unsigned char)enc->outbuf) == EOF) { \
jpc_cs.c     [all...]
jas_image.c 331 jas_stream_putc(cmpt->stream_, 0) == EOF ||
498 if (jas_stream_putc(cmpt->stream_,
927 if (jas_stream_putc(cmpt->stream_, (unsigned char) c) == EOF) {
    [all...]
jas_stream.c 545 if (jas_stream_putc(stream, *bufptr) == EOF) {
620 if (jas_stream_putc(stream, c) == EOF)
  /external/opencv3/3rdparty/libjasper/jasper/
jas_stream.h 356 #define jas_stream_putc(stream, c) jas_stream_putc_func(stream, c) macro
358 #define jas_stream_putc(stream, c) jas_stream_putc_macro(stream, c) macro

Completed in 50 milliseconds