Home
last modified time | relevance | path

Searched refs:maxLog (Results 1 – 9 of 9) sorted by relevance

/external/zstd/lib/common/
Dfse_decompress.c308 …id* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, unsigned maxLog, void* workSpace, … in FSE_decompress_wksp() argument
310 …return FSE_decompress_wksp_bmi2(dst, dstCapacity, cSrc, cSrcSize, maxLog, workSpace, wkspSize, /* … in FSE_decompress_wksp()
316 unsigned maxLog, void* workSpace, size_t wkspSize, in FSE_decompress_wksp_body() argument
329 if (tableLog > maxLog) return ERROR(tableLog_tooLarge); in FSE_decompress_wksp_body()
352 …id* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, unsigned maxLog, void* workSpace, … in FSE_decompress_wksp_body_default() argument
354 … return FSE_decompress_wksp_body(dst, dstCapacity, cSrc, cSrcSize, maxLog, workSpace, wkspSize, 0); in FSE_decompress_wksp_body_default()
358 …id* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, unsigned maxLog, void* workSpace, … in FSE_decompress_wksp_body_bmi2() argument
360 … return FSE_decompress_wksp_body(dst, dstCapacity, cSrc, cSrcSize, maxLog, workSpace, wkspSize, 1); in FSE_decompress_wksp_body_bmi2()
364 …id* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, unsigned maxLog, void* workSpace, … in FSE_decompress_wksp_bmi2() argument
368 …return FSE_decompress_wksp_body_bmi2(dst, dstCapacity, cSrc, cSrcSize, maxLog, workSpace, wkspSize… in FSE_decompress_wksp_bmi2()
[all …]
Dfse.h356 …id* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, unsigned maxLog, void* workSpace, …
359 …id* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, unsigned maxLog, void* workSpace, …
/external/s2-geometry-library-java/tests/com/google/common/geometry/
DGeometryTestCase.java92 int skewed(int maxLog) {
93 final int base = Math.abs(rand.nextInt()) % (maxLog + 1);
/external/zstd/tests/
Dzbufftest.c258 static size_t FUZ_randomLength(U32* seed, U32 maxLog) in FUZ_randomLength() argument
260 U32 const logLength = FUZ_rand(seed) % maxLog; in FUZ_randomLength()
Dzstreamtest.c1725 static size_t FUZ_randomLength(U32* seed, U32 maxLog) in FUZ_randomLength() argument
1727 U32 const logLength = FUZ_rand(seed) % maxLog; in FUZ_randomLength()
Dfuzzer.c3288 static size_t FUZ_randomLength(U32* seed, U32 maxLog) in FUZ_randomLength() argument
3290 U32 const logLength = FUZ_rand(seed) % maxLog; in FUZ_randomLength()
/external/zstd/lib/decompress/
Dzstd_decompress_block.c530 symbolEncodingType_e type, unsigned max, U32 maxLog, in ZSTD_buildSeqTable() argument
557 size_t const pSize = sizeof(ZSTD_seqSymbol) * (SEQSYMBOL_TABLE_SIZE(maxLog)); in ZSTD_buildSeqTable()
566 RETURN_ERROR_IF(tableLog > maxLog, corruption_detected, ""); in ZSTD_buildSeqTable()
/external/zstd/lib/legacy/
Dzstd_v06.c3192 static size_t ZSTDv06_buildSeqTable(FSEv06_DTable* DTable, U32 type, U32 max, U32 maxLog, in ZSTDv06_buildSeqTable() argument
3215 if (tableLog > maxLog) return ERROR(corruption_detected); in ZSTDv06_buildSeqTable()
Dzstd_v07.c3422 static size_t ZSTDv07_buildSeqTable(FSEv07_DTable* DTable, U32 type, U32 max, U32 maxLog, in ZSTDv07_buildSeqTable() argument
3445 if (tableLog > maxLog) return ERROR(corruption_detected); in ZSTDv07_buildSeqTable()