HomeSort by relevance Sort by last modified time
    Searched refs:CRC32 (Results 76 - 100 of 159) sorted by null

1 2 34 5 6 7

  /toolchain/binutils/binutils-2.27/zlib/as400/
compile.clp 56 CHGVAR VAR(&CMD) VALUE(&FIXDCMD *TCAT 'CRC32)')
100 &MODLIB/CRC32 &MODLIB/DEFLATE +
  /build/soong/third_party/zip/
android.go 66 b.uint32(fh.CRC32)
115 // The UncompressedSize64 and CRC32 entries in the FileHeader must be filled
214 b.uint32(fh.CRC32)
writer.go 12 "hash/crc32"
80 b.uint32(h.CRC32)
233 crc32: crc32.NewIEEE(),
273 b.uint32(0) // crc32,
277 b.uint32(h.CRC32)
332 crc32 hash.Hash32
340 w.crc32.Write(p)
357 fh.CRC32 = w.crc32.Sum32(
    [all...]
  /prebuilts/go/darwin-x86/src/archive/zip/
reader.go 13 "hash/crc32"
175 hash: crc32.NewIEEE(),
212 } else if r.hash.Sum32() != r.f.CRC32 {
217 // the CRC32 of what we've read against the file header
218 // or TOC's CRC32, if it seems like it was set.
219 if r.f.CRC32 != 0 && r.hash.Sum32() != r.f.CRC32 {
265 f.CRC32 = b.uint32()
453 if b.uint32() != f.CRC32 {
writer.go 12 "hash/crc32"
99 b.uint32(h.CRC32)
325 crc32: crc32.NewIEEE(),
370 b.uint32(0) // since we are writing a data descriptor crc32,
409 crc32 hash.Hash32
417 w.crc32.Write(p)
432 fh.CRC32 = w.crc32.Sum32()
458 b.uint32(fh.CRC32)
    [all...]
  /prebuilts/go/linux-x86/src/archive/zip/
reader.go 13 "hash/crc32"
175 hash: crc32.NewIEEE(),
212 } else if r.hash.Sum32() != r.f.CRC32 {
217 // the CRC32 of what we've read against the file header
218 // or TOC's CRC32, if it seems like it was set.
219 if r.f.CRC32 != 0 && r.hash.Sum32() != r.f.CRC32 {
265 f.CRC32 = b.uint32()
453 if b.uint32() != f.CRC32 {
writer.go 12 "hash/crc32"
99 b.uint32(h.CRC32)
325 crc32: crc32.NewIEEE(),
370 b.uint32(0) // since we are writing a data descriptor crc32,
409 crc32 hash.Hash32
417 w.crc32.Write(p)
432 fh.CRC32 = w.crc32.Sum32()
458 b.uint32(fh.CRC32)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/DxeMain/
DxeMain.c 52 0, // CRC32
106 0, // CRC32
134 0, // CRC32
156 0, // CRC32
711 Hdr->CRC32 = 0;
719 Hdr->CRC32 = Crc;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/
BmConsole.c 759 // Update the CRC32 in the EFI System Table header
761 gST->Hdr.CRC32 = 0;
765 &gST->Hdr.CRC32
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/GenericBdsLib/
BdsConsole.c 562 // Update the CRC32 in the EFI System Table header
564 gST->Hdr.CRC32 = 0;
568 &gST->Hdr.CRC32
631 // Update the CRC32 in the EFI System Table header
633 gST->Hdr.CRC32 = 0;
637 &gST->Hdr.CRC32
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Misc/
PropertiesTable.c 832 gBS->Hdr.CRC32 = 0;
833 gBS->CalculateCrc32 ((UINT8 *)gBS, gBS->Hdr.HeaderSize, &gBS->Hdr.CRC32);
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Application/Shell/
ConsoleLogger.c 95 // Update the CRC32 in the EFI System Table header
97 gST->Hdr.CRC32 = 0;
101 &gST->Hdr.CRC32
138 // Update the CRC32 in the EFI System Table header
140 gST->Hdr.CRC32 = 0;
144 &gST->Hdr.CRC32
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Override/IntelFrameworkModulePkg/Library/GenericBdsLib/
BdsConsole.c 562 // Update the CRC32 in the EFI System Table header
564 gST->Hdr.CRC32 = 0;
568 &gST->Hdr.CRC32
631 // Update the CRC32 in the EFI System Table header
633 gST->Hdr.CRC32 = 0;
637 &gST->Hdr.CRC32
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
AdaptivePlaybackTest.java 48 import java.util.zip.CRC32;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/BdsDxe/
BdsEntry.c 744 gST->Hdr.CRC32 = 0;
745 gBS->CalculateCrc32 ((VOID *) gST, sizeof (EFI_SYSTEM_TABLE), &gST->Hdr.CRC32);
    [all...]
  /libcore/ojluni/src/main/java/java/util/zip/
ZipOutputStream.java 75 private CRC32 crc = new CRC32();
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
gnu.go 105 case CRC32:
106 // CRC32 has a mandatory F2 prefix.
251 case CRC32:
253 // but libopcodes still always puts a suffix on crc32.
285 case CRC32:
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
gnu.go 105 case CRC32:
106 // CRC32 has a mandatory F2 prefix.
251 case CRC32:
253 // but libopcodes still always puts a suffix on crc32.
285 case CRC32:
  /prebuilts/misc/common/swig/include/2.0.11/gcj/
javaprims.i 391 class CRC32;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/WebServer/
SystemTable.c 90 pHeader->CRC32,
  /external/syslinux/gpxe/src/drivers/net/
amd8111e.h 611 #define CRC32 0xedb88320
  /external/emma/core/java12/com/vladium/emma/instr/
InstrProcessorST.java 25 import java.util.zip.CRC32;
    [all...]
  /frameworks/base/core/java/android/os/
FileUtils.java 58 import java.util.zip.CRC32;
601 * Computes the checksum of a file using the CRC32 checksum routine.
608 CRC32 checkSummer = new CRC32();
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsBackupAgent.java 59 import java.util.zip.CRC32;
481 CRC32 checkSummer = new CRC32();
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
FileUtils.java 35 import java.util.zip.CRC32;
    [all...]

Completed in 1235 milliseconds

1 2 34 5 6 7