HomeSort by relevance Sort by last modified time
    Searched refs:crc (Results 1 - 25 of 234) sorted by null

1 2 3 4 5 6 7 8 910

  /external/flac/libFLAC/include/private/
crc.h 37 /* 8 bit CRC generator, MSB shifted first
42 #define FLAC__CRC8_UPDATE(data, crc) (crc) = FLAC__crc8_table[(crc) ^ (data)];
43 void FLAC__crc8_update(const FLAC__byte data, FLAC__uint8 *crc);
44 void FLAC__crc8_update_block(const FLAC__byte *data, unsigned len, FLAC__uint8 *crc);
47 /* 16 bit CRC generator, MSB shifted first
53 #define FLAC__CRC16_UPDATE(data, crc) (((((crc)<<8) & 0xffff) ^ FLAC__crc16_table[((crc)>>8) ^ (data)])
    [all...]
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
CRC32Test.java 28 CRC32 crc = new CRC32(); local
29 assertEquals("Constructor of CRC32 failed", 0, crc.getValue());
37 CRC32 crc = new CRC32(); local
39 0, crc.getValue());
41 crc.reset();
42 crc.update(Integer.MAX_VALUE);
43 // System.out.print("value of crc " + crc.getValue());
44 // Ran JDK and discovered that the value of the CRC should be
47 4278190080L, crc.getValue())
75 CRC32 crc = new CRC32(); local
93 CRC32 crc = new CRC32(); local
124 CRC32 crc = new CRC32(); local
148 CRC32 crc = new CRC32(); local
    [all...]
  /system/extras/ext4_utils/
sparse_crc32.h 17 u32 sparse_crc32(u32 crc, const void *buf, size_t size);
make_ext4fs.h 27 int crc, int wipe, int init_itabs);
  /frameworks/base/media/libstagefright/codecs/mp3dec/src/
pvmp3_crc.cpp 46 uint32 *crc, memory location holding calculated crc value
47 uint32 crc_enabled flag to enable/disable crc checking
56 uint32 length, number of element upon the crc will be calculated
57 uint32 *crc, memory location holding calculated crc value
125 uint32 *crc,
132 calculate_crc(bits, neededBits, crc);
143 uint32 *crc)
150 carry = *crc & 0x8000
    [all...]
pvmp3_decode_header.h 91 uint32 *crc);
pvmp3_get_side_info.h 92 uint32 *crc);
pvmp3_crc.h 86 uint32 *crc,
92 uint32 *crc);
  /libcore/luni/src/main/java/java/util/zip/
CRC32.java 28 private long crc = 0L; field in class:CRC32
38 return crc;
45 tbytes = crc = 0;
56 crc = updateByteImpl((byte) val, crc);
76 crc = updateImpl(buf, offset, byteCount, crc);
GZIPOutputStream.java 47 protected CRC32 crc = new CRC32(); field in class:GZIPOutputStream
94 writeLong(crc.getValue());
95 writeLong(crc.tbytes);
105 crc.update(buffer, off, nbytes);
GZIPInputStream.java 64 protected CRC32 crc = new CRC32(); field in class:GZIPInputStream
106 crc.update(header, 0, header.length);
111 crc.update(header, 0, 2);
121 crc.update(buf, 0, result);
135 if ((short) crc.getValue() != crc16) {
136 throw new IOException("CRC mismatch");
138 crc.reset();
173 crc.update(buffer, offset, bytesRead);
186 final int trailerSize = 8; // crc (4 bytes) + total out (4 bytes)
193 if (Memory.peekInt(b, 0, ByteOrder.LITTLE_ENDIAN) != (int) crc.getValue())
    [all...]
  /external/e2fsprogs/lib/ext2fs/
crc16.h 2 * crc16.h - CRC-16 routine
4 * Implements the standard CRC-16:
20 * unsigned int for holding the CRC value to avoid this.
24 extern crc16_t ext2fs_crc16(crc16_t crc, const void *buffer, unsigned int len);
  /external/e2fsprogs/e2fsck/
crc32.c 58 * @crc: seed value for computation. ~0 for Ethernet, sometimes 0 for
60 * @p: pointer to buffer over which CRC is run
63 __u32 crc32_le(__u32 crc, unsigned char const *p, size_t len);
71 __u32 crc32_le(__u32 crc, unsigned char const *p, size_t len)
75 crc ^= *p++;
77 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
79 return crc;
83 __u32 crc32_le(__u32 crc, unsigned char const *p, size_t len
    [all...]
gen_crc32table.c 27 * crc is the crc of the byte i; other entries are filled in based on the
34 uint32_t crc = 1; local
39 crc = (crc >> 1) ^ ((crc & 1) ? CRCPOLY_LE : 0);
41 crc32table_le[i + j] = crc ^ crc32table_le[j];
51 uint32_t crc = 0x80000000; local
56 crc = (crc << 1) ^ ((crc & 0x80000000) ? CRCPOLY_BE : 0)
    [all...]
  /external/webkit/Tools/DumpRenderTree/
CyclicRedundancyCheck.cpp 59 unsigned crc = 0xffffffffL; local
61 crc = crcTable[(crc ^ buffer[i]) & 0xff] ^ ((crc >> 8) & 0x00ffffffL);
62 return crc ^ 0xffffffffL;
  /external/srec/portable/include/
pcrc.h 35 * Computes the CRC-encoding of the block of data.
37 * @param data The data on which to compute the CRC
39 * @return the CRC of the data.
45 * Computes the CRC-encoding of a string.
47 * @param str The string for which to compute the CRC
48 * @return the CRC of the string.
60 * Updates the CRC when adding a new byte.
62 * @param crc The initial crc value.
63 * @param data datum to append to the crc
    [all...]
  /libcore/luni/src/main/native/
java_util_zip_Adler32.cpp 26 static jlong Adler32_updateImpl(JNIEnv* env, jobject, jbyteArray byteArray, int off, int len, jlong crc) {
31 return adler32(crc, reinterpret_cast<const Bytef*>(bytes.get() + off), len);
34 static jlong Adler32_updateByteImpl(JNIEnv*, jobject, jint val, jlong crc) {
36 return adler32(crc, reinterpret_cast<const Bytef*>(&bytefVal), 1);
java_util_zip_CRC32.cpp 26 static jlong CRC32_updateImpl(JNIEnv* env, jobject, jbyteArray byteArray, int off, int len, jlong crc) {
31 jlong result = crc32(crc, reinterpret_cast<const Bytef*>(bytes.get() + off), len);
35 static jlong CRC32_updateByteImpl(JNIEnv*, jobject, jbyte val, jlong crc) {
36 return crc32(crc, reinterpret_cast<const Bytef*>(&val), 1);
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
CrcFunction.java 28 * Returns the CRC-32 of a string.
34 * @return CRC-32 of string as number value
38 // This function produces a 'standard' CRC-32 (IV -1, reflected polynomial,
39 // and final complement step). The CRC-32 of "123456789" is 0xCBF43926.
40 Checksum crc = new CRC32(); local
47 crc.update(b, 0, b.length);
49 // CRC fits into 32 bits by definition.
50 return literalConstant((int) crc.getValue(), args[0]);
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidChecksumTest.java 56 CRC32 crc = new CRC32(); local
59 crc.update(values);
60 assertEquals(crc.getValue(), expected);
63 crc.reset();
65 crc.update(values[i]);
67 assertEquals(crc.getValue(), expected);
  /device/moto/stingray/whisper/
SHA_Comm.c 33 /** \brief Calculates CRC
35 * \param[in] data pointer to data for which CRC should be calculated
41 uint16_t crc = 0x0000; local
49 cbit = (0x8000 & crc) ? 1 : 0;
50 crc <<= 1;
52 crc ^= poly;
56 crc = (crc << 8) | (crc >> 8); // flip byte order
59 return crc;
    [all...]
  /dalvik/vm/analysis/
DexPrepare.h 94 u4 modWhen, u4 crc, bool isBootstrap, bool* pNewFile, bool createIfMissing);
109 u4 crc, bool expectVerify, bool expectOpt);
118 const char* fileName, u4 modWhen, u4 crc, bool isBootstrap);
124 const char* fileName, u4 modWhen, u4 crc, bool isBootstrap);
  /external/qemu/distrib/zlib-1.2.3/
crc32.c 1 /* crc32.c -- compute the CRC-32 of a data stream
6 * CRC methods: exclusive-oring 32 bits of data at a time, and pre-computing
17 of the crc tables. Therefore, if you #define DYNAMIC_CRC_TABLE, you should
54 /* Definitions for doing the crc four data bytes at a time. */
67 /* Local functions for crc concatenation */
81 Generate tables for a byte-wise 32-bit CRC calculation on the polynomial:
89 byte 0xb1 is the polynomial x^7+x^3+x+1), then the CRC is (q*x^32) mod p,
100 The first table is simply the CRC of all possible eight bit values. This is
102 combinations of CRC register values and incoming bytes. The remaining tables
103 allow for word-at-a-time CRC calculation for both big-endian and little
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
ImagesManager.cpp 73 unsigned crc = 0; local
76 crc = ImageTexture::computeCRC(img);
80 if (m_images.contains(crc)) {
81 image = m_images.get(crc);
89 image = new ImageTexture(img, crc);
92 m_images.set(crc, image);
  /external/bluetooth/bluez/tools/
ubcsp.c 50 static uint16 ubcsp_calc_crc (uint8 ch, uint16 crc);
70 /* The two version are for the CRC and non-CRC varients */
127 /* This is the storage required for building send and crc data */
216 /** Takes the next 8 bit value ch, and updates the crc with this value **/
223 static uint16 ubcsp_calc_crc (uint8 ch, uint16 crc)
225 /* Calculate the CRC using the above 16 entry lookup table */
237 crc = (crc >> 4) ^ crc_table[(crc ^ ch) & 0x000f];
374 crc; local
    [all...]

Completed in 797 milliseconds

1 2 3 4 5 6 7 8 910