Home | History | Annotate | Download | only in LZMA

Lines Matching defs:properties

1301 		Byte[] properties = new Byte[kPropSize];

1305 properties[0] = (Byte)((_posStateBits * 5 + _numLiteralPosStateBits) * 9 + _numLiteralContextBits);
1307 properties[1 + i] = (Byte)((_dictionarySize >> (8 * i)) & 0xFF);
1308 outStream.Write(properties, 0, kPropSize);
1368 public void SetCoderProperties(CoderPropID[] propIDs, object[] properties)
1370 for (UInt32 i = 0; i < properties.Length; i++)
1372 object prop = properties[i];