Searched refs:w_hash (Results 1 - 1 of 1) sorted by relevance

/freebsd-11.0-release/sys/kern/
H A Dsubr_witness.c471 static struct witness_hash w_hash; /* The witness hash table. */ variable in typeref:struct:witness_hash
2835 w_hash.wh_array[i] = NULL;
2837 w_hash.wh_size = WITNESS_HASH_SIZE;
2838 w_hash.wh_count = 0;
2862 hash = witness_hash_djb2(key, 0) % w_hash.wh_size;
2863 w = w_hash.wh_array[hash];
2888 hash = witness_hash_djb2(w->w_name, 0) % w_hash.wh_size;
2889 w->w_hash_next = w_hash.wh_array[hash];
2890 w_hash.wh_array[hash] = w;
2891 w_hash
[all...]

Completed in 495 milliseconds