Lines Matching refs:UInt64
11 UInt64 Calc_From_Val_Percents(UInt64 val, UInt64 percents)
14 const UInt64 q = percents / 100;
16 UInt64 res = 0;
20 if (val > (UInt64)(Int64)-1 / q)
21 return (UInt64)(Int64)-1;
27 UInt64 v2;
28 if (val <= (UInt64)(Int64)-1 / r)
34 return (UInt64)(Int64)-1;
75 static unsigned ParseStringToUInt64(const UString &srcString, UInt64 &number)
193 static HRESULT SetLogSizeProp(UInt64 number, NCOM::CPropVariant &destProp)
206 destProp = (UInt64)((UInt64)1 << (unsigned)number);
220 const UInt64 number = ConvertStringToUInt64(s, &end);
239 const UInt64 range4g = ((UInt64)1 << (32 - numBits));
247 destProp = (UInt64)number;
248 else if (number >= ((UInt64)1 << (64 - numBits)))
251 destProp = (UInt64)((UInt64)number << numBits);
324 HRESULT CProps::SetCoderProps(ICompressSetCoderProperties *scp, const UInt64 *dataSizeReduce) const
331 const UInt64 *dataSizeReduce,
332 const UInt64 *affinity) const
469 destProp = (UInt64)srcProp.ulVal;
590 UInt64 number;
657 static UInt64 GetMemoryUsage_LZMA(UInt32 dict, bool isBt, UInt32 numThreads)
672 UInt64 size1 = (UInt64)hs * 4;
673 size1 += (UInt64)dict * 4;
675 size1 += (UInt64)dict * 4;
685 UInt64 CMethodProps::Get_Lzma_MemUsage(bool addSlidingWindowSize) const
687 const UInt64 dicSize = Get_Lzma_DicSize();
691 UInt64 size = GetMemoryUsage_LZMA(dict32, isBt, numThreads);
696 UInt64 blockSize = (UInt64)dict32 + (1 << 16)