GRASS GIS 8 Programmer's Manual
8.5.0dev(2024)-36359e2344
|
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.
Definition at line 28 of file compress.h.
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 | src_sz | ) |
Definition at line 76 of file cmprzlib.c.
Referenced by G_zlib_compress().
int G_zstd_compress_bound | ( | int | src_sz | ) |
Definition at line 72 of file cmprzstd.c.
References _, and G_fatal_error().
Referenced by G_zstd_compress().
struct compressor_list compressor[] |
Definition at line 51 of file compress.h.
Referenced by G_compressor_number().