#include <hash.h>
Definition at line 1146 of file hash.h.
static int TStrHashF_OldGLib::GetPrimHashCd |
( |
const char * |
p | ) |
|
|
inlinestatic |
Definition at line 1148 of file hash.h.
1149 const int MulBy = 16;
1151 while (*p) { HashCd = (MulBy * HashCd) + *p++; HashCd &= 0x0FFFFFFF; }
static int TStrHashF_OldGLib::GetPrimHashCd |
( |
const TStr & |
s | ) |
|
|
inlinestatic |
Definition at line 1158 of file hash.h.
static int GetPrimHashCd(const char *p)
static int TStrHashF_OldGLib::GetSecHashCd |
( |
const char * |
p | ) |
|
|
inlinestatic |
Definition at line 1153 of file hash.h.
1154 const int MulBy = 16;
1156 while (*p) { HashCd = (MulBy * HashCd) ^ *p++; HashCd &= 0x0FFFFFFF; }
static int TStrHashF_OldGLib::GetSecHashCd |
( |
const TStr & |
s | ) |
|
|
inlinestatic |
Definition at line 1159 of file hash.h.
static int GetSecHashCd(const char *p)
The documentation for this class was generated from the following file: