#include <hash.h>
Definition at line 1218 of file hash.h.
static int TStrHashF_OldGLib::GetPrimHashCd |
( |
const char * |
p | ) |
|
|
inlinestatic |
Definition at line 1220 of file hash.h.
1221 const int MulBy = 16;
1223 while (*p) { HashCd = (MulBy * HashCd) + *p++; HashCd &= 0x0FFFFFFF; }
static int TStrHashF_OldGLib::GetPrimHashCd |
( |
const TStr & |
s | ) |
|
|
inlinestatic |
static int TStrHashF_OldGLib::GetSecHashCd |
( |
const char * |
p | ) |
|
|
inlinestatic |
Definition at line 1225 of file hash.h.
1226 const int MulBy = 16;
1228 while (*p) { HashCd = (MulBy * HashCd) ^ *p++; HashCd &= 0x0FFFFFFF; }
static int TStrHashF_OldGLib::GetSecHashCd |
( |
const TStr & |
s | ) |
|
|
inlinestatic |
The documentation for this class was generated from the following file: