Home
last modified time | relevance | path

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

/external/lzma/CPP/7zip/Common/
DMethodProps.cpp94 static HRESULT StringToDictSize(const UString &s, NCOM::CPropVariant &destProp) in StringToDictSize() argument
107 destProp = (UInt32)((UInt32)1 << (unsigned)number); in StringToDictSize()
109 destProp = (UInt64)((UInt64)1 << (unsigned)number); in StringToDictSize()
117 case 'b': destProp = number; return S_OK; in StringToDictSize()
125 destProp = (UInt32)(number << numBits); in StringToDictSize()
127 destProp = (UInt64)((UInt64)number << numBits); in StringToDictSize()
133 static HRESULT PROPVARIANT_to_DictSize(const PROPVARIANT &prop, NCOM::CPropVariant &destProp) in PROPVARIANT_to_DictSize() argument
141 destProp = (UInt32)((UInt32)1 << (unsigned)v); in PROPVARIANT_to_DictSize()
143 destProp = (UInt64)((UInt64)1 << (unsigned)v); in PROPVARIANT_to_DictSize()
147 return StringToDictSize(prop.bstrVal, destProp); in PROPVARIANT_to_DictSize()
[all …]