Searched refs:HSIZE (Results 1 – 8 of 8) sorted by relevance
41 #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++) in lzf_compress()
75 #define HSIZE 69001 /* 95% occupancy */ macro94 int hashtab [HSIZE];95 unsigned short codetab [HSIZE];366 disp = HSIZE - i; in archive_compressor_compress_write()369 i += HSIZE; in archive_compressor_compress_write()
82 #define HSIZE 26 macro175 if (sizeof(struct cpio_binary_header) != HSIZE) { in archive_write_set_format_cpio_binary()521 ret = __archive_write_output(a, &h, HSIZE); in write_header()
49 #define HSIZE 69001 /* 95% occupancy */ /* XXX may not need HSIZE */ macro95 count_int zs_htab [HSIZE];96 u_short zs_codetab [HSIZE];183 zs->zs_hsize = HSIZE; /* For dynamic table sizing. */ in zdopen()
73 #define HSIZE 69001 /* 95% occupancy */ macro104 count_int zs_htab [HSIZE];105 u_short zs_codetab [HSIZE];706 hsize = HSIZE; /* For dynamic table sizing. */ in zopen()
115 #define HSIZE(x) (((x & 0xff) + 31) * 8) macro
2883 rp->width = HSIZE(edid->standard_timings[i]); in gfx_get_edid_resolution() 2886 rp->height = HSIZE(edid->standard_timings[i]); in gfx_get_edid_resolution() 2893 rp->height = HSIZE(edid->standard_timings[i]) * 3 / 4; in gfx_get_edid_resolution() 2896 rp->height = HSIZE(edid->standard_timings[i]) * 4 / 5; in gfx_get_edid_resolution() 2899 rp->height = HSIZE(edid->standard_timings[i]) * 9 / 16; in gfx_get_edid_resolution()
38 * Set HSIZE depending on BITS. Set BITS depending on USERMEM. Unrolled