Searched refs:HSIZE (Results 1 - 5 of 5) sorted by last modified time

/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_write_set_format_cpio_binary.c83 #define HSIZE 26 macro
176 if (sizeof(struct cpio_binary_header) != HSIZE) {
522 ret = __archive_write_output(a, &h, HSIZE);
H A Darchive_write_add_filter_compress.c77 #define HSIZE 69001 /* 95% occupancy */ macro
78 #define HSHIFT 8 /* 8 - trunc(log2(HSIZE / 65536)) */
96 int hashtab [HSIZE];
97 unsigned short codetab [HSIZE];
368 disp = HSIZE - i;
371 i += HSIZE;
/freebsd-11-stable/sbin/hastd/
H A Dlzf.c41 #define HSIZE (1 << (HLOG)) macro
53 # define IDX(h) ((( h >> (3*8 - HLOG)) - h ) & (HSIZE - 1))
55 # define IDX(h) ((( h >> (3*8 - HLOG)) - h*5) & (HSIZE - 1))
57 # define IDX(h) ((((h ^ (h << 5)) >> (3*8 - HLOG)) - h*5) & (HSIZE - 1))
62 * ((h * 57321 >> (3*8 - HLOG)) & (HSIZE - 1))
73 # define IDX(h) ((h) & (HSIZE - 1))
139 for (hslot = htab; hslot < htab + HSIZE; hslot++)
/freebsd-11-stable/usr.bin/gzip/
H A Dzuncompress.c48 #define HSIZE 69001 /* 95% occupancy */ /* XXX may not need HSIZE */ macro
94 count_int zs_htab [HSIZE];
95 u_short zs_codetab [HSIZE];
182 zs->zs_hsize = HSIZE; /* For dynamic table sizing. */
/freebsd-11-stable/usr.bin/compress/
H A Dzopen.c76 #define HSIZE 69001 /* 95% occupancy */ macro
107 count_int zs_htab [HSIZE];
108 u_short zs_codetab [HSIZE];
708 hsize = HSIZE; /* For dynamic table sizing. */

Completed in 107 milliseconds