Searched defs:HSIZE (Results 1 - 2 of 2) sorted by relevance

/vbox/src/libs/liblzf-3.4/cs/
H A DCLZF.cs117 UInt32 HSIZE=(1<<14); field in class:LZF.NET.CLZF
141 return ((h ^ (h << 5)) >> (int)(((3*8 - HLOG)) - h*5) & (HSIZE - 1));
/vbox/src/libs/liblzf-3.4/
H A Dlzf_c.c43 #define HSIZE (1 << (HLOG)) macro
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))
75 # define IDX(h) ((h) & (HSIZE - 1))
146 for (hslot = htab; hslot < htab + HSIZE; hslot++)

Completed in 42 milliseconds