Home
last modified time | relevance | path

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

/freebsd-14-stable/sbin/hastd/
HDlzf.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))
73 # define IDX(h) ((h) & (HSIZE - 1))
139 for (hslot = htab; hslot < htab + HSIZE; hslot++) in lzf_compress()
/freebsd-14-stable/contrib/libarchive/libarchive/
HDarchive_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()
HDarchive_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-14-stable/usr.bin/gzip/
HDzuncompress.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-14-stable/usr.bin/compress/
HDzopen.c76 #define HSIZE 69001 /* 95% occupancy */ macro
107 count_int zs_htab [HSIZE];
108 u_short zs_codetab [HSIZE];
709 hsize = HSIZE; /* For dynamic table sizing. */ in zopen()
/freebsd-14-stable/stand/common/
HDgfx_fb.h115 #define HSIZE(x) (((x & 0xff) + 31) * 8) macro
HDgfx_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-14-stable/usr.bin/compress/doc/
HDrevision.log38 * Set HSIZE depending on BITS. Set BITS depending on USERMEM. Unrolled