Searched defs:crc32 (Results 1 - 25 of 65) sorted by path

123

/external/chromium_org/chrome/browser/chromeos/login/
H A Dhwid_checker.cc22 return static_cast<unsigned>(crc32(
29 unsigned crc32 = CalculateCRC32(data); local
33 snprintf(checksum, 5, "%04u", crc32 % 10000);
52 unsigned crc32 = CalculateCRC32(data); local
56 checksum += base32_alphabet[(crc32 >> 5) & 0x1f];
57 checksum += base32_alphabet[crc32 & 0x1f];
82 unsigned crc32 = CalculateCRC32(data); local
85 checksum += base8_alphabet[(crc32 >> 5) & 0x7];
86 checksum += base32_alphabet[crc32 & 0x1f];
/external/chromium_org/media/formats/mp2t/
H A Dts_section_pat.cc73 int crc32; local
74 RCHECK(bit_reader->ReadBits(32, &crc32));
H A Dts_section_pmt.cc106 int crc32; local
107 RCHECK(bit_reader->ReadBits(32, &crc32));
/external/chromium_org/net/disk_cache/simple/
H A Dsimple_synchronous_entry.cc167 stream_0_crc32(crc32(0, Z_NULL, 0)),
294 *out_crc32 = crc32(crc32(0L, Z_NULL, 0),
602 uint32 crc32; local
606 GetEOFRecordData(index, entry_stat, &has_crc32, &crc32, &stream_size);
611 if (has_crc32 && crc32 != expected_crc32) {
1087 ? crc32(0, Z_NULL, 0)
1088 : crc32(crc32(0, Z_NULL, 0),
1333 // If we read the whole range and we have a crc32, chec
[all...]
/external/chromium_org/sdch/open-vcdiff/src/zlib/
H A Dzconf.h42 # define crc32 z_crc32 macro
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dzip_writer.cc146 info.crc32 = ComputeCRC32(contents);
158 output.WriteLittleEndian32(info.crc32); // crc-32
178 uint32 crc32 = files_[i].crc32; local
189 output.WriteLittleEndian32(crc32); // crc-32
H A Dzip_writer.h84 uint32 crc32; member in struct:google::protobuf::compiler::ZipWriter::FileInfo
/external/chromium_org/third_party/smhasher/src/
H A Dcrc.cpp4 * 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/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dsse4-err.asm2 crc32 r8d, bh ; error label
3 crc32 rax, bh ; error label
H A Dsse4.asm18 crc32 eax, bl label
19 crc32 eax, bh label
20 crc32 eax, r9b label
21 crc32 eax, byte [0] label
22 crc32 eax, bx label
23 crc32 eax, word [0] label
24 crc32 eax, ebx label
25 crc32 eax, dword [0] label
27 crc32 r8d, bl label
28 ;crc32 r8
29 crc32 r8d, r9b label
30 crc32 r8d, byte [0] label
31 crc32 r8d, bx label
32 crc32 r8d, word [0] label
33 crc32 r8d, ebx label
34 crc32 r8d, dword [0] label
36 crc32 rax, bl label
38 crc32 rax, r9b label
39 crc32 rax, byte [0] label
40 crc32 rax, rbx label
41 crc32 rax, qword [0] label
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/tests/
H A Dsyntax-err.asm1 global crc32
2 crc32: resd 1 label
/external/chromium_org/third_party/zlib/contrib/minizip/
H A Dunzip.c151 uLong crc32; /* crc32 of all data uncompressed */ member in struct:__anon16390
152 uLong crc32_wait; /* crc32 we must obtain after decompress all */
1541 pfile_in_zip_read_info->crc32=0;
1779 pfile_in_zip_read_info->crc32 = crc32(pfile_in_zip_read_info->crc32,
1816 pfile_in_zip_read_info->crc32 = crc32(pfile_in_zip_read_info->crc32,bufBefor
[all...]
H A Dzip.c152 uLong crc32; member in struct:__anon16392
1124 zi->ci.crc32 = 0;
1413 zi->ci.crc32 = crc32(zi->ci.crc32,buf,(uInt)len);
1508 extern int ZEXPORT zipCloseFileInZipRaw (zipFile file, uLong uncompressed_size, uLong crc32) argument
1510 return zipCloseFileInZipRaw64 (file, uncompressed_size, crc32);
1513 extern int ZEXPORT zipCloseFileInZipRaw64 (zipFile file, ZPOS64_T uncompressed_size, uLong crc32) argument
1601 crc32 = (uLong)zi->ci.crc32;
[all...]
/external/chromium_org/third_party/zlib/
H A Dcrc32.c0 /* crc32.c -- compute the CRC-32 of a data stream
19 one thread to use crc32().
159 /* write out CRC tables to crc32.h */
163 out = fopen("crc32.h", "w");
165 fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n");
166 fprintf(out, " * Generated automatically by crc32.c\n */\n\n");
201 #include "crc32.h"
205 * This function can be used by asm versions of crc32()
221 unsigned long ZEXPORT crc32(crc, buf, len) function
H A Dmozzconf.h91 #define crc32 MOZ_Z_crc32 macro
H A Dzconf.h36 # define crc32 z_crc32 macro
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.pde.api.tools_1.0.202.v20100820_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/elfutils/0.153/lib/
H A Dcrc32.c111 crc32 (uint32_t crc, unsigned char *buf, size_t len) function
/external/elfutils/0.153/libdw/
H A Ddwarf_begin_elf.c66 # define crc32 loser_crc32 macro
68 # undef crc32 macro
/external/elfutils/0.153/libdwfl/
H A Dgzip.c82 # define crc32 loser_crc32 macro
H A Dlibdwfl_crc32.c53 #define crc32 attribute_hidden __libdwfl_crc32 macro
56 #include "../lib/crc32.c"
H A Dlibdwfl_crc32_file.c54 #define crc32 __libdwfl_crc32 macro

Completed in 2142 milliseconds

123