Searched defs:crc (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_decode_header.cpp40 uint32 *crc
44 uint32 *crc initialized crc computation
117 uint32 *crc)
172 *crc = 0xffff; /* CRC start value */
173 calculate_crc((temp << 16) >> 16, 16, crc);
115 pvmp3_decode_header(tmp3Bits *inputStream, mp3Header *info, uint32 *crc) argument
H A Dpvmp3_get_side_info.cpp40 uint32 *crc initialized crc value (if enabled)
117 uint32 *crc)
128 tmp = getbits_crc(inputStream, 14, crc, info->error_protection);
134 tmp = getbits_crc(inputStream, 12, crc, info->error_protection);
142 tmp = getbits_crc(inputStream, 4, crc, info->error_protection);
153 si->ch[ch].gran[gr].part2_3_length = getbits_crc(inputStream, 12, crc, info->error_protection);
154 tmp = getbits_crc(inputStream, 22, crc, info->error_protection);
163 tmp = getbits_crc(inputStream, 22, crc, info->error_protection);
195 tmp = getbits_crc(inputStream, 22, crc, inf
114 pvmp3_get_side_info(tmp3Bits *inputStream, mp3SideInfo *si, mp3Header *info, uint32 *crc) argument
[all...]
H A Dpvmp3_crc.cpp46 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
123 getbits_crc(tmp3Bits *inputStream, int32 neededBits, uint32 *crc, uint32 crc_enabled) argument
141 calculate_crc(uint32 data, uint32 length, uint32 *crc) argument
[all...]
/frameworks/base/libs/utils/
H A DBackupHelpers.cpp228 int crc = crc32(0L, Z_NULL, 0); local
319 int crc = crc32(0L, Z_NULL, 0); local
324 crc = crc32(crc, (Bytef*)buf, amt);
328 return crc;
468 int crc; local
497 // Write the file and compute the crc
498 crc = crc32(0L, Z_NULL, 0);
512 crc = crc32(crc, (Byte
[all...]
/frameworks/base/tools/aapt/
H A DZipFile.cpp366 unsigned long crc; local
417 result = compressFpToFp(mZipFp, inputFp, data, size, &crc);
446 result = copyFpToFp(mZipFp, inputFp, &crc);
448 result = copyDataToFp(mZipFp, data, size, &crc);
469 &compressedLen, &crc);
498 pEntry->setDataInfo(uncompressedLen, endPosn - startPosn, crc,
752 unsigned long crc; local
791 crc = crc32(0L, Z_NULL, 0);
821 crc = crc32(crc, inBu
[all...]

Completed in 355 milliseconds