HomeSort by relevance Sort by last modified time
    Searched refs:HLOG (Results 1 - 4 of 4) sorted by null

  /external/liblzf/
lzfP.h 47 * 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
166 typedef LZF_HSLOT LZF_STATE[1 << (HLOG)];
lzf_c.c 39 #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/
CLZF.java 116 static int HLOG=14;
141 return ((((h ^ (h << 5)) >> (int) (3*8 - HLOG)) - h*5) & (HSIZE - 1));
  /external/liblzf/cs/
CLZF.cs 116 UInt32 HLOG=14;
141 return ((((h ^ (h << 5)) >> (int) (3*8 - HLOG)) - h*5) & (HSIZE - 1));

Completed in 2194 milliseconds