Searched refs:fixedHashSize (Results 1 - 4 of 4) sorted by relevance
/third_party/lzma/C/ |
H A D | LzFind.c | 443 UInt32 fixedHashSize = 0;
in MatchFinder_Create() local 444 if (p->numHashBytes > 2 && p->numHashBytes_Min <= 2) fixedHashSize += kHash2Size;
in MatchFinder_Create() 445 if (p->numHashBytes > 3 && p->numHashBytes_Min <= 3) fixedHashSize += kHash3Size;
in MatchFinder_Create() 446 // if (p->numHashBytes > 4) p->fixedHashSize += hs4; // kHash4Size;
in MatchFinder_Create() 447 hashSizeSum += fixedHashSize;
in MatchFinder_Create() 448 p->fixedHashSize = fixedHashSize;
in MatchFinder_Create() 537 const size_t numItems = p->fixedHashSize;
in MatchFinder_Init_LowHash() 546 CLzRef *items = p->hash + p->fixedHashSize;
in MatchFinder_Init_HighHash() 853 MatchFinder_Normalize3(subValue, p->hash, (size_t)p->hashMask + 1 + p->fixedHashSize);
in MatchFinder_CheckLimits() [all...] |
H A D | LzFindMt.h | 53 UInt32 fixedHashSize;
member
|
H A D | LzFind.h | 45 UInt32 fixedHashSize;
member
|
H A D | LzFindMt.c | 523 MatchFinder_Normalize3(subValue, mf->hash + mf->fixedHashSize, (size_t)mf->hashMask + 1);
in HashThreadFunc() 527 mt->GetHeadsFunc(mf->buffer, mf->pos, mf->hash + mf->fixedHashSize, mf->hashMask, heads + 2, num, mf->crc);
in HashThreadFunc() 908 p->fixedHashSize = mf->fixedHashSize;
in MatchFinderMt_Init() 973 (fixedHashSize) is small, so normalization is fast */
in MatchFinderMt_GetNextBlock_Bt() 976 MatchFinder_Normalize3(subValue, p->hash, p->fixedHashSize);
in MatchFinderMt_GetNextBlock_Bt()
|
Completed in 4 milliseconds