Home
last modified time | relevance | path

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

/external/lzma/CPP/7zip/Common/
DMethodProps.cpp102 static HRESULT StringToDictSize(const UString &s, NCOM::CPropVariant &destProp) in StringToDictSize() argument
115 destProp = (UInt32)((UInt32)1 << (unsigned)number); in StringToDictSize()
117 destProp = (UInt64)((UInt64)1 << (unsigned)number); in StringToDictSize()
125 case 'b': destProp = number; return S_OK; in StringToDictSize()
133 destProp = (UInt32)(number << numBits); in StringToDictSize()
135 destProp = (UInt64)((UInt64)number << numBits); in StringToDictSize()
141 static HRESULT PROPVARIANT_to_DictSize(const PROPVARIANT &prop, NCOM::CPropVariant &destProp) in PROPVARIANT_to_DictSize() argument
149 destProp = (UInt32)((UInt32)1 << (unsigned)v); in PROPVARIANT_to_DictSize()
151 destProp = (UInt64)((UInt64)1 << (unsigned)v); in PROPVARIANT_to_DictSize()
158 return StringToDictSize(s, destProp); in PROPVARIANT_to_DictSize()
[all …]