#include <stdlib.h>
#include <stdint.h>
#include <utility>
#include <string>
Go to the source code of this file.
Typedefs | |
typedef uint8_t | uint8 |
typedef uint32_t | uint32 |
typedef uint64_t | uint64 |
typedef std::pair< uint64, uint64 > | uint128 |
Functions | |
uint64 | Uint128Low64 (const uint128 &x) |
uint64 | Uint128High64 (const uint128 &x) |
uint64 | CityHash64 (const char *buf, size_t len) |
uint64 | CityHash64 (std::string str) |
uint64 | CityHash64WithSeed (const char *buf, size_t len, uint64 seed) |
uint64 | CityHash64WithSeeds (const char *buf, size_t len, uint64 seed0, uint64 seed1) |
uint128 | CityHash128 (const char *s, size_t len) |
uint128 | CityHash128WithSeed (const char *s, size_t len, uint128 seed) |
uint64 | Hash128to64 (const uint128 &x) |
uint64 CityHash64 | ( | const char * | buf, |
size_t | len | ||
) |