Home
last modified time | relevance | path

Searched refs:HLOG (Results 1 – 2 of 2) sorted by relevance

/freebsd/sbin/hastd/
H A Dlzf.h109 #ifndef HLOG
110 # define HLOG 16 macro
188 typedef const u8 *LZF_STATE[1 << (HLOG)];
H A Dlzf.c41 #define HSIZE (1 << (HLOG))
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))