HASH
#define HASH(d, b) ((((fs_off_t)d) << (sizeof(fs_off_t)*8 - 6)) | (b))
#define HASH(index, lastbyte) (((lastbyte << 8) ^ index) % HASHSIZE)