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

1 2 34 5 6

  /external/python/cpython3/Lib/
zipfile.py 314 'CRC',
358 # CRC CRC-32 of the uncompressed file
391 CRC = compress_size = file_size = 0
393 CRC = self.CRC
425 self.compress_type, dostime, dosdate, CRC,
523 """Generate a CRC-32 table.
532 crc = i
534 if crc & 1
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Universal/MmcDxe/
Mmc.h 106 UINT32 CRC; // CRC7 checksum [7:1]
118 UINT8 CRC: 7; // CRC [7:1]
  /external/libmojo/build/android/gyp/util/
md5_check.py 407 if zip_info.CRC:
409 (zip_info.filename, zip_info.CRC + zip_info.compress_type))
  /external/clang/tools/libclang/
Indexing.cpp 885 llvm::CrashRecoveryContext CRC;
887 if (!RunSafely(CRC, IndexSourceFileImpl)) {
939 llvm::CrashRecoveryContext CRC;
941 if (!RunSafely(CRC, IndexTranslationUnitImpl)) {
    [all...]
CIndexCodeCompletion.cpp 825 llvm::CrashRecoveryContext CRC;
827 if (!RunSafely(CRC, CodeCompleteAtImpl)) {
    [all...]
CIndex.cpp     [all...]
  /external/lzma/CPP/7zip/Bundles/Alone7z/
makefile 11 $O\CRC.obj \
148 !include "../../Crc.mak"
  /external/lzma/CPP/7zip/Bundles/SFXWin/
makefile 22 $O\CRC.obj \
145 !include "../../Crc.mak"
  /external/cblas/testing/
c_dblat3.f 712 CHARACTER*14 CRC, CTA,CTB
729 CRC = ' CblasRowMajor'
731 CRC = ' CblasColMajor'
733 WRITE(NOUT, FMT = 9995)NC,SNAME,CRC, CTA,CTB
    [all...]
c_sblat3.f 715 CHARACTER*14 CRC, CTA,CTB
732 CRC = ' CblasRowMajor'
734 CRC = ' CblasColMajor'
736 WRITE(NOUT, FMT = 9995)NC,SNAME,CRC, CTA,CTB
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ntddcdrm.h 235 UCHAR CRC[2];
  /external/clang/lib/Lex/
Pragma.cpp 911 llvm::CrashRecoveryContext *CRC =llvm::CrashRecoveryContext::GetCurrent();
912 if (CRC)
913 CRC->HandleCrash();
    [all...]
  /external/scapy/scapy/contrib/
pnio_rtc.py 302 CRC and control/status byte.
312 # Try to find at least 3 high entropy successive bytes (the CRC)
337 # Limit for a CRC is set to 6 bit of entropy min
343 if succ_count >= 3: # Possible profisafe CRC
347 {"CRC": succ_count, "length": conf["length"]}
463 It's a configurable packet whose config includes a fix length, and a CRC
464 length. The config parameter must then be a dict {"length": X, "CRC": Y}.
470 XVarBytesField("CRC", 0, length_from=lambda p: p[Profisafe].crc_length())
478 """Return the length of the crc"""
479 return self._config["CRC"]
    [all...]
  /prebuilts/go/darwin-x86/src/compress/bzip2/
bzip2.go 171 // End of block. Check CRC.
191 // Check end-of-file CRC.
482 crc := uint32(i) << 24
484 if crc&0x80000000 != 0 {
485 crc = (crc << 1) ^ poly
487 crc <<= 1
490 crctab[i] = crc
494 // updateCRC updates the crc value to incorporate the data in b.
497 crc := ^va
    [all...]
  /prebuilts/go/linux-x86/src/compress/bzip2/
bzip2.go 171 // End of block. Check CRC.
191 // Check end-of-file CRC.
482 crc := uint32(i) << 24
484 if crc&0x80000000 != 0 {
485 crc = (crc << 1) ^ poly
487 crc <<= 1
490 crctab[i] = crc
494 // updateCRC updates the crc value to incorporate the data in b.
497 crc := ^va
    [all...]
  /external/syslinux/gpxe/src/drivers/net/
mtd80x.c 116 TALLY = 0x44, /* tally counters for crc and mpa */
186 CRC = 0x08, /* crc error */
213 CRCEnable = 0x08000000, /* crc control */
478 (rx_status & CRC) ? "crc_error ":"" );
487 /* Omit the four octet CRC from the length. */
  /prebuilts/go/darwin-x86/src/compress/gzip/
gzip.go 34 digest uint32 // CRC-32, IEEE polynomial (section 8)
gunzip.go 78 digest uint32 // CRC-32, IEEE polynomial (section 8)
  /prebuilts/go/linux-x86/src/compress/gzip/
gzip.go 34 digest uint32 // CRC-32, IEEE polynomial (section 8)
gunzip.go 78 digest uint32 // CRC-32, IEEE polynomial (section 8)
  /build/soong/zip/
zip.go 531 // we're sure about the Method and CRC.
552 // Calculate the CRC in the background, since reading the entire
603 crc := crc32.NewIEEE()
604 _, err := io.Copy(crc, r)
610 ze.fh.CRC32 = crc.Sum32()
665 crc := crc32.NewIEEE()
666 _, err := io.Copy(crc, r)
672 ze.fh.CRC32 = crc.Sum32()
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/
XLIFF2ICUConverter.java 121 private static final String CRC = "crc";
946 String crc = getAttributeValue(transUnit, CRC); local
    [all...]
  /external/clang/lib/Basic/
Targets.cpp     [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp     [all...]
  /prebuilts/go/darwin-x86/src/image/png/
writer.go 116 crc := crc32.NewIEEE()
117 crc.Write(e.header[4:8])
118 crc.Write(b)
119 writeUint32(e.footer[:4], crc.Sum32())
189 // including an 8-byte header and 4-byte CRC checksum per Write call. Such calls

Completed in 516 milliseconds

1 2 34 5 6