| 5 | |
| 6 | namespace das { |
| 7 | __forceinline uint64_t hash_function ( Context &, const void * x, size_t size ) { |
| 8 | return hash_block64((uint8_t *)x, size); |
| 9 | } |
| 10 | |
| 11 | __forceinline uint32_t stringLength ( Context &, const char * str ) { // str!=nullptr |
| 12 | return uint32_t(strlen(str)); |