zstdlib 0.7.0-x64-mingw32 → 0.10.0-x64-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGES.md +20 -0
- data/README.md +7 -1
- data/Rakefile +38 -8
- data/ext/{zstdlib → zstdlib_c}/extconf.rb +11 -6
- data/ext/{zstdlib → zstdlib_c}/ruby/zlib-2.2/zstdlib.c +2 -2
- data/ext/{zstdlib → zstdlib_c}/ruby/zlib-2.3/zstdlib.c +2 -2
- data/ext/{zstdlib → zstdlib_c}/ruby/zlib-2.4/zstdlib.c +2 -2
- data/ext/{zstdlib → zstdlib_c}/ruby/zlib-2.5/zstdlib.c +2 -2
- data/ext/{zstdlib → zstdlib_c}/ruby/zlib-2.6/zstdlib.c +2 -2
- data/ext/{zstdlib → zstdlib_c}/ruby/zlib-2.7/zstdlib.c +2 -2
- data/ext/zstdlib_c/ruby/zlib-3.0/zstdlib.c +4994 -0
- data/ext/zstdlib_c/ruby/zlib-3.1/zstdlib.c +5076 -0
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/adler32.c +0 -0
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/compress.c +0 -0
- data/ext/zstdlib_c/zlib-1.2.12/crc32.c +1116 -0
- data/ext/zstdlib_c/zlib-1.2.12/crc32.h +9446 -0
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/deflate.c +78 -30
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/deflate.h +12 -15
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/gzclose.c +0 -0
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/gzguts.h +3 -2
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/gzlib.c +5 -3
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/gzread.c +5 -7
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/gzwrite.c +25 -13
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/infback.c +2 -1
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/inffast.c +14 -14
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/inffast.h +0 -0
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/inffixed.h +0 -0
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/inflate.c +39 -8
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/inflate.h +3 -2
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/inftrees.c +3 -3
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/inftrees.h +0 -0
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/trees.c +27 -48
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/trees.h +0 -0
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/uncompr.c +0 -0
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/zconf.h +0 -0
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/zlib.h +123 -100
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/zutil.c +2 -2
- data/ext/{zstdlib/zlib-1.2.11 → zstdlib_c/zlib-1.2.12}/zutil.h +12 -9
- data/ext/{zstdlib → zstdlib_c}/zlib.mk +0 -0
- data/ext/{zstdlib → zstdlib_c}/zlibwrapper/zlibwrapper.c +1 -5
- data/ext/{zstdlib → zstdlib_c}/zlibwrapper.mk +0 -0
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/common/bitstream.h +46 -22
- data/ext/zstdlib_c/zstd-1.5.2/lib/common/compiler.h +335 -0
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/common/cpu.h +1 -3
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/common/debug.c +1 -1
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/common/debug.h +12 -19
- data/ext/zstdlib_c/zstd-1.5.2/lib/common/entropy_common.c +368 -0
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/common/error_private.c +2 -1
- data/ext/zstdlib_c/zstd-1.5.2/lib/common/error_private.h +159 -0
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/common/fse.h +41 -12
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/common/fse_decompress.c +139 -22
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/common/huf.h +47 -23
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/common/mem.h +87 -98
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/common/pool.c +34 -23
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/common/pool.h +4 -4
- data/ext/zstdlib_c/zstd-1.5.2/lib/common/portability_macros.h +137 -0
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/common/threading.c +6 -5
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/common/threading.h +0 -0
- data/ext/zstdlib_c/zstd-1.5.2/lib/common/xxhash.c +24 -0
- data/ext/zstdlib_c/zstd-1.5.2/lib/common/xxhash.h +5686 -0
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/common/zstd_common.c +10 -10
- data/ext/zstdlib_c/zstd-1.5.2/lib/common/zstd_deps.h +111 -0
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/common/zstd_internal.h +191 -145
- data/ext/zstdlib_c/zstd-1.5.2/lib/common/zstd_trace.h +163 -0
- data/ext/zstdlib_c/zstd-1.5.2/lib/compress/clevels.h +134 -0
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/compress/fse_compress.c +89 -46
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/compress/hist.c +27 -29
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/compress/hist.h +2 -2
- data/ext/zstdlib_c/zstd-1.5.2/lib/compress/huf_compress.c +1370 -0
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/compress/zstd_compress.c +2917 -868
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/compress/zstd_compress_internal.h +458 -125
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/compress/zstd_compress_literals.c +12 -11
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/compress/zstd_compress_literals.h +4 -2
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/compress/zstd_compress_sequences.c +41 -18
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/compress/zstd_compress_sequences.h +1 -1
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/compress/zstd_compress_superblock.c +26 -298
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/compress/zstd_compress_superblock.h +1 -1
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/compress/zstd_cwksp.h +234 -83
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/compress/zstd_double_fast.c +313 -138
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/compress/zstd_double_fast.h +1 -1
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/compress/zstd_fast.c +329 -150
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/compress/zstd_fast.h +1 -1
- data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_lazy.c +2104 -0
- data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_lazy.h +125 -0
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/compress/zstd_ldm.c +321 -216
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/compress/zstd_ldm.h +9 -2
- data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstd_ldm_geartab.h +106 -0
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/compress/zstd_opt.c +412 -166
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/compress/zstd_opt.h +1 -1
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/compress/zstdmt_compress.c +169 -453
- data/ext/zstdlib_c/zstd-1.5.2/lib/compress/zstdmt_compress.h +113 -0
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/decompress/huf_decompress.c +1044 -403
- data/ext/zstdlib_c/zstd-1.5.2/lib/decompress/huf_decompress_amd64.S +585 -0
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/decompress/zstd_ddict.c +9 -9
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/decompress/zstd_ddict.h +2 -2
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/decompress/zstd_decompress.c +450 -105
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/decompress/zstd_decompress_block.c +913 -273
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/decompress/zstd_decompress_block.h +14 -5
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/decompress/zstd_decompress_internal.h +59 -12
- data/ext/zstdlib_c/zstd-1.5.2/lib/zdict.h +452 -0
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/lib/zstd.h +699 -214
- data/ext/{zstdlib/zstd-1.4.5/lib/common → zstdlib_c/zstd-1.5.2/lib}/zstd_errors.h +2 -1
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/zlibWrapper/gzclose.c +0 -0
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/zlibWrapper/gzcompatibility.h +1 -1
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/zlibWrapper/gzguts.h +0 -0
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/zlibWrapper/gzlib.c +0 -0
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/zlibWrapper/gzread.c +0 -0
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/zlibWrapper/gzwrite.c +0 -0
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/zlibWrapper/zstd_zlibwrapper.c +133 -44
- data/ext/{zstdlib/zstd-1.4.5 → zstdlib_c/zstd-1.5.2}/zlibWrapper/zstd_zlibwrapper.h +1 -1
- data/ext/zstdlib_c/zstd.mk +15 -0
- data/lib/2.4/zstdlib_c.so +0 -0
- data/lib/2.5/zstdlib_c.so +0 -0
- data/lib/2.6/zstdlib_c.so +0 -0
- data/lib/2.7/zstdlib_c.so +0 -0
- data/lib/3.0/zstdlib_c.so +0 -0
- data/lib/zstdlib.rb +2 -2
- metadata +124 -116
- data/ext/zstdlib/zlib-1.2.11/crc32.c +0 -442
- data/ext/zstdlib/zlib-1.2.11/crc32.h +0 -441
- data/ext/zstdlib/zstd-1.4.5/lib/common/compiler.h +0 -175
- data/ext/zstdlib/zstd-1.4.5/lib/common/entropy_common.c +0 -216
- data/ext/zstdlib/zstd-1.4.5/lib/common/error_private.h +0 -80
- data/ext/zstdlib/zstd-1.4.5/lib/common/xxhash.c +0 -864
- data/ext/zstdlib/zstd-1.4.5/lib/common/xxhash.h +0 -285
- data/ext/zstdlib/zstd-1.4.5/lib/compress/huf_compress.c +0 -798
- data/ext/zstdlib/zstd-1.4.5/lib/compress/zstd_lazy.c +0 -1138
- data/ext/zstdlib/zstd-1.4.5/lib/compress/zstd_lazy.h +0 -67
- data/ext/zstdlib/zstd-1.4.5/lib/compress/zstdmt_compress.h +0 -192
- data/ext/zstdlib/zstd.mk +0 -14
- data/lib/2.2/zstdlib.so +0 -0
- data/lib/2.3/zstdlib.so +0 -0
- data/lib/2.4/zstdlib.so +0 -0
- data/lib/2.5/zstdlib.so +0 -0
- data/lib/2.6/zstdlib.so +0 -0
- data/lib/2.7/zstdlib.so +0 -0
| @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            /* ******************************************************************
         | 
| 2 2 | 
             
             * hist : Histogram functions
         | 
| 3 3 | 
             
             * part of Finite State Entropy project
         | 
| 4 | 
            -
             * Copyright (c)  | 
| 4 | 
            +
             * Copyright (c) Yann Collet, Facebook, Inc.
         | 
| 5 5 | 
             
             *
         | 
| 6 6 | 
             
             *  You can contact the author at :
         | 
| 7 7 | 
             
             *  - FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy
         | 
| @@ -34,7 +34,7 @@ unsigned HIST_count_simple(unsigned* count, unsigned* maxSymbolValuePtr, | |
| 34 34 | 
             
                unsigned maxSymbolValue = *maxSymbolValuePtr;
         | 
| 35 35 | 
             
                unsigned largestCount=0;
         | 
| 36 36 |  | 
| 37 | 
            -
                 | 
| 37 | 
            +
                ZSTD_memset(count, 0, (maxSymbolValue+1) * sizeof(*count));
         | 
| 38 38 | 
             
                if (srcSize==0) { *maxSymbolValuePtr = 0; return 0; }
         | 
| 39 39 |  | 
| 40 40 | 
             
                while (ip<end) {
         | 
| @@ -60,9 +60,9 @@ typedef enum { trustInput, checkMaxSymbolValue } HIST_checkInput_e; | |
| 60 60 | 
             
             * this design makes better use of OoO cpus,
         | 
| 61 61 | 
             
             * and is noticeably faster when some values are heavily repeated.
         | 
| 62 62 | 
             
             * But it needs some additional workspace for intermediate tables.
         | 
| 63 | 
            -
             * `workSpace`  | 
| 63 | 
            +
             * `workSpace` must be a U32 table of size >= HIST_WKSP_SIZE_U32.
         | 
| 64 64 | 
             
             * @return : largest histogram frequency,
         | 
| 65 | 
            -
             *           or an error code (notably when histogram  | 
| 65 | 
            +
             *           or an error code (notably when histogram's alphabet is larger than *maxSymbolValuePtr) */
         | 
| 66 66 | 
             
            static size_t HIST_count_parallel_wksp(
         | 
| 67 67 | 
             
                                            unsigned* count, unsigned* maxSymbolValuePtr,
         | 
| 68 68 | 
             
                                            const void* source, size_t sourceSize,
         | 
| @@ -71,22 +71,21 @@ static size_t HIST_count_parallel_wksp( | |
| 71 71 | 
             
            {
         | 
| 72 72 | 
             
                const BYTE* ip = (const BYTE*)source;
         | 
| 73 73 | 
             
                const BYTE* const iend = ip+sourceSize;
         | 
| 74 | 
            -
                 | 
| 74 | 
            +
                size_t const countSize = (*maxSymbolValuePtr + 1) * sizeof(*count);
         | 
| 75 75 | 
             
                unsigned max=0;
         | 
| 76 76 | 
             
                U32* const Counting1 = workSpace;
         | 
| 77 77 | 
             
                U32* const Counting2 = Counting1 + 256;
         | 
| 78 78 | 
             
                U32* const Counting3 = Counting2 + 256;
         | 
| 79 79 | 
             
                U32* const Counting4 = Counting3 + 256;
         | 
| 80 80 |  | 
| 81 | 
            -
                memset(workSpace, 0, 4*256*sizeof(unsigned));
         | 
| 82 | 
            -
             | 
| 83 81 | 
             
                /* safety checks */
         | 
| 82 | 
            +
                assert(*maxSymbolValuePtr <= 255);
         | 
| 84 83 | 
             
                if (!sourceSize) {
         | 
| 85 | 
            -
                     | 
| 84 | 
            +
                    ZSTD_memset(count, 0, countSize);
         | 
| 86 85 | 
             
                    *maxSymbolValuePtr = 0;
         | 
| 87 86 | 
             
                    return 0;
         | 
| 88 87 | 
             
                }
         | 
| 89 | 
            -
                 | 
| 88 | 
            +
                ZSTD_memset(workSpace, 0, 4*256*sizeof(unsigned));
         | 
| 90 89 |  | 
| 91 90 | 
             
                /* by stripes of 16 bytes */
         | 
| 92 91 | 
             
                {   U32 cached = MEM_read32(ip); ip += 4;
         | 
| @@ -118,21 +117,18 @@ static size_t HIST_count_parallel_wksp( | |
| 118 117 | 
             
                /* finish last symbols */
         | 
| 119 118 | 
             
                while (ip<iend) Counting1[*ip++]++;
         | 
| 120 119 |  | 
| 121 | 
            -
                if (check) {   /* verify stats will fit into destination table */
         | 
| 122 | 
            -
                    U32 s; for (s=255; s>maxSymbolValue; s--) {
         | 
| 123 | 
            -
                        Counting1[s] += Counting2[s] + Counting3[s] + Counting4[s];
         | 
| 124 | 
            -
                        if (Counting1[s]) return ERROR(maxSymbolValue_tooSmall);
         | 
| 125 | 
            -
                }   }
         | 
| 126 | 
            -
             | 
| 127 120 | 
             
                {   U32 s;
         | 
| 128 | 
            -
                     | 
| 129 | 
            -
             | 
| 130 | 
            -
                         | 
| 131 | 
            -
                        if (count[s] > max) max = count[s];
         | 
| 121 | 
            +
                    for (s=0; s<256; s++) {
         | 
| 122 | 
            +
                        Counting1[s] += Counting2[s] + Counting3[s] + Counting4[s];
         | 
| 123 | 
            +
                        if (Counting1[s] > max) max = Counting1[s];
         | 
| 132 124 | 
             
                }   }
         | 
| 133 125 |  | 
| 134 | 
            -
                 | 
| 135 | 
            -
             | 
| 126 | 
            +
                {   unsigned maxSymbolValue = 255;
         | 
| 127 | 
            +
                    while (!Counting1[maxSymbolValue]) maxSymbolValue--;
         | 
| 128 | 
            +
                    if (check && maxSymbolValue > *maxSymbolValuePtr) return ERROR(maxSymbolValue_tooSmall);
         | 
| 129 | 
            +
                    *maxSymbolValuePtr = maxSymbolValue;
         | 
| 130 | 
            +
                    ZSTD_memmove(count, Counting1, countSize);   /* in case count & Counting1 are overlapping */
         | 
| 131 | 
            +
                }
         | 
| 136 132 | 
             
                return (size_t)max;
         | 
| 137 133 | 
             
            }
         | 
| 138 134 |  | 
| @@ -152,14 +148,6 @@ size_t HIST_countFast_wksp(unsigned* count, unsigned* maxSymbolValuePtr, | |
| 152 148 | 
             
                return HIST_count_parallel_wksp(count, maxSymbolValuePtr, source, sourceSize, trustInput, (U32*)workSpace);
         | 
| 153 149 | 
             
            }
         | 
| 154 150 |  | 
| 155 | 
            -
            /* fast variant (unsafe : won't check if src contains values beyond count[] limit) */
         | 
| 156 | 
            -
            size_t HIST_countFast(unsigned* count, unsigned* maxSymbolValuePtr,
         | 
| 157 | 
            -
                                 const void* source, size_t sourceSize)
         | 
| 158 | 
            -
            {
         | 
| 159 | 
            -
                unsigned tmpCounters[HIST_WKSP_SIZE_U32];
         | 
| 160 | 
            -
                return HIST_countFast_wksp(count, maxSymbolValuePtr, source, sourceSize, tmpCounters, sizeof(tmpCounters));
         | 
| 161 | 
            -
            }
         | 
| 162 | 
            -
             | 
| 163 151 | 
             
            /* HIST_count_wksp() :
         | 
| 164 152 | 
             
             * Same as HIST_count(), but using an externally provided scratch buffer.
         | 
| 165 153 | 
             
             * `workSpace` size must be table of >= HIST_WKSP_SIZE_U32 unsigned */
         | 
| @@ -175,9 +163,19 @@ size_t HIST_count_wksp(unsigned* count, unsigned* maxSymbolValuePtr, | |
| 175 163 | 
             
                return HIST_countFast_wksp(count, maxSymbolValuePtr, source, sourceSize, workSpace, workSpaceSize);
         | 
| 176 164 | 
             
            }
         | 
| 177 165 |  | 
| 166 | 
            +
            #ifndef ZSTD_NO_UNUSED_FUNCTIONS
         | 
| 167 | 
            +
            /* fast variant (unsafe : won't check if src contains values beyond count[] limit) */
         | 
| 168 | 
            +
            size_t HIST_countFast(unsigned* count, unsigned* maxSymbolValuePtr,
         | 
| 169 | 
            +
                                 const void* source, size_t sourceSize)
         | 
| 170 | 
            +
            {
         | 
| 171 | 
            +
                unsigned tmpCounters[HIST_WKSP_SIZE_U32];
         | 
| 172 | 
            +
                return HIST_countFast_wksp(count, maxSymbolValuePtr, source, sourceSize, tmpCounters, sizeof(tmpCounters));
         | 
| 173 | 
            +
            }
         | 
| 174 | 
            +
             | 
| 178 175 | 
             
            size_t HIST_count(unsigned* count, unsigned* maxSymbolValuePtr,
         | 
| 179 176 | 
             
                             const void* src, size_t srcSize)
         | 
| 180 177 | 
             
            {
         | 
| 181 178 | 
             
                unsigned tmpCounters[HIST_WKSP_SIZE_U32];
         | 
| 182 179 | 
             
                return HIST_count_wksp(count, maxSymbolValuePtr, src, srcSize, tmpCounters, sizeof(tmpCounters));
         | 
| 183 180 | 
             
            }
         | 
| 181 | 
            +
            #endif
         | 
| @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            /* ******************************************************************
         | 
| 2 2 | 
             
             * hist : Histogram functions
         | 
| 3 3 | 
             
             * part of Finite State Entropy project
         | 
| 4 | 
            -
             * Copyright (c)  | 
| 4 | 
            +
             * Copyright (c) Yann Collet, Facebook, Inc.
         | 
| 5 5 | 
             
             *
         | 
| 6 6 | 
             
             *  You can contact the author at :
         | 
| 7 7 | 
             
             *  - FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy
         | 
| @@ -14,7 +14,7 @@ | |
| 14 14 | 
             
            ****************************************************************** */
         | 
| 15 15 |  | 
| 16 16 | 
             
            /* --- dependencies --- */
         | 
| 17 | 
            -
            #include  | 
| 17 | 
            +
            #include "../common/zstd_deps.h"   /* size_t */
         | 
| 18 18 |  | 
| 19 19 |  | 
| 20 20 | 
             
            /* --- simple histogram functions --- */
         |