![]() |
Parolin 0.7.9 6796
Console (soon DLLs) to do a tar like job
|
#include <stdlib.h>#include <stdio.h>#include <string.h>#include <assert.h>#include "timefn.h"#include "mem.h"#include "zstd.h"#include "zstd_errors.h"#include "zdict.h"#include "datagen.h"#include "xxhash.h"#include "seqgen.h"#include "util.h"Data Structures | |
| struct | buffer_t |
Macros | |
| #define | ZSTD_DISABLE_DEPRECATE_WARNINGS /* No deprecation warnings, we still test some deprecated functions */ |
| #define | ZSTD_STATIC_LINKING_ONLY /* ZSTD_maxCLevel, ZSTD_customMem, ZSTD_getDictID_fromFrame */ |
| #define | XXH_STATIC_LINKING_ONLY /* XXH64_state_t */ |
| #define | KB *(1U<<10) |
| #define | MB *(1U<<20) |
| #define | GB *(1U<<30) |
| #define | COMPRESSIBLE_NOISE_LENGTH (10 MB) |
| #define | FUZ_COMPRESSIBILITY_DEFAULT 50 |
| #define | DISPLAY(...) |
| #define | DISPLAYLEVEL(l, ...) |
| #define | DISPLAYUPDATE(l, ...) |
| #define | MIN(a, b) |
| #define | MAX(a, b) |
| #define | FUZ_rotl32(x, r) |
| #define | CHECK(cond, ...) |
| #define | CHECK_Z(f) |
| #define | CHECK_RET(ret, cond, ...) |
| #define | CHECK_RET_Z(f) |
Enumerations | |
| enum | e_api { simple_api , advanced_api } |
Functions | |
| int | main (int argc, const char **argv) |
| #define CHECK | ( | cond, | |
| ... ) |
| #define CHECK_RET | ( | ret, | |
| cond, | |||
| ... ) |
| #define CHECK_RET_Z | ( | f | ) |
| #define CHECK_Z | ( | f | ) |
| #define COMPRESSIBLE_NOISE_LENGTH (10 MB) |
| #define DISPLAY | ( | ... | ) |
| #define DISPLAYLEVEL | ( | l, | |
| ... ) |
| #define DISPLAYUPDATE | ( | l, | |
| ... ) |
| #define FUZ_COMPRESSIBILITY_DEFAULT 50 |
| #define FUZ_rotl32 | ( | x, | |
| r ) |
FUZ_rand() :
seed. seed is also modified | #define GB *(1U<<30) |
| #define KB *(1U<<10) |
| #define MB *(1U<<20) |
| #define XXH_STATIC_LINKING_ONLY /* XXH64_state_t */ |
| #define ZSTD_DISABLE_DEPRECATE_WARNINGS /* No deprecation warnings, we still test some deprecated functions */ |
| #define ZSTD_STATIC_LINKING_ONLY /* ZSTD_maxCLevel, ZSTD_customMem, ZSTD_getDictID_fromFrame */ |
| enum e_api |