Rename to maintain consistency

This commit is contained in:
Kawe Mazidjatari 2022-12-03 17:40:05 +01:00
parent e26679f199
commit 10a0a41162
2 changed files with 6 additions and 6 deletions

View File

@ -151,7 +151,7 @@ bool CSigCache::WriteCache(const string& svCacheFile)
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// Purpose: decompresses the blob containing the signature map // Purpose: decompresses the blob containing the signature map
// Input : nSrcLen - // Input : nSrcLen -
// &nDstSize - // &nDstLen -
// &nCrc32 - // &nCrc32 -
// *pSrcBuf - // *pSrcBuf -
// *pDstBuf - // *pDstBuf -
@ -178,20 +178,20 @@ bool CSigCache::DecompressBlob(size_t nSrcLen, size_t& nDstLen, uint32_t& nCrc32
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// Purpose: compresses the blob containing the signature map // Purpose: compresses the blob containing the signature map
// Input : nSrcLen - // Input : nSrcLen -
// &nDstSize - // &nDstLen -
// &nCrc32 - // &nCrc32 -
// *pSrcBuf - // *pSrcBuf -
// *pDstBuf - // *pDstBuf -
// Output : true on success, false otherwise // Output : true on success, false otherwise
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
bool CSigCache::CompressBlob(size_t nSrcLen, size_t& nDstSize, uint32_t& nCrc32, const uint8_t* pSrcBuf, uint8_t* pDstBuf) const bool CSigCache::CompressBlob(size_t nSrcLen, size_t& nDstLen, uint32_t& nCrc32, const uint8_t* pSrcBuf, uint8_t* pDstBuf) const
{ {
lzham_compress_params lzCompParams{}; lzham_compress_params lzCompParams{};
lzCompParams.m_dict_size_log2 = SIGDB_DICT_SIZE; lzCompParams.m_dict_size_log2 = SIGDB_DICT_SIZE;
lzCompParams.m_level = lzham_compress_level::LZHAM_COMP_LEVEL_FASTEST; lzCompParams.m_level = lzham_compress_level::LZHAM_COMP_LEVEL_FASTEST;
lzCompParams.m_compress_flags = lzham_compress_flags::LZHAM_COMP_FLAG_DETERMINISTIC_PARSING; lzCompParams.m_compress_flags = lzham_compress_flags::LZHAM_COMP_FLAG_DETERMINISTIC_PARSING;
lzham_compress_status_t lzCompStatus = lzham_compress_memory(&lzCompParams, pDstBuf, &nDstSize, pSrcBuf, nSrcLen, NULL, &nCrc32); lzham_compress_status_t lzCompStatus = lzham_compress_memory(&lzCompParams, pDstBuf, &nDstLen, pSrcBuf, nSrcLen, NULL, &nCrc32);
if (lzCompStatus != lzham_compress_status_t::LZHAM_COMP_STATUS_SUCCESS) if (lzCompStatus != lzham_compress_status_t::LZHAM_COMP_STATUS_SUCCESS)
{ {

View File

@ -28,8 +28,8 @@ public:
bool WriteCache(const string& svCacheFile); bool WriteCache(const string& svCacheFile);
private: private:
bool CompressBlob(size_t nSrcLen, size_t& nDstSize, uint32_t& nCrc32, const uint8_t* pSrcBuf, uint8_t* pDstBuf) const; bool CompressBlob(size_t nSrcLen, size_t& nDstLen, uint32_t& nCrc32, const uint8_t* pSrcBuf, uint8_t* pDstBuf) const;
bool DecompressBlob(size_t nSrcLen, size_t& nDstSize, uint32_t& nCrc32, const uint8_t* pSrcBuf, uint8_t* pDstBuf) const; bool DecompressBlob(size_t nSrcLen, size_t& nDstLen, uint32_t& nCrc32, const uint8_t* pSrcBuf, uint8_t* pDstBuf) const;
SigMap_Pb m_Cache; SigMap_Pb m_Cache;
bool m_bInitialized; bool m_bInitialized;