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
| 1916 | // - We don't do 'current += 2; continue;' after handling ### to keep the code smaller/faster (measured ~10% diff in Debug build) |
| 1917 | // FIXME-OPT: Replace with e.g. FNV1a hash? CRC32 pretty much randomly access 1KB. Need to do proper measurements. |
| 1918 | ImGuiID ImHashStr(const char* data_p, size_t data_size, ImU32 seed) |
| 1919 | { |
| 1920 | seed = ~seed; |
| 1921 | ImU32 crc = seed; |
| 1922 | const unsigned char* data = (const unsigned char*)data_p; |
| 1923 | const ImU32* crc32_lut = GCrc32LookupTable; |
| 1924 | if (data_size != 0) |
| 1925 | { |
| 1926 | while (data_size-- != 0) |
| 1927 | { |
| 1928 | unsigned char c = *data++; |
| 1929 | if (c == '#' && data_size >= 2 && data[0] == '#' && data[1] == '#') |
| 1930 | crc = seed; |
| 1931 | crc = (crc >> 8) ^ crc32_lut[(crc & 0xFF) ^ c]; |
| 1932 | } |
| 1933 | } |
| 1934 | else |
| 1935 | { |
| 1936 | while (unsigned char c = *data++) |
| 1937 | { |
| 1938 | if (c == '#' && data[0] == '#' && data[1] == '#') |
| 1939 | crc = seed; |
| 1940 | crc = (crc >> 8) ^ crc32_lut[(crc & 0xFF) ^ c]; |
| 1941 | } |
| 1942 | } |
| 1943 | return ~crc; |
| 1944 | } |
| 1945 | |
| 1946 | //----------------------------------------------------------------------------- |
| 1947 | // [SECTION] MISC HELPERS/UTILITIES (File functions) |
no outgoing calls
no test coverage detected