Home
last modified time | relevance | path

Searched refs:eSize (Results 1 – 13 of 13) sorted by relevance

/external/zstd/lib/dictBuilder/
Dzdict.c728 size_t eSize = 0; in ZDICT_analyzeEntropy() local
735 …if (offcodeMax>OFFCODE_MAX) { eSize = ERROR(dictionaryCreation_failed); goto _cleanup; } /* too … in ZDICT_analyzeEntropy()
750 eSize = ERROR(memory_allocation); in ZDICT_analyzeEntropy()
767 eSize = maxNbBits; in ZDICT_analyzeEntropy()
790 eSize = errorCode; in ZDICT_analyzeEntropy()
799 eSize = errorCode; in ZDICT_analyzeEntropy()
808 eSize = errorCode; in ZDICT_analyzeEntropy()
817 eSize = hhSize; in ZDICT_analyzeEntropy()
823 eSize += hhSize; in ZDICT_analyzeEntropy()
828 eSize = ohSize; in ZDICT_analyzeEntropy()
[all …]
/external/ms-tpm-20-ref/TPMCmd/tpm/src/support/
DMathOnByteBuffers.c139 const UINT32 eSize, in ModExpB() argument
154 BnFromBytes(bnE, e, (NUMBYTES)eSize); in ModExpB()
/external/ms-tpm-20-ref/TPMCmd/tpm/include/prototypes/
DMathOnByteBuffers_fp.h99 const UINT32 eSize,
/external/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
DHexagonDYLDRendezvous.cpp309 if (field == eSize) in FindMetadata()
323 FindMetadata("_thread_db_dtv_dtv", eSize, m_thread_info.dtv_slot_size); in GetThreadInfo()
DHexagonDYLDRendezvous.h241 enum PThreadField { eSize, eNElem, eOffset }; enumerator
/external/icu/icu4c/source/test/cintltst/
Dcapitst.c949 int32_t eSize; in TestOpenVsOpenRules() local
1004 eSize = uset_size(eSet); in TestOpenVsOpenRules()
1010 str[z] = uset_charAt(eSet, rand()%eSize); in TestOpenVsOpenRules()
1015 eSize = uset_size(eSet); in TestOpenVsOpenRules()
1018 if(eSize > 0){ in TestOpenVsOpenRules()
1019 str[2%strSize] = uset_charAt(eSet, rand()%eSize); in TestOpenVsOpenRules()
1020 str[3%strSize] = uset_charAt(eSet, rand()%eSize); in TestOpenVsOpenRules()
1021 str[5%strSize] = uset_charAt(eSet, rand()%eSize); in TestOpenVsOpenRules()
1022 str[10%strSize] = uset_charAt(eSet, rand()%eSize); in TestOpenVsOpenRules()
1023 str[13%strSize] = uset_charAt(eSet, rand()%eSize); in TestOpenVsOpenRules()
/external/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DDYLDRendezvous.h252 enum PThreadField { eSize, eNElem, eOffset }; enumerator
DDYLDRendezvous.cpp577 if (field == eSize) in FindMetadata()
590 FindMetadata("_thread_db_dtv_dtv", eSize, m_thread_info.dtv_slot_size); in GetThreadInfo()
/external/zstd/lib/decompress/
Dzstd_decompress.c1165 { size_t const eSize = ZSTD_loadDEntropy(&dctx->entropy, dict, dictSize); in ZSTD_decompress_insertDictionary() local
1166 RETURN_ERROR_IF(ZSTD_isError(eSize), dictionary_corrupted, ""); in ZSTD_decompress_insertDictionary()
1167 dict = (const char*)dict + eSize; in ZSTD_decompress_insertDictionary()
1168 dictSize -= eSize; in ZSTD_decompress_insertDictionary()
/external/zstd/lib/legacy/
Dzstd_v05.c3713 size_t eSize; in ZSTDv05_decompress_insertDictionary() local
3723 eSize = ZSTDv05_loadEntropy(dctx, dict, dictSize); in ZSTDv05_decompress_insertDictionary()
3724 if (ZSTDv05_isError(eSize)) return ERROR(dictionary_corrupted); in ZSTDv05_decompress_insertDictionary()
3727 dict = (const char*)dict + eSize; in ZSTDv05_decompress_insertDictionary()
3728 dictSize -= eSize; in ZSTDv05_decompress_insertDictionary()
Dzstd_v06.c3857 size_t eSize; in ZSTDv06_decompress_insertDictionary() local
3867 eSize = ZSTDv06_loadEntropy(dctx, dict, dictSize); in ZSTDv06_decompress_insertDictionary()
3868 if (ZSTDv06_isError(eSize)) return ERROR(dictionary_corrupted); in ZSTDv06_decompress_insertDictionary()
3871 dict = (const char*)dict + eSize; in ZSTDv06_decompress_insertDictionary()
3872 dictSize -= eSize; in ZSTDv06_decompress_insertDictionary()
Dzstd_v07.c4159 { size_t const eSize = ZSTDv07_loadEntropy(dctx, dict, dictSize); in ZSTDv07_decompress_insertDictionary() local
4160 if (ZSTDv07_isError(eSize)) return ERROR(dictionary_corrupted); in ZSTDv07_decompress_insertDictionary()
4161 dict = (const char*)dict + eSize; in ZSTDv07_decompress_insertDictionary()
4162 dictSize -= eSize; in ZSTDv07_decompress_insertDictionary()
/external/zstd/lib/compress/
Dzstd_compress.c3279 size_t eSize; in ZSTD_loadZstdDictionary() local
3286 eSize = ZSTD_loadCEntropy(bs, workspace, dict, dictSize); in ZSTD_loadZstdDictionary()
3287 FORWARD_IF_ERROR(eSize, "ZSTD_loadCEntropy failed"); in ZSTD_loadZstdDictionary()
3288 dictPtr += eSize; in ZSTD_loadZstdDictionary()