Changeset d26ab242 in rtems
- Timestamp:
- Oct 28, 2005, 7:22:48 AM (15 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 400dfb2
- Parents:
- 542d8eb5 (diff), fa348b78 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/zlib/contrib/dotzlib/DotZLib/ChecksumImpl.cs
r542d8eb5 rd26ab242 2 2 // © Copyright Henrik Ravn 2004 3 3 // 4 // Use, modification and distribution are subject to the Boost Software License, Version 1.0. 4 // Use, modification and distribution are subject to the Boost Software License, Version 1.0. 5 5 // (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6 6 // … … 26 26 27 27 /// <summary> 28 /// Initializes a new instance of the checksum generator base - the current checksum is 28 /// Initializes a new instance of the checksum generator base - the current checksum is 29 29 /// set to zero 30 30 /// </summary> … … 62 62 /// <exception cref="NullReferenceException"><c>data</c> is a null reference</exception> 63 63 /// <exception cref="ArgumentOutOfRangeException">Offset or count is negative.</exception> 64 /// <remarks>All the other <c>Update</c> methods are implmeneted in terms of this one. 64 /// <remarks>All the other <c>Update</c> methods are implmeneted in terms of this one. 65 65 /// This is therefore the only method a derived class has to implement</remarks> 66 66 public abstract void Update(byte[] data, int offset, int count); … … 102 102 /// Implements a CRC32 checksum generator 103 103 /// </summary> 104 public sealed class CRC32Checksum : ChecksumGeneratorBase 104 public sealed class CRC32Checksum : ChecksumGeneratorBase 105 105 { 106 106 #region DLL imports … … 153 153 /// Implements a checksum generator that computes the Adler checksum on data 154 154 /// </summary> 155 public sealed class AdlerChecksum : ChecksumGeneratorBase 155 public sealed class AdlerChecksum : ChecksumGeneratorBase 156 156 { 157 157 #region DLL imports
Note: See TracChangeset
for help on using the changeset viewer.