| /external/chromium_org/third_party/libjingle/source/talk/base/ |
| crc32_unittest.cc | 28 #include "talk/base/crc32.h"
|
| /external/chromium_org/third_party/lzma_sdk/ |
| 7zCrc.c | 1 /* 7zCrc.c -- CRC32 calculation
|
| /external/lzma/C/ |
| 7zCrc.c | 1 /* 7zCrc.c -- CRC32 calculation
|
| /external/protobuf/src/google/protobuf/compiler/ |
| zip_writer.h | 54 uint32 crc32; member in struct:google::protobuf::compiler::ZipWriter::FileInfo
|
| /external/zlib/src/win32/ |
| Makefile.msc | 36 OBJS = adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj \ 95 crc32.obj: $(TOP)/crc32.c $(TOP)/zlib.h $(TOP)/zconf.h $(TOP)/crc32.h
|
| /frameworks/av/include/media/stagefright/ |
| MPEG2TSWriter.h | 83 uint32_t crc32(const uint8_t *start, size_t length);
|
| /frameworks/av/media/libstagefright/wifi-display/source/ |
| TSPacketizer.h | 86 uint32_t crc32(const uint8_t *start, size_t size) const;
|
| /libcore/luni/src/main/java/java/util/zip/ |
| Checksum.java | 21 * The interface common to checksum classes such as {@link Adler32} and {@link CRC32}.
|
| /packages/apps/Browser/src/com/android/browser/ |
| BrowserBackupAgent.java | 37 import java.util.zip.CRC32; 186 // Read the given file from backup to a file, calculating a CRC32 along the way 191 CRC32 crc = new CRC32();
|
| /external/chromium_org/third_party/smhasher/src/ |
| crc.cpp | 4 * This file is derived from crc32.c from the zlib-1.1.3 distribution 8 /* crc32.c -- compute the CRC-32 of a data stream 81 void crc32 ( const void * key, int len, uint32_t seed, void * out ) function
|
| /external/chromium_org/third_party/zlib/contrib/minizip/ |
| crypt.h | 30 #define CRC32(c, b) ((*(pcrc_32_tab+(((int)(c) ^ (b)) & 0xff))) ^ ((c) >> 8)) 50 (*(pkeys+0)) = CRC32((*(pkeys+0)), c); 55 (*(pkeys+2)) = CRC32((*(pkeys+2)), keyshift);
|
| /external/pixman/test/ |
| composite-traps-test.c | 60 uint32_t crc32; local 239 crc32 = compute_crc32 (0, dst_bits, dst_stride * dst_height); 248 return crc32;
|
| glyph-test.c | 222 uint32_t crc32 = 0; local 316 crc32 = compute_crc32_for_image (0, dest); 323 return crc32;
|
| utils.c | 70 * crc32 - computed CRC-32 value 126 uint32_t crc32; local 130 /* accumulate crc32 for buffer */ 131 crc32 = in_crc32 ^ 0xFFFFFFFF; 135 crc32 = (crc32 >> 8) ^ crc_table[(crc32 ^ byte_buf[i]) & 0xFF]; 137 return (crc32 ^ 0xFFFFFFFF); 141 compute_crc32_for_image_internal (uint32_t crc32, 220 return compute_crc32 (crc32, data, stride * height) [all...] |
| affine-test.c | 48 uint32_t crc32; local 301 crc32 = compute_crc32 (0, dstbuf, dst_stride * dst_height); 306 return crc32;
|
| /external/zlib/src/contrib/minizip/ |
| crypt.h | 30 #define CRC32(c, b) ((*(pcrc_32_tab+(((int)(c) ^ (b)) & 0xff))) ^ ((c) >> 8)) 50 (*(pkeys+0)) = CRC32((*(pkeys+0)), c); 55 (*(pkeys+2)) = CRC32((*(pkeys+2)), keyshift);
|
| /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/ |
| zip_writer.cc | 146 info.crc32 = ComputeCRC32(contents); 158 output.WriteLittleEndian32(info.crc32); // crc-32 178 uint32 crc32 = files_[i].crc32; local 189 output.WriteLittleEndian32(crc32); // crc-32
|
| /packages/apps/Launcher3/util/com/android/launcher3/ |
| DecoderRing.java | 39 import java.util.zip.CRC32; 247 CRC32 checksum = new CRC32(); 317 CRC32 checksum = new CRC32();
|
| /libcore/luni/src/test/java/libcore/java/util/zip/ |
| ZipFileTest.java | 29 import java.util.zip.CRC32; 135 CRC32 crc = new CRC32(); 251 CRC32 crc = new CRC32(); 451 // setCrc takes a long, not an int, so -1 isn't a valid CRC32 (because it's 64 bits). 457 // You can set the CRC32 to 0xffffffff if you're slightly more careful though...
|
| /external/chromium_org/net/disk_cache/simple/ |
| simple_synchronous_entry.cc | 182 stream_0_crc32(crc32(0, Z_NULL, 0)), 308 *out_crc32 = crc32(crc32(0L, Z_NULL, 0), 617 uint32 crc32; local 621 GetEOFRecordData(index, entry_stat, &has_crc32, &crc32, &stream_size); 626 if (has_crc32 && crc32 != expected_crc32) { [all...] |
| /external/e2fsprogs/e2fsck/ |
| crc32.c | 2 * crc32.c --- CRC32 function 14 * Nicer crc32 functions/docs submitted by linux@horizon.com. Thanks! 20 * Same crc32 function was used in 5 other places in the kernel. 22 * There are various incantations of crc32(). Some use a seed of 0 or ~0. 23 * Some xor at the end with ~0. The generic crc32() function takes 57 * crc32_le() - Calculate bitwise little-endian Ethernet AUTODIN II CRC32 59 * other uses, or the previous crc32 value if computing incrementally. 155 * crc32_be() - Calculate bitwise big-endian Ethernet AUTODIN II CRC32 157 * other uses, or the previous crc32 value if computing incrementally [all...] |
| /external/zlib/src/ |
| crc32.c | 0 /* crc32.c -- compute the CRC-32 of a data stream 19 one thread to use crc32(). 21 DYNAMIC_CRC_TABLE and MAKECRCH can be #defined to write out crc32.h. 141 /* write out CRC tables to crc32.h */ 145 out = fopen("crc32.h", "w"); 147 fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n"); 148 fprintf(out, " * Generated automatically by crc32.c\n */\n\n"); 184 #include "crc32.h" 188 * This function can be used by asm versions of crc32() 204 unsigned long ZEXPORT crc32(crc, buf, len function [all...] |
| Makefile.in | 57 OBJZ = adler32.o crc32.o deflate.o infback.o inffast.o inflate.o inftrees.o trees.o zutil.o 61 PIC_OBJZ = adler32.lo crc32.lo deflate.lo infback.lo inffast.lo inflate.lo inftrees.lo trees.lo zutil.lo 273 crc32.o: zutil.h zlib.h zconf.h crc32.h 283 crc32.lo: zutil.h zlib.h zconf.h crc32.h
|
| /external/zlib/src/contrib/ada/ |
| 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
|
| /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/ |
| ZipOutputStreamTest.java | 24 import java.util.zip.CRC32; 160 CRC32 tempCrc = new CRC32();
|