summaryrefslogtreecommitdiff
path: root/neozip/insert_string_p.h
diff options
context:
space:
mode:
authorMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-02 19:56:09 +0300
committerMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-02 19:56:09 +0300
commit7fb132859fda54aa96bc9dd46d302b343eeb5a02 (patch)
treeb43ae77d7451fb470a260c03349a1caf2846c5e5 /neozip/insert_string_p.h
parentb1e34e861b5d732afe828d58aad2c638135061fd (diff)
parentc2712b8a345191f6ed79558c089777df94590087 (diff)
downloadProject-Tick-7fb132859fda54aa96bc9dd46d302b343eeb5a02.tar.gz
Project-Tick-7fb132859fda54aa96bc9dd46d302b343eeb5a02.zip
Add 'neozip/' from commit 'c2712b8a345191f6ed79558c089777df94590087'
git-subtree-dir: neozip git-subtree-mainline: b1e34e861b5d732afe828d58aad2c638135061fd git-subtree-split: c2712b8a345191f6ed79558c089777df94590087
Diffstat (limited to 'neozip/insert_string_p.h')
-rw-r--r--neozip/insert_string_p.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/neozip/insert_string_p.h b/neozip/insert_string_p.h
new file mode 100644
index 0000000000..e768b3eab1
--- /dev/null
+++ b/neozip/insert_string_p.h
@@ -0,0 +1,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