summaryrefslogtreecommitdiff
path: root/neozip/insert_string_p.h
blob: e768b3eab1f5b9cf234f4bb193c32844976bef09 (plain)
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
40
41
42
43
44
#ifndef INSERT_STRING_P_H_
#define INSERT_STRING_P_H_

/* insert_string_p.h -- insert_string function generator
 *
 * Copyright (C) 1995-2024 Jean-loup Gailly and Mark Adler
 * For conditions of distribution and use, see copyright notice in zlib.h
 *
 */

// Normal insert_string, levels 1-8
#define HASH_SLIDE           16

#define HASH_CALC(h, val)    h = ((val * 2654435761U) >> HASH_SLIDE);
#define HASH_CALC_MASK       HASH_MASK
#define HASH_CALC_VAR        h
#define HASH_CALC_VAR_INIT   uint32_t h
#define HASH_CALC_OFFSET     0

#define UPDATE_HASH          update_hash
#define INSERT_STRING        insert_string_static
#define QUICK_INSERT_STRING  quick_insert_string
#define QUICK_INSERT_VALUE   quick_insert_value

#include "insert_string_tpl.h"

// Rolling insert_string, level 9
#define HASH_SLIDE           5

#define HASH_CALC(h, val)    h = ((h << HASH_SLIDE) ^ ((uint8_t)val))
#define HASH_CALC_VAR        s->ins_h
#define HASH_CALC_VAR_INIT
#define HASH_CALC_READ       val = strstart[0]
#define HASH_CALC_MASK       (32768u - 1u)
#define HASH_CALC_OFFSET     (STD_MIN_MATCH-1)

#define UPDATE_HASH          update_hash_roll
#define INSERT_STRING        insert_string_roll_static
#define QUICK_INSERT_STRING  quick_insert_string_roll
#define QUICK_INSERT_VALUE   quick_insert_value_roll

#include "insert_string_tpl.h"

#endif