mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 20:49:49 +04: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
|