I ended up using this one:
#define XDL_HASHLONG(v, b) ((((unsigned long) (v) >> ((CHAR_BIT * sizeof(unsigned long)) - (b))) + \
(unsigned long) (v)) & ((1UL << (b)) - 1))
The GR_PRIME selection does not make me feel good, and the 'static inline'
is puked-over by certain C compilers. It'd be probably fine to just use a
simple function, though the above should work just fine.
real 0m0.665s
user 0m0.655s
sys 0m0.010s
(Opteron 252)
- Davide
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html