Lines Matching refs:hash
109 * futex_hash - Return the hash bucket in the global hash
110 * @key: Pointer to the futex key for which the hash is calculated
112 * We hash on the keys returned from get_futex_key (see below) and return the
113 * corresponding hash bucket in the global hash.
117 u32 hash = jhash2((u32 *)key, offsetof(typeof(*key), both.offset) / 4,
120 return &futex_queues[hash & (futex_hashsize - 1)];
434 * @hb: the hash bucket the futex_q's reside in
628 * hash bucket. The hash bucket lock (i.e. lock_ptr) is held.