Lines Matching refs:entropy

1287 ZSTD_loadDEntropy(ZSTD_entropyDTables_t* entropy,  in ZSTD_loadDEntropy()  argument
1297 …entropyDTables_t, OFTable) == offsetof(ZSTD_entropyDTables_t, LLTable) + sizeof(entropy->LLTable)); in ZSTD_loadDEntropy()
1298 …entropyDTables_t, MLTable) == offsetof(ZSTD_entropyDTables_t, OFTable) + sizeof(entropy->OFTable)); in ZSTD_loadDEntropy()
1299 …ZSTD_STATIC_ASSERT(sizeof(entropy->LLTable) + sizeof(entropy->OFTable) + sizeof(entropy->MLTable) … in ZSTD_loadDEntropy()
1300 …{ void* const workspace = &entropy->LLTable; /* use fse tables as temporary workspace; implies… in ZSTD_loadDEntropy()
1301 …size_t const workspaceSize = sizeof(entropy->LLTable) + sizeof(entropy->OFTable) + sizeof(entropy-… in ZSTD_loadDEntropy()
1304 size_t const hSize = HUF_readDTableX1_wksp(entropy->hufTable, in ZSTD_loadDEntropy()
1308 size_t const hSize = HUF_readDTableX2_wksp(entropy->hufTable, in ZSTD_loadDEntropy()
1322 ZSTD_buildFSETable( entropy->OFTable, in ZSTD_loadDEntropy()
1326 entropy->workspace, sizeof(entropy->workspace), in ZSTD_loadDEntropy()
1337 ZSTD_buildFSETable( entropy->MLTable, in ZSTD_loadDEntropy()
1341 entropy->workspace, sizeof(entropy->workspace), in ZSTD_loadDEntropy()
1352 ZSTD_buildFSETable( entropy->LLTable, in ZSTD_loadDEntropy()
1356 entropy->workspace, sizeof(entropy->workspace), in ZSTD_loadDEntropy()
1368 entropy->rep[i] = rep; in ZSTD_loadDEntropy()
1384 { size_t const eSize = ZSTD_loadDEntropy(&dctx->entropy, dict, dictSize); in ZSTD_decompress_insertDictionary()
1406 …dctx->entropy.hufTable[0] = (HUF_DTable)((HufLog)*0x1000001); /* cover both little and big endian… in ZSTD_decompressBegin()
1410 ZSTD_STATIC_ASSERT(sizeof(dctx->entropy.rep) == sizeof(repStartValue)); in ZSTD_decompressBegin()
1411 ZSTD_memcpy(dctx->entropy.rep, repStartValue, sizeof(repStartValue)); /* initial repcodes */ in ZSTD_decompressBegin()
1412 dctx->LLTptr = dctx->entropy.LLTable; in ZSTD_decompressBegin()
1413 dctx->MLTptr = dctx->entropy.MLTable; in ZSTD_decompressBegin()
1414 dctx->OFTptr = dctx->entropy.OFTable; in ZSTD_decompressBegin()
1415 dctx->HUFptr = dctx->entropy.hufTable; in ZSTD_decompressBegin()