/
githubmirror
/
julia
Обзор
Документация
Войти
/
githubmirror
/
julia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/support/MurmurHash3.h
22 строки
885 B
Gabriel Baraldi
Change uses of int to size_t in MurmurHash (#48562)
07 фев 2023, 05:43
Не верифицирован
07 фев 2023, 05:43
3fe69f4
Код
Авторство
О чём код?
//----------------------------------------------------------------------------- // MurmurHash3 was written by Austin Appleby, and is placed in the public // domain. The author hereby disclaims copyright to this source code. #ifndef JL_MURMURHASH3_H #define JL_MURMURHASH3_H //----------------------------------------------------------------------------- // Platform-specific functions and macros #include <stdint.h> #include <stddef.h> //----------------------------------------------------------------------------- void MurmurHash3_x86_32 ( const void * key, size_t len, uint32_t seed, void * out ); void MurmurHash3_x86_128 ( const void * key, size_t len, uint32_t seed, void * out ); void MurmurHash3_x64_128 ( const void * key, size_t len, uint32_t seed, void * out ); //----------------------------------------------------------------------------- #endif // MURMURHASH3_H