I'm trying 3 different implementation of FNV1A_64 hash.
1) Maatkit
SELECT FNV1A_64('1')
Result: -5808609649712063748
2) pyhash
import pyhash
hasher = pyhash.fnv1a_64()
print hasher('1')
Result: 53876069782339L
3) fnv
./fnv1a64 -s 1
Result: 0xaf63ac4c86019afc (12638134423997487000 decimal)
Why all the results are different ?