File: external_matchfinder.h

package info (click to toggle)
mame 0.276%2Bdfsg.1-1%2Bdeb13u1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 906,088 kB
  • sloc: cpp: 5,180,971; xml: 2,205,474; ansic: 748,917; sh: 34,465; lisp: 20,006; python: 16,532; makefile: 13,284; java: 8,485; yacc: 8,152; javascript: 7,083; cs: 6,013; asm: 4,786; ada: 1,681; pascal: 1,195; lex: 1,174; perl: 585; ruby: 373; awk: 35
file content (39 lines) | stat: -rw-r--r-- 1,092 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 * Copyright (c) Yann Collet, Meta Platforms, 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 EXTERNAL_MATCHFINDER
#define EXTERNAL_MATCHFINDER

#define ZSTD_STATIC_LINKING_ONLY
#include "zstd.h"

/* See external_matchfinder.c for details on each test case */
typedef enum {
    EMF_ZERO_SEQS = 0,
    EMF_ONE_BIG_SEQ = 1,
    EMF_LOTS_OF_SEQS = 2,
    EMF_BIG_ERROR = 3,
    EMF_SMALL_ERROR = 4,
    EMF_INVALID_OFFSET = 5,
    EMF_INVALID_MATCHLEN = 6,
    EMF_INVALID_LITLEN = 7,
    EMF_INVALID_LAST_LITS = 8
} EMF_testCase;

size_t zstreamSequenceProducer(
  void* sequenceProducerState,
  ZSTD_Sequence* outSeqs, size_t outSeqsCapacity,
  const void* src, size_t srcSize,
  const void* dict, size_t dictSize,
  int compressionLevel,
  size_t windowSize
);

#endif /* EXTERNAL_MATCHFINDER */