Home
last modified time | relevance | path

Searched refs:HSIZE (Results 1 – 1 of 1) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dlzf_c.c39 #define HSIZE (1 << (HLOG)) macro
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))
71 # define IDX(h) ((h) & (HSIZE - 1))