GRASS GIS 7 Programmer's Manual
7.9.dev(2021)-e5379bbd7
|
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 | ) |
Definition at line 74 of file cmprbzip.c.
int G_lz4_compress_bound | ( | int | ) |
Definition at line 71 of file cmprlz4.c.
References LZ4_compressBound().
int G_no_compress_bound | ( | int | ) |
Definition at line 150 of file compress.c.
int G_zlib_compress_bound | ( | int | ) |
Definition at line 79 of file cmprzlib.c.
int G_zstd_compress_bound | ( | int | ) |
Definition at line 74 of file cmprzstd.c.
References _, and G_fatal_error().
struct compressor_list compressor[] |
Definition at line 54 of file compress.h.
Referenced by G_compressor_number().