Lines Matching refs:Props
280 if (coder.MethodID == k_Delta && coder.Props.GetCapacity() == 1) in GetProperty()
281 propsString = ConvertUInt32ToString((UInt32)coder.Props[0] + 1); in GetProperty()
282 else if (coder.MethodID == k_LZMA && coder.Props.GetCapacity() == 5) in GetProperty()
284 UInt32 dicSize = GetUi32((const Byte *)coder.Props + 1); in GetProperty()
287 else if (coder.MethodID == k_LZMA2 && coder.Props.GetCapacity() == 1) in GetProperty()
289 Byte p = coder.Props[0]; in GetProperty()
293 else if (coder.MethodID == k_PPMD && coder.Props.GetCapacity() == 5) in GetProperty()
295 Byte order = *(const Byte *)coder.Props; in GetProperty()
299 UInt32 dicSize = GetUi32((const Byte *)coder.Props + 1); in GetProperty()
302 else if (coder.MethodID == k_AES && coder.Props.GetCapacity() >= 1) in GetProperty()
304 const Byte *data = (const Byte *)coder.Props; in GetProperty()
328 else if (coder.Props.GetCapacity() > 0) in GetProperty()
331 for (size_t bi = 0; bi < coder.Props.GetCapacity(); bi++) in GetProperty()
333 if (bi > 5 && bi + 1 < coder.Props.GetCapacity()) in GetProperty()
339 AddHexToString(methodsString, coder.Props[bi]); in GetProperty()