Home
last modified time | relevance | path

Searched refs:IGZIP_HIST_SIZE (Results 1 – 16 of 16) sorted by relevance

/isa-l/igzip/aarch64/
H A Doptions_aarch64.h44 #ifndef IGZIP_HIST_SIZE
45 #define IGZIP_HIST_SIZE (32 * 1024)
48 #if (IGZIP_HIST_SIZE > (32 * 1024))
49 #undef IGZIP_HIST_SIZE
50 #define IGZIP_HIST_SIZE (32 * 1024)
54 #if (IGZIP_HIST_SIZE > 8 * 1024)
55 #undef IGZIP_HIST_SIZE
56 #define IGZIP_HIST_SIZE (8 * 1024)
H A Dlz0a_const_aarch64.h36 .set D , IGZIP_HIST_SIZE // Amount of history
38 .set BSIZE , 2*IGZIP_HIST_SIZE + LA // Nominal buffer size
46 .set IGZIP_HASH_HIST_HASH_SIZE , IGZIP_HIST_SIZE
47 .set IGZIP_HASH_MAP_HASH_SIZE , IGZIP_HIST_SIZE
/isa-l/igzip/
H A Doptions.asm43 %ifndef IGZIP_HIST_SIZE
44 %define IGZIP_HIST_SIZE (32 * 1024)
47 %if (IGZIP_HIST_SIZE > (32 * 1024))
48 %undef IGZIP_HIST_SIZE
49 %define IGZIP_HIST_SIZE (32 * 1024)
53 %if (IGZIP_HIST_SIZE > 8 * 1024)
54 %undef IGZIP_HIST_SIZE
55 %define IGZIP_HIST_SIZE (8 * 1024)
H A Dlz0a_const.asm33 %assign D IGZIP_HIST_SIZE ;; Amount of history
35 %assign BSIZE 2*IGZIP_HIST_SIZE + LA ;; Nominal buffer size
43 %assign IGZIP_HASH_HIST_HASH_SIZE IGZIP_HIST_SIZE
44 %assign IGZIP_HASH_MAP_HASH_SIZE IGZIP_HIST_SIZE
H A Dhufftables_c.c32 #if (IGZIP_HIST_SIZE <= 8192)
H A Digzip_sync_flush_example.c60 printf("igzip_sync_flush_example\nWindow Size: %d K\n", IGZIP_HIST_SIZE / 1024); in main()
H A Digzip.c947 if (IGZIP_HIST_SIZE < ISAL_DEF_HIST_SIZE && state->dist_mask > IGZIP_HIST_SIZE - 1) in set_dist_mask()
948 state->dist_mask = IGZIP_HIST_SIZE - 1; in set_dist_mask()
1257 if (dict_len > IGZIP_HIST_SIZE) { in isal_deflate_process_dict()
1258 dict_data = dict_data + dict_len - IGZIP_HIST_SIZE; in isal_deflate_process_dict()
1259 dict_len = IGZIP_HIST_SIZE; in isal_deflate_process_dict()
1297 (dict->hist_size == 0) || (dict->hist_size > IGZIP_HIST_SIZE) || in isal_deflate_reset_dict()
1343 if (dict_len > IGZIP_HIST_SIZE) { in isal_deflate_set_dict()
1344 dict = dict + dict_len - IGZIP_HIST_SIZE; in isal_deflate_set_dict()
1345 dict_len = IGZIP_HIST_SIZE; in isal_deflate_set_dict()
1497 if (history_size > IGZIP_HIST_SIZE) in get_hist_size()
[all …]
H A Digzip_example.c64 printf("igzip_example\nWindow Size: %d K\n", IGZIP_HIST_SIZE / 1024); in main()
H A Dhuff_codes.h60 #define D IGZIP_HIST_SIZE /* Amount of history */
H A Digzip_file_perf.c230 printf("Window Size: %d K\n", IGZIP_HIST_SIZE / 1024); in main()
H A Digzip_semi_dyn_file_perf.c236 printf("Window Size: %d K\n", IGZIP_HIST_SIZE / 1024); in main()
H A Dgenerate_custom_hufftables.c218 IGZIP_HIST_SIZE); in fprint_header()
H A Digzip_inflate.c2132 if (dict_len > IGZIP_HIST_SIZE) { in isal_inflate_set_dict()
2133 dict = dict + dict_len - IGZIP_HIST_SIZE; in isal_inflate_set_dict()
2134 dict_len = IGZIP_HIST_SIZE; in isal_inflate_set_dict()
H A Dhuff_codes.c1362 int max_dist = convert_dist_to_dist_sym(IGZIP_HIST_SIZE); in isal_create_hufftables()
1449 int max_dist = convert_dist_to_dist_sym(IGZIP_HIST_SIZE); in isal_create_hufftables_subset()
H A Digzip_rand_test.c2235 dict_len = (rand() % IGZIP_HIST_SIZE) + 1; in test_compress()
2285 dict_len = (rand() % IGZIP_HIST_SIZE) + 1; in test_compress()
2767 printf("Window Size: %d K\n", IGZIP_HIST_SIZE / 1024); in main()
/isa-l/include/
H A Digzip_lib.h103 #ifndef IGZIP_HIST_SIZE
104 #define IGZIP_HIST_SIZE ISAL_DEF_HIST_SIZE macro
107 #if (IGZIP_HIST_SIZE > ISAL_DEF_HIST_SIZE)
108 #undef IGZIP_HIST_SIZE
109 #define IGZIP_HIST_SIZE ISAL_DEF_HIST_SIZE macro
113 #if (IGZIP_HIST_SIZE > 8 * IGZIP_K)
114 #undef IGZIP_HIST_SIZE
115 #define IGZIP_HIST_SIZE (8 * IGZIP_K) macro
122 #define IGZIP_HASH_HIST_SIZE IGZIP_HIST_SIZE
123 #define IGZIP_HASH_MAP_HASH_SIZE IGZIP_HIST_SIZE
[all …]