#include <hash.h>
Definition at line 1120 of file hash.h.
 
  
  
      
        
          | static int TStrHashF_OldGLib::GetPrimHashCd  | 
          ( | 
          const char *  | 
          p | ) | 
           | 
         
       
   | 
  
inlinestatic   | 
  
 
Definition at line 1122 of file hash.h.
 1123     const int MulBy = 16;  
 
 1125     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 1127 of file hash.h.
 1128     const int MulBy = 16;  
 
 1130     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: