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