Appearance
vtk_fortran_zlib
Source: src/lib/vtk_fortran_zlib.f90
Dependencies
Contents
Variables
| Name | Type | Attributes | Description |
|---|---|---|---|
Z_DEFAULT_COMPRESSION | integer(kind=c_int) | parameter | |
Z_BEST_SPEED | integer(kind=c_int) | parameter | |
Z_BEST_COMPRESSION | integer(kind=c_int) | parameter |
Interfaces
compressBound
compress2
Functions
zlib_compress_bound
Returns: integer(kind=c_long)
fortran
function zlib_compress_bound(n) result(bound)Arguments
| Name | Type | Intent | Attributes | Description |
|---|---|---|---|---|
n | integer(kind=c_long) | value |
Call graph
zlib_compress2
Compress a byte buffer with zlib compress2.
Returns: integer(kind=c_int)
fortran
function zlib_compress2(dst, dst_len, src, src_len, level) result(ret)Arguments
| Name | Type | Intent | Attributes | Description |
|---|---|---|---|---|
dst | integer(kind=c_signed_char) | inout | target | |
dst_len | integer(kind=c_long) | inout | target | |
src | integer(kind=c_signed_char) | in | target | |
src_len | integer(kind=c_long) | in | ||
level | integer(kind=c_int) | in |
Call graph