mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 01:03:22 +00: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
|