HomeSort by: relevance | last modified time | path
    Searched refs:CRC32 (Results 1 - 8 of 8) sorted by relevancy

  /src/common/dist/zlib/contrib/minizip/
crypt.h 30 #define CRC32(c, b) ((*(pcrc_32_tab+(((int)(c) ^ (b)) & 0xff))) ^ ((c) >> 8))
49 (*(pkeys+0)) = CRC32((*(pkeys+0)), c);
54 (*(pkeys+2)) = CRC32((*(pkeys+2)), keyshift);
  /src/sys/external/bsd/gnu-efi/dist/lib/
crc.c 13 CRC32 functions
80 Updates the CRC32 value in the table header
104 Updates the CRC32 value in the table header
116 Hdr->CRC32 = 0;
117 Hdr->CRC32 = CalculateCrc((UINT8 *)Hdr, Size);
130 Checks the CRC32 value in the table header
158 Checks the CRC32 value in the table header
186 OrgCrc = Hdr->CRC32;
187 Hdr->CRC32 = 0;
191 Hdr->CRC32 = OrgCrc
    [all...]
  /src/common/dist/zlib/contrib/dotzlib/DotZLib/
ChecksumImpl.cs 100 #region CRC32
102 /// Implements a CRC32 checksum generator
109 private static extern uint crc32(uint crc, int data, uint length); method in class:DotZLib.CRC32Checksum
114 /// Initializes a new instance of the CRC32 checksum generator
119 /// Initializes a new instance of the CRC32 checksum generator with a specified value
140 _current = crc32(_current, hData.AddrOfPinnedObject().ToInt32()+offset, (uint)count);
UnitTests.cs 83 #region CRC32 Tests
87 CRC32Checksum crc32 = new CRC32Checksum();
88 Assert.AreEqual( 0, crc32.Value );
90 crc32 = new CRC32Checksum(1);
91 Assert.AreEqual( 1, crc32.Value );
93 crc32 = new CRC32Checksum(556);
94 Assert.AreEqual( 556, crc32.Value );
100 CRC32Checksum crc32 = new CRC32Checksum();
102 crc32.Update(data);
103 Assert.AreEqual( 0x70e46888, crc32.Value );
    [all...]
  /src/common/dist/zlib/contrib/ada/
zlib.adb 164 -- CRC32 --
167 function CRC32
174 return Unsigned_32 (crc32 (ULong (CRC),
177 end CRC32;
179 procedure CRC32
183 CRC := CRC32 (CRC, Data);
184 end CRC32;
633 CRC32 (Filter.CRC, In_Data (In_Data'First .. In_Last));
zlib.ads 199 function CRC32
203 pragma Inline (CRC32);
204 -- Compute CRC32, it could be necessary for make gzip format
206 procedure CRC32
209 pragma Inline (CRC32);
210 -- Compute CRC32, it could be necessary for make gzip format
  /src/sys/external/bsd/gnu-efi/dist/inc/
efiapi.h 566 OUT UINT32 *Crc32
758 UINT32 CRC32;
  /src/sys/external/bsd/acpica/dist/include/platform/
acefiex.h 283 UINT32 CRC32;
846 UINT32 *Crc32);

Completed in 67 milliseconds