mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-31 12:00:38 +00:00
Fix some comments
This commit is contained in:
parent
944ec75687
commit
a2c3388e49
1 changed files with 2 additions and 2 deletions
4
stat.c
4
stat.c
|
@ -290,7 +290,7 @@ typedef struct hash_node_t {
|
|||
* }
|
||||
*
|
||||
* The two u32s that form the key are the same value x (pulled from data)
|
||||
* this premix stage will be perform the same results for both. Unrolled
|
||||
* this premix stage will perform the same results for both values. Unrolled
|
||||
* this produces just:
|
||||
* x *= m;
|
||||
* x ^= x >> r;
|
||||
|
@ -301,7 +301,7 @@ typedef struct hash_node_t {
|
|||
* h *= m;
|
||||
* h ^= x;
|
||||
*
|
||||
* This appears to be fine, except what happens when m == 1, well x
|
||||
* This appears to be fine, except what happens when m == 1? well x
|
||||
* cancels out entierly, leaving just:
|
||||
* x ^= x >> r;
|
||||
* h ^= x;
|
||||
|
|
Loading…
Reference in a new issue