HomeSort by relevance Sort by last modified time
    Searched refs:CRC (Results 51 - 75 of 82) sorted by null

1 23 4

  /external/libchrome/build/android/gyp/util/
md5_check.py 407 if zip_info.CRC:
409 (zip_info.filename, zip_info.CRC + zip_info.compress_type))
  /external/libhevc/test/encoder/
vid_enc_cfg.txt 105 --sei_hash_flags 0 /* 3- Checksum, 2- CRC, 0- disable {0} */
  /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 \
154 !include "../../Crc.mak"
  /external/lzma/CPP/7zip/Bundles/SFXWin/
makefile 24 $O\CRC.obj \
150 !include "../../Crc.mak"
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/
RawTypes.h 335 support::ulittle32_t CRC; // CRC of the original file contents.
  /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...]
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/bzip2/
BZip2CompressorInputStream.java 63 private final CRC crc = new CRC(); field in class:BZip2CompressorInputStream
302 // End of stream was reached. Check the combined CRC and
334 this.crc.initialiseCRC();
339 this.computedBlockCRC = this.crc.getFinalCRC();
341 // A bad CRC is considered a fatal error.
349 throw new IOException("BZip2 CRC error");
363 throw new IOException("BZip2 CRC error");
798 this.crc.updateCRC(su_ch2Shadow)
    [all...]
BZip2CompressorOutputStream.java 305 private final CRC crc = new CRC(); field in class:BZip2CompressorOutputStream
426 this.crc.updateCRC(currentCharShadow, runLengthShadow);
543 this.crc.initialiseCRC();
555 this.blockCRC = this.crc.getFinalCRC();
585 /* Now the block's CRC, so it is in a known place. */
    [all...]
  /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...]
  /external/syzkaller/vendor/cloud.google.com/go/storage/
writer.go 38 // is a valid CRC and normally a zero would not be transmitted.
  /external/u-boot/arch/arm/dts/
stm32f429.dtsi 601 crc: crc@40023000 {
602 compatible = "st,stm32f4-crc";
604 clocks = <&rcc 0 STM32F4_AHB1_CLOCK(CRC)>;
  /build/soong/zip/
zip.go 700 // we're sure about the Method and CRC.
721 // Calculate the CRC in the background, since reading the entire
772 crc := crc32.NewIEEE()
773 _, err := io.Copy(crc, r)
779 ze.fh.CRC32 = crc.Sum32()
834 crc := crc32.NewIEEE()
835 _, err := io.Copy(crc, r)
841 ze.fh.CRC32 = crc.Sum32()
  /external/u-boot/drivers/dma/
MCD_dmaApi.c 81 #define CRC 2 /* legacy - not used */
82 #define LURC 3 /* Logic Unit with CRC */
354 * funcDesc - description of byte swapping, bit swapping, and CRC actions
    [all...]
  /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/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
WinCOFFObjectWriter.cpp 604 // because it needs to compute a CRC.
609 // to CRC the data before we dump it into the object file.
617 // Calculate our CRC with an initial value of '0', this is not how
641 uint32_t CRC = writeSectionContents(Asm, Layout, MCSec);
643 // Update the section definition auxiliary symbol to record the CRC.
648 SecDef.Aux.SectionDefinition.CheckSum = CRC;
    [all...]
  /external/clang/lib/Basic/
Targets.cpp     [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objcopy/
Object.cpp 509 JamCRC crc; local
510 crc.update(ArrayRef<char>(Data.data(), Data.size()));
514 CRC32 = ~crc.getCRC();
518 // Read in the file to compute the CRC of it.
530 Elf_Word *CRC =
532 *CRC = Sec.CRC32;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
llvm-pdbutil.cpp     [all...]
  /external/zopfli/src/zopflipng/lodepng/
lodepng.cpp     [all...]

Completed in 934 milliseconds

1 23 4