MCPcopy Create free account
hub / github.com/Pagghiu/SaneCppLibraries / StringVector_destroy

Function StringVector_destroy

Tools/ToolsBootstrap.c:395–405  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

393
394#ifdef _WIN32
395unsigned long long String_hashFnv1a(const char* str) {
396 unsigned long long hash = 1469598103934665603ULL;
397 while (str && *str) {
398 hash ^= (unsigned char)*str++;
399 hash *= 1099511628211ULL;
400 }
401 return hash;
402}
403
404unsigned long long String_hashCombine(unsigned long long hash, const char* str) {
405 while (str && *str) {
406 hash ^= (unsigned char)*str++;
407 hash *= 1099511628211ULL;
408 }

Callers 4

CommandLine_destroyFunction · 0.85
needsRebuildToolsFunction · 0.85
needsRebuildToolObjFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected