MCPcopy Create free account
hub / github.com/WheretIB/nullc / StringHashContinue

Function StringHashContinue

NULLC/StrAlgo.cpp:20–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18}
19
20unsigned int StringHashContinue(unsigned int hash, const char *str)
21{
22 int c;
23 while((c = *str++) != 0)
24 hash = ((hash << 5) + hash) + c;
25 return hash;
26}
27
28unsigned int StringHashContinue(unsigned int hash, const char *str, const char *end)
29{

Callers 10

PushNamespaceFunction · 0.85
IsNamespaceFunction · 0.85
AddNamespaceToHashFunction · 0.85
NamespaceSelectFunction · 0.85
AddGetAddressNodeFunction · 0.85
GetCurrentArgumentTypeFunction · 0.85
AddSetVariableNodeFunction · 0.85
AddMemberAccessNodeFunction · 0.85
HasConstructorFunction · 0.85
AddFunctionCallNodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected