Searched refs:HLOG (Results 1 - 4 of 4) sorted by relevance

/external/liblzf/
H A DlzfP.h47 * Size of hashtable is (1 << HLOG) * sizeof (char *)
51 * For a low-memory/faster configuration, use HLOG == 13;
54 #ifndef HLOG
55 # define HLOG 16 macro
166 typedef LZF_HSLOT LZF_STATE[1 << (HLOG)];
H A Dlzf_c.c39 #define HSIZE (1 << (HLOG))
51 # define IDX(h) ((( h >> (3*8 - HLOG)) - h ) & (HSIZE - 1))
53 # define IDX(h) ((( h >> (3*8 - HLOG)) - h*5) & (HSIZE - 1))
55 # define IDX(h) ((((h ^ (h << 5)) >> (3*8 - HLOG)) - h*5) & (HSIZE - 1))
60 * ((h * 57321 >> (3*8 - HLOG)) & (HSIZE - 1))
/external/liblzf/src/org/liblzf/
H A DCLZF.java116 static int HLOG=14; field in class:CLZF
141 return ((((h ^ (h << 5)) >> (int) (3*8 - HLOG)) - h*5) & (HSIZE - 1));
/external/liblzf/cs/
H A DCLZF.cs116 UInt32 HLOG=14; field in class:LZF.NET.CLZF
141 return ((((h ^ (h << 5)) >> (int) (3*8 - HLOG)) - h*5) & (HSIZE - 1));

Completed in 140 milliseconds