MCPcopy Create free account
hub / github.com/KebsCS/KBotExt / ImHashStr

Function ImHashStr

KBotExt/imgui/imgui.cpp:1981–2007  ·  view source on GitHub ↗

Zero-terminated string hash, with support for ### to reset back to seed value We support a syntax of "label###id" where only "###id" is included in the hash, and only "label" gets displayed. Because this syntax is rarely used we are optimizing for the common case. - If we reach ### in the string we discard the hash so far and reset to the seed. - We don't do 'current += 2; continue;' after handlin

Source from the content-addressed store, hash-verified

1979// - We don't do 'current += 2; continue;' after handling ### to keep the code smaller/faster (measured ~10% diff in Debug build)
1980// FIXME-OPT: Replace with e.g. FNV1a hash? CRC32 pretty much randomly access 1KB. Need to do proper measurements.
1981ImGuiID ImHashStr(const char* data_p, size_t data_size, ImGuiID seed)
1982{
1983 seed = ~seed;
1984 ImU32 crc = seed;
1985 const unsigned char* data = (const unsigned char*)data_p;
1986 const ImU32* crc32_lut = GCrc32LookupTable;
1987 if (data_size != 0)
1988 {
1989 while (data_size-- != 0)
1990 {
1991 unsigned char c = *data++;
1992 if (c == '#' && data_size >= 2 && data[0] == '#' && data[1] == '#')
1993 crc = seed;
1994 crc = (crc >> 8) ^ crc32_lut[(crc & 0xFF) ^ c];
1995 }
1996 }
1997 else
1998 {
1999 while (unsigned char c = *data++)
2000 {
2001 if (c == '#' && data[0] == '#' && data[1] == '#')
2002 crc = seed;
2003 crc = (crc >> 8) ^ crc32_lut[(crc & 0xFF) ^ c];
2004 }
2005 }
2006 return ~crc;
2007}
2008
2009//-----------------------------------------------------------------------------
2010// [SECTION] MISC HELPERS/UTILITIES (File functions)

Callers 15

TableOpenContextMenuMethod · 0.85
InitializeMethod · 0.85
ImGuiWindowMethod · 0.85
GetIDMethod · 0.85
BeginChildExMethod · 0.85
FindWindowByNameMethod · 0.85
GetIDWithSeedMethod · 0.85
NavUpdateWindowingMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected