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

/freebsd-current/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-current/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_compress.c75 #define HSIZE 69001 /* 95% occupancy */ macro
76 #define HSHIFT 8 /* 8 - trunc(log2(HSIZE / 65536)) */
94 int hashtab [HSIZE];
95 unsigned short codetab [HSIZE];
366 disp = HSIZE - i;
369 i += HSIZE;
H A Darchive_write_set_format_cpio_binary.c82 #define HSIZE 26 macro
175 if (sizeof(struct cpio_binary_header) != HSIZE) {
521 ret = __archive_write_output(a, &h, HSIZE);
/freebsd-current/usr.bin/gzip/
H A Dzuncompress.c49 #define HSIZE 69001 /* 95% occupancy */ /* XXX may not need HSIZE */ macro
95 count_int zs_htab [HSIZE];
96 u_short zs_codetab [HSIZE];
183 zs->zs_hsize = HSIZE; /* For dynamic table sizing. */
/freebsd-current/usr.bin/compress/
H A Dzopen.c73 #define HSIZE 69001 /* 95% occupancy */ macro
104 count_int zs_htab [HSIZE];
105 u_short zs_codetab [HSIZE];
705 hsize = HSIZE; /* For dynamic table sizing. */
/freebsd-current/stand/common/
H A Dgfx_fb.h115 #define HSIZE(x) (((x & 0xff) + 31) * 8) macro
H A Dgfx_fb.c2882 rp->width = HSIZE(edid->standard_timings[i]);
2885 rp->height = HSIZE(edid->standard_timings[i]);
2892 rp->height = HSIZE(edid->standard_timings[i]) * 3 / 4;
2895 rp->height = HSIZE(edid->standard_timings[i]) * 4 / 5;
2898 rp->height = HSIZE(edid->standard_timings[i]) * 9 / 16;

Completed in 185 milliseconds