Macros | |
#define | __FNV_H__ |
Include guard from the original fnv.h. More... | |
#define | FNV0_32_INIT ((Fnv1aImplementation::Fnv32_t)0) |
32 bit FNV-0 zero initial basis More... | |
#define | FNV0_64_INIT ((Fnv1aImplementation::Fnv64_t)0) |
64 bit FNV-0 zero initial basis More... | |
#define | FNV1_32_INIT ((Fnv1aImplementation::Fnv32_t)0x811c9dc5) |
32 bit FNV-1 and FNV-1a non-zero initial basis More... | |
#define | FNV1_32A_INIT FNV1_32_INIT |
32 bit FNV-1 and FNV-1a non-zero initial basis More... | |
#define | FNV1_64_INIT ((Fnv1aImplementation::Fnv64_t)0xcbf29ce484222325ULL) |
64 bit FNV-1 non-zero initial basis More... | |
#define | FNV1A_64_INIT FNV1_64_INIT |
64 bit FNV-1 non-zero initial basis More... | |
#define | FNV_32_PRIME ((Fnv1aImplementation::Fnv32_t)0x01000193) |
32 bit magic FNV-1a prime More... | |
#define | FNV_VERSION "5.0.2" |
@(#) FNV Version More... | |
#define | HAVE_64BIT_LONG_LONG |
Determine how 64 bit unsigned values are represented. More... | |
Typedefs | |
typedef uint32_t | ns3::Hash::Function::Fnv1aImplementation::Fnv32_t |
32 bit FNV-0 hash type More... | |
typedef uint64_t | ns3::Hash::Function::Fnv1aImplementation::Fnv64_t |
64 bit FNV-0 hash More... | |
Functions | |
Fnv32_t | ns3::Hash::Function::Fnv1aImplementation::fnv_32_buf (void *buf, size_t len, Fnv32_t hval) |
fnv_32a_buf - perform a 32 bit Fowler/Noll/Vo FNV-1a hash on a buffer More... | |
Fnv32_t | ns3::Hash::Function::Fnv1aImplementation::fnv_32_str (char *str, Fnv32_t hval) |
fnv_32a_str - perform a 32 bit Fowler/Noll/Vo FNV-1a hash on a string More... | |
Fnv32_t | ns3::Hash::Function::Fnv1aImplementation::fnv_32a_buf (void *buf, size_t len, Fnv32_t hval) |
fnv_32a_buf - perform a 32 bit Fowler/Noll/Vo FNV-1a hash on a buffer More... | |
Fnv32_t | ns3::Hash::Function::Fnv1aImplementation::fnv_32a_str (char *str, Fnv32_t hval) |
fnv_32a_str - perform a 32 bit Fowler/Noll/Vo FNV-1a hash on a string More... | |
Fnv64_t | ns3::Hash::Function::Fnv1aImplementation::fnv_64_buf (void *buf, size_t len, Fnv64_t hval) |
fnv_64a_buf - perform a 64 bit Fowler/Noll/Vo FNV-1a hash on a buffer More... | |
Fnv64_t | ns3::Hash::Function::Fnv1aImplementation::fnv_64_str (char *str, Fnv64_t hval) |
fnv_64a_str - perform a 64 bit Fowler/Noll/Vo FNV-1a hash on a buffer More... | |
Fnv64_t | ns3::Hash::Function::Fnv1aImplementation::fnv_64a_buf (void *buf, size_t len, Fnv64_t hval) |
fnv_64a_buf - perform a 64 bit Fowler/Noll/Vo FNV-1a hash on a buffer More... | |
Fnv64_t | ns3::Hash::Function::Fnv1aImplementation::fnv_64a_str (char *str, Fnv64_t hval) |
fnv_64a_str - perform a 64 bit Fowler/Noll/Vo FNV-1a hash on a buffer More... | |
#define | FNV_64_PRIME ((Fnv1aImplementation::Fnv64_t)0x100000001b3ULL) |
FNV-1a defines the initial basis to be non-zero. More... | |
#define __FNV_H__ |
Include guard from the original fnv.h.
Definition at line 157 of file hash-fnv.cc.
#define FNV0_32_INIT ((Fnv1aImplementation::Fnv32_t)0) |
32 bit FNV-0 zero initial basis
This historic hash is not recommended. One should use the FNV-1 hash and initial basis instead.
Definition at line 178 of file hash-fnv.cc.
#define FNV0_64_INIT ((Fnv1aImplementation::Fnv64_t)0) |
64 bit FNV-0 zero initial basis
This historic hash is not recommended. One should use the FNV-1 hash and initial basis instead.
Definition at line 227 of file hash-fnv.cc.
#define FNV1_32_INIT ((Fnv1aImplementation::Fnv32_t)0x811c9dc5) |
32 bit FNV-1 and FNV-1a non-zero initial basis
The FNV-1 initial basis is the FNV-0 hash of the following 32 octets:
chongo <Landon Curt Noll> /\../\
Definition at line 194 of file hash-fnv.cc.
#define FNV1_32A_INIT FNV1_32_INIT |
32 bit FNV-1 and FNV-1a non-zero initial basis
The FNV-1 initial basis is the FNV-0 hash of the following 32 octets:
chongo <Landon Curt Noll> /\../\
Definition at line 196 of file hash-fnv.cc.
#define FNV1_64_INIT ((Fnv1aImplementation::Fnv64_t)0xcbf29ce484222325ULL) |
64 bit FNV-1 non-zero initial basis
The FNV-1 initial basis is the FNV-0 hash of the following 32 octets:
chongo <Landon Curt Noll> /\../\
Definition at line 247 of file hash-fnv.cc.
#define FNV1A_64_INIT FNV1_64_INIT |
64 bit FNV-1 non-zero initial basis
The FNV-1 initial basis is the FNV-0 hash of the following 32 octets:
chongo <Landon Curt Noll> /\../\
Definition at line 249 of file hash-fnv.cc.
#define FNV_32_PRIME ((Fnv1aImplementation::Fnv32_t)0x01000193) |
32 bit magic FNV-1a prime
Definition at line 368 of file hash-fnv.cc.
#define FNV_64_PRIME ((Fnv1aImplementation::Fnv64_t)0x100000001b3ULL) |
FNV-1a defines the initial basis to be non-zero.
64 bit magic FNV-1a prime
Definition at line 526 of file hash-fnv.cc.
#define FNV_VERSION "5.0.2" |
@(#) FNV Version
Definition at line 162 of file hash-fnv.cc.
#define HAVE_64BIT_LONG_LONG |
Determine how 64 bit unsigned values are represented.
Definition at line 203 of file hash-fnv.cc.
typedef uint32_t ns3::Hash::Function::Fnv1aImplementation::Fnv32_t |
32 bit FNV-0 hash type
Definition at line 168 of file hash-fnv.cc.
typedef uint64_t ns3::Hash::Function::Fnv1aImplementation::Fnv64_t |
64 bit FNV-0 hash
Definition at line 211 of file hash-fnv.cc.
FNV hash types.
Definition at line 262 of file hash-fnv.cc.
Fnv32_t ns3::Hash::Function::Fnv1aImplementation::fnv_32_buf | ( | void * | buf, |
size_t | len, | ||
Fnv32_t | hval | ||
) |
fnv_32a_buf - perform a 32 bit Fowler/Noll/Vo FNV-1a hash on a buffer
input:
[in] | buf | start of buffer to hash |
[in] | len | length of buffer in octets |
[in] | hval | previous hash value or 0 if first call |
fnv_32a_str - perform a 32 bit Fowler/Noll/Vo FNV-1a hash on a string
input:
[in] | str | string to hash |
[in] | hval | previous hash value or 0 if first call |
Fnv32_t ns3::Hash::Function::Fnv1aImplementation::fnv_32a_buf | ( | void * | buf, |
size_t | len, | ||
Fnv32_t | hval | ||
) |
fnv_32a_buf - perform a 32 bit Fowler/Noll/Vo FNV-1a hash on a buffer
input:
[in] | buf | start of buffer to hash |
[in] | len | length of buffer in octets |
[in] | hval | previous hash value or 0 if first call |
Definition at line 385 of file hash-fnv.cc.
References FNV_32_PRIME.
Referenced by ns3::Hash::Function::Fnv1a::GetHash32().
fnv_32a_str - perform a 32 bit Fowler/Noll/Vo FNV-1a hash on a string
input:
[in] | str | string to hash |
[in] | hval | previous hash value or 0 if first call |
Definition at line 424 of file hash-fnv.cc.
References FNV_32_PRIME.
Fnv64_t ns3::Hash::Function::Fnv1aImplementation::fnv_64_buf | ( | void * | buf, |
size_t | len, | ||
Fnv64_t | hval | ||
) |
fnv_64a_buf - perform a 64 bit Fowler/Noll/Vo FNV-1a hash on a buffer
input:
[in] | buf | start of buffer to hash |
[in] | len | length of buffer in octets |
[in] | hval | previous hash value or 0 if first call |
fnv_64a_str - perform a 64 bit Fowler/Noll/Vo FNV-1a hash on a buffer
input:
[in] | str | string to hash |
[in] | hval | previous hash value or 0 if first call |
Fnv64_t ns3::Hash::Function::Fnv1aImplementation::fnv_64a_buf | ( | void * | buf, |
size_t | len, | ||
Fnv64_t | hval | ||
) |
fnv_64a_buf - perform a 64 bit Fowler/Noll/Vo FNV-1a hash on a buffer
input:
[in] | buf | start of buffer to hash |
[in] | len | length of buffer in octets |
[in] | hval | previous hash value or 0 if first call |
Definition at line 548 of file hash-fnv.cc.
References FNV_64_PRIME.
Referenced by ns3::Hash::Function::Fnv1a::GetHash64().
fnv_64a_str - perform a 64 bit Fowler/Noll/Vo FNV-1a hash on a buffer
input:
[in] | str | string to hash |
[in] | hval | previous hash value or 0 if first call |
Definition at line 653 of file hash-fnv.cc.
References FNV_64_PRIME.