Home
last modified time | relevance | path

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

/haiku/src/tools/fs_shell/
H A Dvfs.cpp557 #define VHASH(mountid, vnodeid) (((uint32_t)((vnodeid) >> 32) + (uint32_t)(vnodeid)) ^ (uint32_t)(m… in vnode_hash() macro
560 return VHASH(vnode->device, vnode->id) % range; in vnode_hash()
562 return VHASH(key->device, key->vnode) % range; in vnode_hash()
564 #undef VHASH in vnode_hash()
/haiku/src/system/kernel/fs/
H A Dvfs.cpp272 #define VHASH(mountid, vnodeid) \ macro
277 return VHASH(key.device, key.vnode); in HashKey()
282 return VHASH(vnode->device, vnode->id); in Hash()
285 #undef VHASH