|
GRASS GIS 8 Programmer's Manual 8.3.2(2024)-exported
|
#include <grass/config.h>#include <grass/gis.h>

Go to the source code of this file.
Data Structures | |
| struct | compressor_list |
Typedefs | |
| typedef int | compress_fn(unsigned char *src, int src_sz, unsigned char *dst, int dst_sz) |
| typedef int | expand_fn(unsigned char *src, int src_sz, unsigned char *dst, int dst_sz) |
| typedef int | bound_fn(int src_sz) |
Functions | |
| int | G_no_compress_bound (int) |
| int | G_rle_compress_bound (int) |
| int | G_zlib_compress_bound (int) |
| int | G_lz4_compress_bound (int) |
| int | G_bz2_compress_bound (int) |
| int | G_zstd_compress_bound (int) |
Variables | |
| struct compressor_list | compressor [] |
| typedef int bound_fn(int src_sz) |
Definition at line 32 of file compress.h.
| typedef int compress_fn(unsigned char *src, int src_sz, unsigned char *dst, int dst_sz) |
Definition at line 28 of file compress.h.
| typedef int expand_fn(unsigned char *src, int src_sz, unsigned char *dst, int dst_sz) |
Definition at line 30 of file compress.h.
| int G_bz2_compress_bound | ( | int | src_sz | ) |
Definition at line 72 of file cmprbzip.c.
Referenced by G_bz2_compress().
| int G_lz4_compress_bound | ( | int | src_sz | ) |
Definition at line 70 of file cmprlz4.c.
References LZ4_compressBound().
Referenced by G_lz4_compress().
| int G_no_compress_bound | ( | int | src_sz | ) |
Definition at line 150 of file compress.c.
| int G_zlib_compress_bound | ( | int | ) |
| int G_zstd_compress_bound | ( | int | src_sz | ) |
Definition at line 72 of file cmprzstd.c.
References G_fatal_error().
Referenced by G_zstd_compress().
| struct compressor_list compressor[] |
Definition at line 53 of file compress.h.
Referenced by G_check_compressor(), G_compress(), G_compress_bound(), G_compressor_name(), G_compressor_number(), and G_expand().