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

/freebsd-13-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-13-stable/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];
368 disp = HSIZE - i;
371 i += HSIZE;
/freebsd-13-stable/usr.bin/gzip/
H A Dzuncompress.c50 #define HSIZE 69001 /* 95% occupancy */ /* XXX may not need HSIZE */ macro
96 count_int zs_htab [HSIZE];
97 u_short zs_codetab [HSIZE];
184 zs->zs_hsize = HSIZE; /* For dynamic table sizing. */
/freebsd-13-stable/usr.bin/compress/
H A Dzopen.c78 #define HSIZE 69001 /* 95% occupancy */ macro
109 count_int zs_htab [HSIZE];
110 u_short zs_codetab [HSIZE];
710 hsize = HSIZE; /* For dynamic table sizing. */
/freebsd-13-stable/stand/common/
H A Dgfx_fb.h117 #define HSIZE(x) (((x & 0xff) + 31) * 8) macro
H A Dgfx_fb.c2802 rp->width = HSIZE(edid->standard_timings[i]);
2805 rp->height = HSIZE(edid->standard_timings[i]);
2812 rp->height = HSIZE(edid->standard_timings[i]) * 3 / 4;
2815 rp->height = HSIZE(edid->standard_timings[i]) * 4 / 5;
2818 rp->height = HSIZE(edid->standard_timings[i]) * 9 / 16;

Completed in 187 milliseconds