HSIZE
for (hslot = htab; hslot < htab + HSIZE; hslot++)
# define IDX(h) ((( h >> (3*8 - HLOG)) - h ) & (HSIZE - 1))
# define IDX(h) ((( h >> (3*8 - HLOG)) - h*5) & (HSIZE - 1))
# define IDX(h) ((((h ^ (h << 5)) >> (3*8 - HLOG)) - h*5) & (HSIZE - 1))
# define IDX(h) ((h) & (HSIZE - 1))
rp->width = HSIZE(edid->standard_timings[i]);
rp->height = HSIZE(edid->standard_timings[i]);
rp->height = HSIZE(edid->standard_timings[i]) * 3 / 4;
rp->height = HSIZE(edid->standard_timings[i]) * 4 / 5;
rp->height = HSIZE(edid->standard_timings[i]) * 9 / 16;
count_int zs_htab [HSIZE];
u_short zs_codetab [HSIZE];
hsize = HSIZE; /* For dynamic table sizing. */
zs->zs_hsize = HSIZE; /* For dynamic table sizing. */
count_int zs_htab [HSIZE];
u_short zs_codetab [HSIZE];