| /frameworks/base/tools/aapt/ |
| ZipEntry.cpp | 259 void ZipEntry::setDataInfo(long uncompLen, long compLen, unsigned long crc32, 263 mCDE.mCRC32 = crc32; 303 ALOGV("cmp: CRC32\n"); 512 ALOGD(" modTime=0x%04x modDate=0x%04x crc32=0x%08lx\n", 681 ALOGD(" modTime=0x%04x modDate=0x%04x crc32=0x%08lx\n",
|
| /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/lib/ |
| libz.so | |
| /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/lib/ |
| libz.so | |
| /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/lib/ |
| libz.so | |
| /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/lib/ |
| libz.so | |
| /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/lib/ |
| libz.so | |
| /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/lib/ |
| libz.so | |
| /external/chromium_org/third_party/zlib/contrib/minizip/ |
| zip.c | 152 uLong crc32; member in struct:__anon17295 [all...] |
| /external/valgrind/main/none/tests/amd64/ |
| Makefile.in | 71 @BUILD_SSE42_TESTS_TRUE@ pcmpstr64 pcmpxstrx64 sse4-64 crc32 aes \ 109 @BUILD_SSE42_TESTS_TRUE@ crc32$(EXEEXT) aes$(EXEEXT) \ 161 crc32_SOURCES = crc32.c 162 crc32_OBJECTS = crc32.$(OBJEXT) 270 bug156404-amd64.c clc.c cmpxchg.c crc32.c faultstatus.c \ 281 bug156404-amd64.c clc.c cmpxchg.c crc32.c faultstatus.c \ 592 crc32.vgtest crc32.stdout.exp crc32.stderr.exp \ 730 crc32$(EXEEXT): $(crc32_OBJECTS) $(crc32_DEPENDENCIES) [all...] |
| /external/zlib/src/contrib/ada/ |
| zlib-thin.ads | 242 function crc32 420 pragma Import (C, crc32, "crc32");
|
| /external/zlib/src/contrib/minizip/ |
| minizip.c | 183 /* calculate the CRC32 of a file, 184 because to encrypt a file, we need known the CRC32 of the file before */ 211 calculate_crc = crc32(calculate_crc,buf,size_read);
|
| zip.c | 152 uLong crc32; member in struct:__anon31730 [all...] |
| /external/zlib/src/examples/ |
| gzjoin.c | 38 crc32 for the concatenated uncompressed data. gzjoin does however have to 61 /* crc32(), crc32_combine(), inflateInit2(), inflate(), inflateEnd() */ 268 *crc = crc32(0L, Z_NULL, 0);
|
| /external/chromium_org/net/disk_cache/simple/ |
| simple_entry_impl.h | 329 // When possible, we compute a crc32, for the data in each entry as we read or 330 // write. For each stream, |crc32s_[index]| is the crc32 of that stream from
|
| /external/liblzf/cs/ |
| CLZF.cs | 49 // CRC32 data & function 106 public UInt32 crc32(UInt32 OldCRC,byte NewData) method in class:LZF.NET.CLZF
|
| /external/liblzf/src/org/liblzf/ |
| CLZF.java | 48 // CRC32 data & function 106 public int crc32(int OldCRC,byte NewData)
|
| /external/qemu/distrib/zlib-1.2.3/ |
| gzio.c | 63 uLong crc; /* crc32 of uncompressed data */ 123 s->crc = crc32(0L, Z_NULL, 0); 171 * return Z_STREAM_END. Here the gzip CRC32 ensures that 4 bytes are 470 s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start)); 484 s->crc = crc32(0L, Z_NULL, 0); 490 s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start)); 589 s->crc = crc32(s->crc, (const Bytef *)buf, len); 869 s->crc = crc32(0L, Z_NULL, 0);
|
| /frameworks/base/core/jni/ |
| com_android_internal_content_NativeLibraryHelper.cpp | 128 long crc = crc32(0L, Z_NULL, 0); 132 crc = crc32(crc, crcBuffer, numBytes);
|
| /libcore/luni/src/main/java/java/util/zip/ |
| ZipInputStream.java | 87 private final CRC32 crc = new CRC32();
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
| zipfile.py | 12 crc32 = zlib.crc32 variable 15 crc32 = binascii.crc32 variable 436 ZIP encryption uses the CRC32 one-byte primitive for scrambling some 438 relying on binascii.crc32(). 454 """Compute the CRC32 primitive on one byte.""" 551 self._running_crc = crc32(b'') & 0xffffffff 640 self._running_crc = crc32(newdata, self._running_crc) & 0xffffffff [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
| zipfile.py | 12 crc32 = zlib.crc32 variable 15 crc32 = binascii.crc32 variable 436 ZIP encryption uses the CRC32 one-byte primitive for scrambling some 438 relying on binascii.crc32(). 454 """Compute the CRC32 primitive on one byte.""" 551 self._running_crc = crc32(b'') & 0xffffffff 640 self._running_crc = crc32(newdata, self._running_crc) & 0xffffffff [all...] |
| /bionic/libc/include/net/ |
| if_ether.h | 97 * Ethernet CRC32 polynomials (big- and little-endian verions).
|
| /development/ndk/platforms/android-3/include/net/ |
| if_ether.h | 97 * Ethernet CRC32 polynomials (big- and little-endian verions).
|
| /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/ |
| GZIPOutputStreamTest.java | 144 // ran JDK and found this CRC32 value is 3097700292
|
| /external/chromium_org/rlz/lib/ |
| rlz_lib.cc | 13 #include "rlz/lib/crc32.h" 421 if (!Crc32(message.c_str(), &calculated_crc)) 424 checksum_param = "crc32: "; // Empty response case. 429 if (!Crc32("", &calculated_crc))
|