Sha256: bcf2d5720cd62d50dfb88cc55d7796237e4aa4fe57d2701b1da0c5ba29b967a2

Contents?: true

Size: 1.26 KB

Versions: 6

Compression:

Stored size: 1.26 KB

Contents

/*
 * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc.
 * All rights reserved.
 *
 * This source code is licensed under both the BSD-style license (found in the
 * LICENSE file in the root directory of this source tree) and the GPLv2 (found
 * in the COPYING file in the root directory of this source tree).
 * You may select, at your option, one of the above-listed licenses.
 */

#ifndef ZSTD_DOUBLE_FAST_H
#define ZSTD_DOUBLE_FAST_H

#if defined (__cplusplus)
extern "C" {
#endif

#include "../common/mem.h"      /* U32 */
#include "zstd_compress_internal.h"     /* ZSTD_CCtx, size_t */

void ZSTD_fillDoubleHashTable(ZSTD_matchState_t* ms,
                              void const* end, ZSTD_dictTableLoadMethod_e dtlm);
size_t ZSTD_compressBlock_doubleFast(
        ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
        void const* src, size_t srcSize);
size_t ZSTD_compressBlock_doubleFast_dictMatchState(
        ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
        void const* src, size_t srcSize);
size_t ZSTD_compressBlock_doubleFast_extDict(
        ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
        void const* src, size_t srcSize);


#if defined (__cplusplus)
}
#endif

#endif /* ZSTD_DOUBLE_FAST_H */

Version data entries

6 entries across 6 versions & 3 rubygems

Version Path
extzstd-0.3.2 contrib/zstd/lib/compress/zstd_double_fast.h
zstd-ruby-1.4.5.0 ext/zstdruby/libzstd/compress/zstd_double_fast.h
extzstd-0.3.1 contrib/zstd/lib/compress/zstd_double_fast.h
zstdlib-0.7.0-x86-mingw32 ext/zstdlib/zstd-1.4.5/lib/compress/zstd_double_fast.h
zstdlib-0.7.0-x64-mingw32 ext/zstdlib/zstd-1.4.5/lib/compress/zstd_double_fast.h
zstdlib-0.7.0 ext/zstdlib/zstd-1.4.5/lib/compress/zstd_double_fast.h