Lines Matching refs:U64
1096 static U32 ZSTD_dictAndWindowLog(U32 windowLog, U64 srcSize, U64 dictSize) in ZSTD_dictAndWindowLog()
1098 const U64 maxWindowSize = 1ULL << ZSTD_WINDOWLOG_MAX; in ZSTD_dictAndWindowLog()
1106 U64 const windowSize = 1ULL << windowLog; in ZSTD_dictAndWindowLog()
1107 U64 const dictAndWindowSize = dictSize + windowSize; in ZSTD_dictAndWindowLog()
1135 const U64 minSrcSize = 513; /* (1<<9) + 1 */ in ZSTD_adjustCParams_internal()
1136 const U64 maxWindowResize = 1ULL << (ZSTD_WINDOWLOG_MAX-1); in ZSTD_adjustCParams_internal()
1176 … U32 const dictAndWindowLog = ZSTD_dictAndWindowLog(cPar.windowLog, (U64)srcSize, (U64)dictSize); in ZSTD_adjustCParams_internal()
1216 … const ZSTD_CCtx_params* CCtxParams, U64 srcSizeHint, size_t dictSize, ZSTD_cParamMode_e mode) in ZSTD_getCParamsFromCCtxParams()
1264 const U64 pledgedSrcSize) in ZSTD_estimateCCtxSize_usingCCtxParams_internal()
1266 size_t const windowSize = MAX(1, (size_t)MIN(((U64)1 << cParams->windowLog), pledgedSrcSize)); in ZSTD_estimateCCtxSize_usingCCtxParams_internal()
1560 U64 const pledgedSrcSize, in ZSTD_resetCCtx_internal()
1578 …{ size_t const windowSize = MAX(1, (size_t)MIN(((U64)1 << params.cParams.windowLog), pledgedSrcS… in ZSTD_resetCCtx_internal()
1751 U64 pledgedSrcSize) in ZSTD_shouldAttachDict()
1768 U64 pledgedSrcSize, in ZSTD_resetCCtx_byAttachingCDict()
1824 U64 pledgedSrcSize, in ZSTD_resetCCtx_byCopyingCDict()
1891 U64 pledgedSrcSize, in ZSTD_resetCCtx_usingCDict()
1917 U64 pledgedSrcSize, in ZSTD_copyCCtx_internal()
2572 const size_t valueST = (size_t)((U64)value * 0x0101010101010101ULL); in ZSTD_isRLE()
2863 const ZSTD_CCtx_params* params, U64 pledgedSrcSize, U32 dictID) in ZSTD_writeFrameHeader()
2905 case 3 : MEM_writeLE64(op+pos, (U64)(pledgedSrcSize)); pos+=8; break; in ZSTD_writeFrameHeader()
3321 const ZSTD_CCtx_params* params, U64 pledgedSrcSize, in ZSTD_compressBegin_internal()
3953 …e_e ZSTD_getCParamMode(ZSTD_CDict const* cdict, ZSTD_CCtx_params const* params, U64 pledgedSrcSize) in ZSTD_getCParamMode()
3969 U64 const pledgedSrcSize = (pss==0) ? ZSTD_CONTENTSIZE_UNKNOWN : pss; in ZSTD_resetCStream()
4037 …U64 const pledgedSrcSize = (pss==0 && params.fParams.contentSizeFlag==0) ? ZSTD_CONTENTSIZE_UNKNOW… in ZSTD_initCStream_advanced()
4062 U64 const pledgedSrcSize = (pss==0) ? ZSTD_CONTENTSIZE_UNKNOWN : pss; in ZSTD_initCStream_srcSize()
4336 { U64 const pledgedSrcSize = cctx->pledgedSrcSizePlusOne - 1; in ZSTD_CCtx_init_compressStream2()
5030 static U64 ZSTD_getCParamRowSize(U64 srcSizeHint, size_t dictSize, ZSTD_cParamMode_e mode) in ZSTD_getCParamRowSize()
5057 U64 const rSize = ZSTD_getCParamRowSize(srcSizeHint, dictSize, mode); in ZSTD_getCParams_internal()