#include <hash.h>
|
static unsigned int | DJBHash (const char *Str, const ::TSize &Len) |
|
Definition at line 1146 of file hash.h.
static unsigned int TStrHashF_DJB::DJBHash |
( |
const char * |
Str, |
|
|
const ::TSize & |
Len |
|
) |
| |
|
inlinestaticprivate |
Definition at line 1148 of file hash.h.
1149 unsigned int hash = 5381;
1150 for(
unsigned int i = 0; i < Len; Str++, i++) {
1151 hash = ((hash << 5) + hash) + (*Str); }
static int TStrHashF_DJB::GetPrimHashCd |
( |
const char * |
p | ) |
|
|
inlinestatic |
Definition at line 1155 of file hash.h.
1156 const char *r = p;
while (*r) { r++; }
1157 return (
int)
DJBHash((
const char *) p, r - p) & 0x7fffffff; }
static unsigned int DJBHash(const char *Str, const ::TSize &Len)
static int TStrHashF_DJB::GetPrimHashCd |
( |
const TStr & |
s | ) |
|
|
inlinestatic |
Definition at line 1161 of file hash.h.
static int GetPrimHashCd(const char *p)
static int TStrHashF_DJB::GetSecHashCd |
( |
const char * |
p | ) |
|
|
inlinestatic |
Definition at line 1158 of file hash.h.
1159 const char *r = p;
while (*r) { r++; }
1160 return (
int)
DJBHash((
const char *) p, r - p) & 0x7fffffff; }
static unsigned int DJBHash(const char *Str, const ::TSize &Len)
static int TStrHashF_DJB::GetSecHashCd |
( |
const TStr & |
s | ) |
|
|
inlinestatic |
Definition at line 1162 of file hash.h.
static int GetSecHashCd(const char *p)
The documentation for this class was generated from the following file: