Lines Matching refs:U64

1213 static U32 ZSTD_dictAndWindowLog(U32 windowLog, U64 srcSize, U64 dictSize)  in ZSTD_dictAndWindowLog()
1215 const U64 maxWindowSize = 1ULL << ZSTD_WINDOWLOG_MAX; in ZSTD_dictAndWindowLog()
1223 U64 const windowSize = 1ULL << windowLog; in ZSTD_dictAndWindowLog()
1224 U64 const dictAndWindowSize = dictSize + windowSize; in ZSTD_dictAndWindowLog()
1252 const U64 minSrcSize = 513; /* (1<<9) + 1 */ in ZSTD_adjustCParams_internal()
1253 const U64 maxWindowResize = 1ULL << (ZSTD_WINDOWLOG_MAX-1); in ZSTD_adjustCParams_internal()
1293 … U32 const dictAndWindowLog = ZSTD_dictAndWindowLog(cPar.windowLog, (U64)srcSize, (U64)dictSize); in ZSTD_adjustCParams_internal()
1333 … const ZSTD_CCtx_params* CCtxParams, U64 srcSizeHint, size_t dictSize, ZSTD_cParamMode_e mode) in ZSTD_getCParamsFromCCtxParams()
1396 const U64 pledgedSrcSize) in ZSTD_estimateCCtxSize_usingCCtxParams_internal()
1750 U64 const pledgedSrcSize, in ZSTD_resetCCtx_internal()
1778 …{ size_t const windowSize = MAX(1, (size_t)MIN(((U64)1 << params->cParams.windowLog), pledgedSrc… in ZSTD_resetCCtx_internal()
1948 U64 pledgedSrcSize) in ZSTD_shouldAttachDict()
1965 U64 pledgedSrcSize, in ZSTD_resetCCtx_byAttachingCDict()
2025 U64 pledgedSrcSize, in ZSTD_resetCCtx_byCopyingCDict()
2107 U64 pledgedSrcSize, in ZSTD_resetCCtx_usingCDict()
2133 U64 pledgedSrcSize, in ZSTD_copyCCtx_internal()
2908 const size_t valueST = (size_t)((U64)value * 0x0101010101010101ULL); in ZSTD_isRLE()
3922 const ZSTD_CCtx_params* params, U64 pledgedSrcSize, U32 dictID) in ZSTD_writeFrameHeader()
3964 case 3 : MEM_writeLE64(op+pos, (U64)(pledgedSrcSize)); pos+=8; break; in ZSTD_writeFrameHeader()
4403 const ZSTD_CCtx_params* params, U64 pledgedSrcSize, in ZSTD_compressBegin_internal()
5071 …e_e ZSTD_getCParamMode(ZSTD_CDict const* cdict, ZSTD_CCtx_params const* params, U64 pledgedSrcSize) in ZSTD_getCParamMode()
5087 U64 const pledgedSrcSize = (pss==0) ? ZSTD_CONTENTSIZE_UNKNOWN : pss; in ZSTD_resetCStream()
5155U64 const pledgedSrcSize = (pss==0 && params.fParams.contentSizeFlag==0) ? ZSTD_CONTENTSIZE_UNKNOW… in ZSTD_initCStream_advanced()
5180 U64 const pledgedSrcSize = (pss==0) ? ZSTD_CONTENTSIZE_UNKNOWN : pss; in ZSTD_initCStream_srcSize()
5457 { U64 const pledgedSrcSize = cctx->pledgedSrcSizePlusOne - 1; in ZSTD_CCtx_init_compressStream2()
6049 static U64 ZSTD_getCParamRowSize(U64 srcSizeHint, size_t dictSize, ZSTD_cParamMode_e mode) in ZSTD_getCParamRowSize()
6076 U64 const rSize = ZSTD_getCParamRowSize(srcSizeHint, dictSize, mode); in ZSTD_getCParams_internal()