![]() |
Parolin 0.7.9 6796
Console (soon DLLs) to do a tar like job
|
#include "util.h"
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <time.h>
#include <ctype.h>
#include <errno.h>
#include "timefn.h"
#include "mem.h"
#include "zstd.h"
#include "datagen.h"
#include "xxhash.h"
#include "../zstd_zlibwrapper.h"
Data Structures | |
struct | blockParam_t |
Macros | |
#define | ZSTD_STATIC_LINKING_ONLY |
#define | ZSTDCLI_CLEVEL_DEFAULT 3 |
#define | COMPRESSOR_NAME "Zstandard wrapper for zlib command line interface" |
#define | ZSTD_VERSION "v" ZSTD_VERSION_STRING |
#define | AUTHOR "Yann Collet" |
#define | WELCOME_MESSAGE "*** %s %i-bits %s, by %s ***\n", COMPRESSOR_NAME, (int)(sizeof(size_t)*8), ZSTD_VERSION, AUTHOR |
#define | ZSTD_GIT_COMMIT_STRING "" |
#define | NBLOOPS 3 |
#define | TIMELOOP_MICROSEC 1*1000000ULL /* 1 second */ |
#define | ACTIVEPERIOD_MICROSEC 70*1000000ULL /* 70 seconds */ |
#define | COOLPERIOD_SEC 10 |
#define | KB *(1 <<10) |
#define | MB *(1 <<20) |
#define | GB *(1U<<30) |
#define | DEFAULT_DISPLAY_LEVEL 2 |
#define | DISPLAY(...) |
#define | DISPLAYLEVEL(l, ...) |
#define | DISPLAYUPDATE(l, ...) |
#define | DEBUG 0 |
#define | DEBUGOUTPUT(...) |
#define | EXM_THROW(error, ...) |
#define | MIN(a, b) |
#define | MAX(a, b) |
#define | NB_MARKS 4 |
#define | CLEAN_RETURN(i) |
Enumerations | |
enum | BMK_compressor { BMK_ZSTD , BMK_ZSTD_STREAM , BMK_ZLIB , BMK_ZWRAP_ZLIB , BMK_ZWRAP_ZSTD , BMK_ZLIB_REUSE , BMK_ZWRAP_ZLIB_REUSE , BMK_ZWRAP_ZSTD_REUSE } |
Functions | |
int | main (int argCount, char **argv) |
Variables | |
int | g_additionalParam = 0 |
#define ACTIVEPERIOD_MICROSEC 70*1000000ULL /* 70 seconds */ |
#define AUTHOR "Yann Collet" |
#define CLEAN_RETURN | ( | i | ) |
#define COMPRESSOR_NAME "Zstandard wrapper for zlib command line interface" |
#define COOLPERIOD_SEC 10 |
#define DEBUG 0 |
#define DEBUGOUTPUT | ( | ... | ) |
#define DEFAULT_DISPLAY_LEVEL 2 |
#define DISPLAY | ( | ... | ) |
#define DISPLAYLEVEL | ( | l, | |
... ) |
#define DISPLAYUPDATE | ( | l, | |
... ) |
#define EXM_THROW | ( | error, | |
... ) |
#define GB *(1U<<30) |
#define KB *(1 <<10) |
#define MB *(1 <<20) |
#define NB_MARKS 4 |
#define NBLOOPS 3 |
#define TIMELOOP_MICROSEC 1*1000000ULL /* 1 second */ |
#define WELCOME_MESSAGE "*** %s %i-bits %s, by %s ***\n", COMPRESSOR_NAME, (int)(sizeof(size_t)*8), ZSTD_VERSION, AUTHOR |
#define ZSTD_GIT_COMMIT_STRING "" |
#define ZSTD_STATIC_LINKING_ONLY |
#define ZSTD_VERSION "v" ZSTD_VERSION_STRING |
#define ZSTDCLI_CLEVEL_DEFAULT 3 |
enum BMK_compressor |
int g_additionalParam = 0 |