Searched refs:nCRC (Results 1 – 9 of 9) sorted by relevance
/aoo41x/main/sal/qa/rtl/crc32/ |
H A D | rtl_crc32.cxx | 54 sal_uInt32 nCRC = 0; in rtl_crc32_001() local 59 nCRC = rtl_crc32(nCRC, buf, num); in rtl_crc32_001() 61 CPPUNIT_ASSERT_MESSAGE("empty crc buffer", nCRC == 0); in rtl_crc32_001() 66 sal_uInt32 nCRC = 0; in rtl_crc32_002() local 71 nCRC = rtl_crc32(nCRC, buf, num); in rtl_crc32_002() 73 CPPUNIT_ASSERT_MESSAGE("buffer contain 2 empty bytes, crc is zero", nCRC != 0); in rtl_crc32_002() 78 sal_uInt32 nCRC = 0; in rtl_crc32_002_1() local 83 nCRC = rtl_crc32(nCRC, buf, num); in rtl_crc32_002_1() 85 CPPUNIT_ASSERT_MESSAGE("buffer contain 3 empty bytes, crc is zero", nCRC != 0); in rtl_crc32_002_1()
|
/aoo41x/main/package/source/zipapi/ |
H A D | CRC32.cxx | 45 : nCRC(0) in CRC32() 54 nCRC=0; in reset() 59 return nCRC & 0xFFFFFFFFL; in getValue() 68 nCRC = crc32(nCRC, (const unsigned char*)b.getConstArray()+off, len ); in updateSegment() 75 nCRC = crc32(nCRC, (const unsigned char*)b.getConstArray(),b.getLength()); in update()
|
H A D | ZipFile.cxx | 646 sal_Int32 nTestSig, nTime, nCRC, nSize, nCompressedSize; in readLOC() local 659 aGrabber >> nCRC; in readLOC() 1024 sal_Int32 nSize = 0, nCRC = 0; in checkSizeAndCRC() local 1029 getSizeAndCRC( aEntry.nOffset, aEntry.nCompressedSize, &nSize, &nCRC ); in checkSizeAndCRC() 1030 return ( aEntry.nSize == nSize && aEntry.nCrc == nCRC ); in checkSizeAndCRC() 1052 …e::getSizeAndCRC( sal_Int32 nOffset, sal_Int32 nCompressedSize, sal_Int32 *nSize, sal_Int32 *nCRC ) in getSizeAndCRC() argument 1083 *nCRC = aCRC.getValue(); in getSizeAndCRC()
|
/aoo41x/main/sdext/source/pdfimport/xpdfwrapper/ |
H A D | pnghelper.cxx | 69 sal_uInt32 nCRC = io_rCRC; in updateCRC() local 71 nCRC = crc_table[(nCRC ^ i_pBuf[n]) & 0xff] ^ (nCRC >> 8); in updateCRC() 72 io_rCRC = nCRC; in updateCRC() 77 sal_uInt32 nCRC = 0xffffffff; in getCRC() local 78 updateCRC( nCRC, i_pBuf, i_nLen ); in getCRC() 79 return nCRC ^ 0xffffffff; in getCRC()
|
/aoo41x/main/vcl/source/gdi/ |
H A D | pngwrite.cxx | 283 sal_uInt32 nCRC = rtl_crc32( 0, &nType, 4 ); in Write() local 286 nCRC = rtl_crc32( nCRC, &aBeg->aData[ 0 ], nDataSize ); in Write() 291 rOStm << nCRC; in Write()
|
/aoo41x/main/tools/source/zcodec/ |
H A D | zcodec.cxx | 372 void ZCodec::SetCRC( sal_uIntPtr nCRC ) in SetCRC() argument 374 mnCRC = nCRC; in SetCRC()
|
/aoo41x/main/package/inc/ |
H A D | CRC32.hxx | 35 sal_uInt32 nCRC; member in CRC32
|
H A D | ZipFile.hxx | 100 …d getSizeAndCRC( sal_Int32 nOffset, sal_Int32 nCompressedSize, sal_Int32 *nSize, sal_Int32 *nCRC );
|
/aoo41x/main/offapi/com/sun/star/setup/ |
H A D | DownloadAction.idl | 42 long nCRC;
|
Completed in 38 milliseconds