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

/vbox/src/libs/liblzf-3.4/
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
129 typedef const u8 *LZF_STATE[1 << (HLOG)];
H A Dlzf_c.c43 #define HSIZE (1 << (HLOG))
55 # define IDX(h) ((( h >> (3*8 - HLOG)) - h ) & (HSIZE - 1))
57 # define IDX(h) ((( h >> (3*8 - HLOG)) - h*5) & (HSIZE - 1))
59 # define IDX(h) ((((h ^ (h << 5)) >> (3*8 - HLOG)) - h*5) & (HSIZE - 1))
64 * ((h * 57321 >> (3*8 - HLOG)) & (HSIZE - 1))
/vbox/src/libs/liblzf-3.4/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));
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dpdh.h47 typedef PDH_HLOG HLOG; typedef

Completed in 40 milliseconds