Searched refs:HSIZE (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.0-release/sbin/hastd/
H A Dlzf.c39 #define HSIZE (1 << (HLOG)) macro
51 # define IDX(h) ((( h >> (3*8 - HLOG)) - h ) & (HSIZE - 1))
53 # define IDX(h) ((( h >> (3*8 - HLOG)) - h*5) & (HSIZE - 1))
55 # define IDX(h) ((((h ^ (h << 5)) >> (3*8 - HLOG)) - h*5) & (HSIZE - 1))
60 * ((h * 57321 >> (3*8 - HLOG)) & (HSIZE - 1))
71 # define IDX(h) ((h) & (HSIZE - 1))
137 for (hslot = htab; hslot < htab + HSIZE; hslot++)
/freebsd-10.0-release/contrib/libarchive/libarchive/
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];
373 disp = HSIZE - i;
376 i += HSIZE;
/freebsd-10.0-release/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-10.0-release/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 123 milliseconds