| 773 | } |
| 774 | |
| 775 | static unsigned strhash(const char *s) |
| 776 | { |
| 777 | /* fnv32 hash */ |
| 778 | unsigned hash = 2166136261U; |
| 779 | for (; *s; s++) |
| 780 | hash = (hash ^ *s) * 0x01000193; |
| 781 | return hash; |
| 782 | } |
| 783 | |
| 784 | struct symbol *sym_lookup(const char *name, int flags) |
| 785 | { |
no outgoing calls
no test coverage detected