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
| 2402 | // - We don't do 'current += 2; continue;' after handling ### to keep the code smaller/faster (measured ~10% diff in Debug build) |
| 2403 | // FIXME-OPT: Replace with e.g. FNV1a hash? CRC32 pretty much randomly access 1KB. Need to do proper measurements. |
| 2404 | ImGuiID ImHashStr(const char* data_p, size_t data_size, ImGuiID seed) |
| 2405 | { |
| 2406 | seed = ~seed; |
| 2407 | ImU32 crc = seed; |
| 2408 | const unsigned char* data = (const unsigned char*)data_p; |
| 2409 | #ifndef IMGUI_ENABLE_SSE4_2_CRC |
| 2410 | const ImU32* crc32_lut = GCrc32LookupTable; |
| 2411 | #endif |
| 2412 | if (data_size != 0) |
| 2413 | { |
| 2414 | while (data_size-- != 0) |
| 2415 | { |
| 2416 | unsigned char c = *data++; |
| 2417 | if (c == '#' && data_size >= 2 && data[0] == '#' && data[1] == '#') |
| 2418 | crc = seed; |
| 2419 | #ifndef IMGUI_ENABLE_SSE4_2_CRC |
| 2420 | crc = (crc >> 8) ^ crc32_lut[(crc & 0xFF) ^ c]; |
| 2421 | #else |
| 2422 | crc = _mm_crc32_u8(crc, c); |
| 2423 | #endif |
| 2424 | } |
| 2425 | } |
| 2426 | else |
| 2427 | { |
| 2428 | while (unsigned char c = *data++) |
| 2429 | { |
| 2430 | if (c == '#' && data[0] == '#' && data[1] == '#') |
| 2431 | crc = seed; |
| 2432 | #ifndef IMGUI_ENABLE_SSE4_2_CRC |
| 2433 | crc = (crc >> 8) ^ crc32_lut[(crc & 0xFF) ^ c]; |
| 2434 | #else |
| 2435 | crc = _mm_crc32_u8(crc, c); |
| 2436 | #endif |
| 2437 | } |
| 2438 | } |
| 2439 | return ~crc; |
| 2440 | } |
| 2441 | |
| 2442 | //----------------------------------------------------------------------------- |
| 2443 | // [SECTION] MISC HELPERS/UTILITIES (File functions) |
no outgoing calls
no test coverage detected