Home
last modified time | relevance | path

Searched refs:HSIZE (Results 1 – 8 of 8) sorted by relevance

/freebsd/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++) in lzf_compress()
/freebsd/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_compress.c75 #define HSIZE 69001 /* 95% occupancy */ macro
94 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()
H A Darchive_write_set_format_cpio_binary.c82 #define HSIZE 26 macro
175 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()
/freebsd/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. */ in zdopen()
/freebsd/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];
706 hsize = HSIZE; /* For dynamic table sizing. */ in zopen()
/freebsd/stand/common/
H A Dgfx_fb.h115 #define HSIZE(x) (((x & 0xff) + 31) * 8) macro
H A Dgfx_fb.c2883 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()
/freebsd/usr.bin/compress/doc/
H A Drevision.log38 * Set HSIZE depending on BITS. Set BITS depending on USERMEM. Unrolled