Home
last modified time | relevance | path

Searched refs:fz_new_output (Results 1 – 5 of 5) sorted by relevance

/dports/graphics/mupdf/mupdf-1.18.0-source/source/fitz/
H A Dencode-basic.c48 return fz_new_output(ctx, 512, state, ahx_write, ahx_close, ahx_drop); in fz_new_asciihex_output()
153 return fz_new_output(ctx, 512, state, a85_write, a85_close, a85_drop); in fz_new_ascii85_output()
268 return fz_new_output(ctx, 4096, enc, rle_write, rle_close, rle_drop); in fz_new_rle_output()
303 return fz_new_output(ctx, 256, state, arc4_write, NULL, arc4_drop); in fz_new_arc4_output()
377 return fz_new_output(ctx, 8192, state, deflate_write, deflate_close, deflate_drop); in fz_new_deflate_output()
H A Doutput.c135 fz_new_output(fz_context *ctx, int bufsiz, void *state, fz_output_write_fn *write, fz_output_close_… in fz_new_output() function
179 return fz_new_output(ctx, 0, NULL, null_write, NULL, NULL); in fz_new_output_with_path()
213 out = fz_new_output(ctx, 8192, file, file_write, NULL, file_drop); in fz_new_output_with_path()
252 fz_output *out = fz_new_output(ctx, 0, fz_keep_buffer(ctx, buf), buffer_write, NULL, buffer_drop); in fz_new_output_with_buffer()
/dports/graphics/mupdf/mupdf-1.18.0-source/include/mupdf/fitz/
H A Doutput.h104 fz_output *fz_new_output(fz_context *ctx, int bufsiz, void *state, fz_output_write_fn *write, fz_ou…
/dports/graphics/mupdf/mupdf-1.18.0-source/platform/java/jni/
H A Ddocument.c604 …out = fz_new_output(ctx, 8192, state, SeekableOutputStream_write, NULL, SeekableOutputStream_drop); in FUN()
H A Dpdfdocument.c778 …out = fz_new_output(ctx, sizeof state->buffer, state, SeekableOutputStream_write, NULL, SeekableOu… in FUN()