/frameworks/compile/mclinker/lib/LD/ |
IdenticalCodeFolding.cpp | 189 uint32_t checksum = ::crc32(0xFFFFFFFF, local 193 size_t count = checksum_map.count(checksum); 195 checksum_map.insert(std::make_pair(checksum, index)); 198 checksum_map.equal_range(checksum);
|
/prebuilts/go/darwin-x86/src/compress/zlib/ |
reader_test.go | 40 "truncated checksum", 75 "bad checksum",
|
/prebuilts/go/linux-x86/src/compress/zlib/ |
reader_test.go | 40 "truncated checksum", 75 "bad checksum",
|
/test/vts/utils/python/coverage/ |
gcda_parser.py | 40 checksum: The checksum (int) of the file 121 self.ReadInt() # checksum 139 checksum = self.ReadInt()
|
/toolchain/binutils/binutils-2.27/include/som/ |
aout.h | 63 unsigned char checksum[4]; member in struct:som_external_header
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
DESedeWrapEngine.java | 54 // checksum digest 150 // Compute the CMS Key Checksum, (section 5.6.1), call this CKS. 291 // Calculate a CMS Key Checksum, (section 5.6.1), over the WK and compare 296 "Checksum inside ciphertext is corrupted"); 304 * Some key wrap algorithms make use of the Key Checksum defined 309 * - Use the first 8 octets of this hash as the checksum value. 314 * @return the CMS checksum. 334 * @param checksum the checksum. 339 byte[] checksum) [all...] |
/external/curl/src/ |
tool_metalink.c | 582 * Check checksum of file denoted by filename. The expected hash value 589 * Checksum didn't match. 667 if(mlfile->checksum == NULL) { 672 rv = check_hash(filename, mlfile->checksum->digest_def, 673 mlfile->checksum->digest, config->errors); 746 f->checksum = NULL; 756 f->checksum = 762 if(f->checksum) { 866 if(!mlfile->checksum) { 972 delete_metalink_checksum(mlfile->checksum); [all...] |
/external/pdfium/xfa/fwl/ |
cfx_barcode.cpp | 91 bool CFX_Barcode::SetPrintChecksum(bool checksum) { 102 ->SetPrintChecksum(checksum),
|
/external/scapy/scapy/contrib/ |
icmp_extensions.py | 54 ck = checksum(p) 104 # validate checksum 106 if checksum(ieh.build()):
|
/external/toybox/toys/pending/ |
ping.c | 200 ih->checksum = 0; 201 ih->checksum = pingchksum((void *)toybuf, TT.s+sizeof(*ih));
|
/external/vboot_reference/firmware/lib/ |
vboot_audio.c | 125 if (mysum != hdr->checksum) { 127 mysum, hdr->checksum));
|
/prebuilts/go/darwin-x86/src/crypto/sha1/ |
sha1.go | 21 // The size of a SHA-1 checksum in bytes. 36 // digest represents the partial evaluation of a checksum. 117 // New returns a new hash.Hash computing the SHA1 checksum. The Hash also 156 hash := d.checkSum() 160 func (d *digest) checkSum() [Size]byte { 259 // Sum returns the SHA-1 checksum of the data. 264 return d.checkSum()
|
/prebuilts/go/darwin-x86/src/hash/crc32/ |
crc32_ppc64le.go | 66 // archUpdateIEEE calculates the checksum of p using vectorizedIEEE.
|
/prebuilts/go/linux-x86/src/crypto/sha1/ |
sha1.go | 21 // The size of a SHA-1 checksum in bytes. 36 // digest represents the partial evaluation of a checksum. 117 // New returns a new hash.Hash computing the SHA1 checksum. The Hash also 156 hash := d.checkSum() 160 func (d *digest) checkSum() [Size]byte { 259 // Sum returns the SHA-1 checksum of the data. 264 return d.checkSum()
|
/prebuilts/go/linux-x86/src/hash/crc32/ |
crc32_ppc64le.go | 66 // archUpdateIEEE calculates the checksum of p using vectorizedIEEE.
|
/test/suite_harness/tools/dex-tools/src/dex/reader/ |
DexFileReader.java | 36 private int checksum = 0; field in class:DexFileReader 112 // CHECKSUM (1, U_INT) 114 checksum = b.readUInt();
|
/external/sfntly/cpp/src/sfntly/ |
font.cc | 135 fos->WriteULong((int32_t)((*record)->checksum())); 502 int64_t checksum = is->ReadULong(); local 505 HeaderPtr table = new Header(tag, checksum, offset, length); 525 int64_t checksum = fd->ReadULong(table_offset + Offset::kTableCheckSum); local 528 HeaderPtr table = new Header(tag, checksum, offset, length);
|
/frameworks/rs/cpu_ref/ |
rsCpuExecutable.cpp | 399 uint32_t checksum = 0; local 725 if (sscanf(line, CHECKSUM_STR "%08x", &checksum) != 1) { 726 ALOGE("Invalid checksum flag!: %s", line); 730 ALOGE("Missing checksum in shared obj file"); 734 if (expectedChecksum != 0 && checksum != expectedChecksum) { 735 ALOGE("Found invalid checksum. Expected %08x, got %08x\n", 736 expectedChecksum, checksum); 782 numEntries, isThreadable, checksum);
|
/external/syslinux/core/fs/fat/ |
fat.c | 454 int checksum; local 486 /* get the initial checksum value */ 487 vfat_csum = long_de->checksum; 494 if (long_de->checksum != vfat_csum) 524 * match is only valid if the checksum matches. 526 checksum = get_checksum(de->name); 527 if (checksum == vfat_csum) 630 vfat_csum = long_de->checksum; 638 if (long_de->checksum != vfat_csum || id != vfat_next)
|
/external/stressapptest/src/ |
worker.h | 345 AdlerChecksum *checksum, 351 AdlerChecksum *checksum, 356 AdlerChecksum *checksum,
|
/bionic/libc/kernel/uapi/linux/ |
edd.h | 147 __u8 checksum; member in struct:edd_device_params
|
/cts/apps/CtsVerifier/assets/scripts/power_monitors/ |
monsoon.py | 387 """ Pack a struct (without length or checksum) and send it. """ 390 checksum = (data_len + sum(struct.unpack("B" * len(data), data))) % 256 391 out = struct.pack("B", data_len) + data + struct.pack("B", checksum) 396 """ Read a single data record as a string (without length or checksum). """ 409 checksum = (data_len + sum(struct.unpack("B" * len(body), body))) % 256 410 if result[-1] != struct.pack("B", checksum): 411 self.log( "Invalid checksum from serial port" )
|
/device/google/contexthub/util/stm32_flash/ |
spi.c | 35 buffer[length] = checksum(handle, buffer, length);
|
stm32_bl.c | 22 * checksum a sequence of bytes. 26 uint8_t checksum(__attribute__((unused)) handle_t *handle, uint8_t *bytes, int length) function
|
/external/google-breakpad/src/processor/ |
synth_minidump.h | 261 uint32_t checksum = 0,
|