Lines Matching defs:h
39 #include "lzf.h"
53 # define IDX(h) ((( h >> (3*8 - HLOG)) - h ) & (HSIZE - 1))
55 # define IDX(h) ((( h >> (3*8 - HLOG)) - h*5) & (HSIZE - 1))
57 # define IDX(h) ((((h ^ (h << 5)) >> (3*8 - HLOG)) - h*5) & (HSIZE - 1))
62 * ((h * 57321 >> (3*8 - HLOG)) & (HSIZE - 1))
66 * (int)(cos(h & 0xffffff) * 1e6)
73 # define IDX(h) ((h) & (HSIZE - 1))
302 # include <errno.h>