mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
6 lines
132 B
Python
6 lines
132 B
Python
def gnu_sym_hash(name: str) -> int:
|
|
h = 0x1505
|
|
for c in name:
|
|
h = ((h << 5) + h + ord(c)) & 0xFFFFFFFF
|
|
return h
|