HomeSort by relevance Sort by last modified time
    Searched defs:crc32 (Results 1 - 25 of 26) sorted by null

1 2

  /external/elfutils/libelf/
libelf_crc32.c 20 #define crc32 attribute_hidden __libelf_crc32 macro
23 #include "../lib/crc32.c"
  /external/elfutils/lib/
crc32.c 78 crc32 (uint32_t crc, unsigned char *buf, size_t len) function
  /hardware/broadcom/wlan/bcm4329/src/include/
trxhdr.h 40 uint32 crc32; /* 32-bit CRC from flag_version to end of file */ member in struct:trx_header
  /bootable/recovery/minzip/
Zip.h 33 long crc32; member in struct:ZipEntry
127 return pEntry->crc32;
  /external/qemu/distrib/zlib-1.2.3/
crc32.c 0 /* crc32.c -- compute the CRC-32 of a data stream
19 one thread to use crc32().
157 /* write out CRC tables to crc32.h */
161 out = fopen("crc32.h", "w");
163 fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n");
164 fprintf(out, " * Generated automatically by crc32.c\n */\n\n");
199 #include "crc32.h"
203 * This function can be used by asm versions of crc32()
219 unsigned long ZEXPORT crc32(crc, buf, len) function
zconf.h 42 # define crc32 z_crc32 macro
  /external/zlib/contrib/pascal/
zlibpas.pas 126 function crc32(crc: LongInt; const buf: PChar; len: Integer): LongInt; function
147 {$L crc32.obj}
161 function crc32; external; function
  /external/zlib/
crc32.c 0 /* crc32.c -- compute the CRC-32 of a data stream
19 one thread to use crc32().
157 /* write out CRC tables to crc32.h */
161 out = fopen("crc32.h", "w");
163 fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n");
164 fprintf(out, " * Generated automatically by crc32.c\n */\n\n");
199 #include "crc32.h"
203 * This function can be used by asm versions of crc32()
219 unsigned long ZEXPORT crc32(crc, buf, len) function
zconf.h 42 # define crc32 z_crc32 macro
zconf.in.h 42 # define crc32 z_crc32 macro
  /frameworks/base/include/utils/
BackupHelpers.h 48 int crc32; member in struct:android::FileState
  /system/core/libzipfile/
centraldir.c 75 unsigned long crc32; local
106 crc32 = read_le_int(&p[0x10]);
  /dalvik/dexopt/
OptMain.c 59 long uncompLen, modWhen, crc32; local
104 &modWhen, &crc32))
112 crc32 = crc32;
169 modWhen, crc32, isBootstrap))
  /external/zlib/contrib/delphi/
ZLib.pas 202 {$L crc32.obj}
214 procedure crc32; external; procedure
  /frameworks/base/libs/utils/
Asset.cpp 189 unsigned long crc32; local
191 &compressedLen, &crc32);
  /dalvik/libcore/archive/src/main/native/
zipsup.h 106 U_32 crc32; member in struct:HyZipDataDescriptor
124 U_32 crc32; member in struct:HyZipEntry
  /frameworks/base/awt/org/apache/harmony/awt/gl/image/
PngDecoderJava.java 36 import java.util.zip.CRC32;
124 CRC32 crc32 = new CRC32(); local
125 crc32.update(typeBytes);
126 crc32.update(data);
127 long calculated = crc32.getValue();
  /ndk/build/platforms/android-3/arch-arm/usr/include/
zconf.h 42 # define crc32 z_crc32 macro
  /ndk/build/platforms/android-4/arch-arm/usr/include/
zconf.h 42 # define crc32 z_crc32 macro
  /ndk/build/platforms/android-5/arch-arm/usr/include/
zconf.h 42 # define crc32 z_crc32 macro
  /ndk/build/platforms/android-5/arch-x86/usr/include/
zconf.h 42 # define crc32 z_crc32 macro
  /ndk/build/platforms/android-8/arch-arm/usr/include/
zconf.h 42 # define crc32 z_crc32 macro
  /ndk/build/platforms/android-8/arch-x86/usr/include/
zconf.h 42 # define crc32 z_crc32 macro
  /external/zlib/contrib/minizip/
unzip.c 114 uLong crc32; /* crc32 of all data uncompressed */ member in struct:__anon7050
115 uLong crc32_wait; /* crc32 we must obtain after decompress all */
    [all...]
zip.c 129 uLong crc32; member in struct:__anon7052
768 zi->ci.crc32 = 0;
983 zi->ci.crc32 = crc32(zi->ci.crc32,buf,len);
1031 extern int ZEXPORT zipCloseFileInZipRaw (file, uncompressed_size, crc32)
1034 uLong crc32;
1079 crc32 = (uLong)zi->ci.crc32;
1087 ziplocal_putValue_inmemory(zi->ci.central_header+16,crc32,4); /*crc*
    [all...]

Completed in 666 milliseconds

1 2