You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the strlen can be optimized by checking if any of the Nth chars is null , where N is constant for sizeof (return_type), in theory this hash have less collisions, but right now we have no reproducible collisions in the current string hashing algorithm used.
The text was updated successfully, but these errors were encountered:
original code from https://github.com/facebookarchive/warp
in C would be something like:
the strlen can be optimized by checking if any of the Nth chars is null , where N is constant for sizeof (return_type), in theory this hash have less collisions, but right now we have no reproducible collisions in the current string hashing algorithm used.
The text was updated successfully, but these errors were encountered: