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
| 2135 | // - We don't do 'current += 2; continue;' after handling ### to keep the code smaller/faster (measured ~10% diff in Debug build) |
| 2136 | // FIXME-OPT: Replace with e.g. FNV1a hash? CRC32 pretty much randomly access 1KB. Need to do proper measurements. |
| 2137 | ImGuiID ImHashStr(const char* data_p, size_t data_size, ImGuiID seed) |
| 2138 | { |
| 2139 | seed = ~seed; |
| 2140 | ImU32 crc = seed; |
| 2141 | const unsigned char* data = (const unsigned char*)data_p; |
| 2142 | const ImU32* crc32_lut = GCrc32LookupTable; |
| 2143 | if (data_size != 0) |
| 2144 | { |
| 2145 | while (data_size-- != 0) |
| 2146 | { |
| 2147 | unsigned char c = *data++; |
| 2148 | if (c == '#' && data_size >= 2 && data[0] == '#' && data[1] == '#') |
| 2149 | crc = seed; |
| 2150 | crc = (crc >> 8) ^ crc32_lut[(crc & 0xFF) ^ c]; |
| 2151 | } |
| 2152 | } |
| 2153 | else |
| 2154 | { |
| 2155 | while (unsigned char c = *data++) |
| 2156 | { |
| 2157 | if (c == '#' && data[0] == '#' && data[1] == '#') |
| 2158 | crc = seed; |
| 2159 | crc = (crc >> 8) ^ crc32_lut[(crc & 0xFF) ^ c]; |
| 2160 | } |
| 2161 | } |
| 2162 | return ~crc; |
| 2163 | } |
| 2164 | |
| 2165 | //----------------------------------------------------------------------------- |
| 2166 | // [SECTION] MISC HELPERS/UTILITIES (File functions) |
no outgoing calls
no test coverage detected