HomeSort by: relevance | last modified time | path
    Searched refs:LZF_HLOG (Results 1 - 2 of 2) sorted by relevancy

  /src/external/bsd/liblzf/dist/
lzfP.h 46 * Size of hashtable is (1 << LZF_HLOG) * sizeof (char *)
50 * For a low-memory/faster configuration, use LZF_HLOG == 13;
53 #ifndef LZF_HLOG
54 # define LZF_HLOG 16
133 typedef const u8 *LZF_STATE[1 << (LZF_HLOG)];
lzf_c.c 44 #define HSIZE (1 << (LZF_HLOG))
56 # define IDX(h) ((( h >> (3*8 - LZF_HLOG)) - h ) & (HSIZE - 1))
58 # define IDX(h) ((( h >> (3*8 - LZF_HLOG)) - h*5) & (HSIZE - 1))
60 # define IDX(h) ((((h ^ (h << 5)) >> (3*8 - LZF_HLOG)) - h*5) & (HSIZE - 1))
65 * ((h * 57321 >> (3*8 - LZF_HLOG)) & (HSIZE - 1))

Completed in 26 milliseconds