HomeSort by relevance Sort by last modified time
    Searched refs:checksum (Results 251 - 275 of 856) sorted by null

<<11121314151617181920>>

  /prebuilts/go/linux-x86/src/cmd/api/testdata/src/pkg/p1/
p1.go 36 var ChecksumError = ptwo.NewError("gzip checksum error")
  /prebuilts/tools/common/m2/repository/org/apache/maven/plugins/maven-install-plugin/2.4/
maven-install-plugin-2.4.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-spi/1.0.2.v20150114/
aether-spi-1.0.2.v20150114.jar 
  /external/valgrind/coregrind/m_syswrap/
syswrap-amd64-solaris.c 228 /* Calculate a checksum. */
231 ULong checksum; local
238 checksum = ML_(fletcher64)((UInt*)&buf, sizeof(buf) / sizeof(UInt));
239 VKI_UC_GUEST_RFLAGS_CHECKSUM(uc) = checksum;
436 ULong checksum; local
443 checksum = ML_(fletcher64)((UInt*)&buf,
445 if (checksum == VKI_UC_GUEST_RFLAGS_CHECKSUM(uc)) {
syswrap-x86-solaris.c 253 /* Calculate a checksum. */
256 UInt checksum; local
263 checksum = ML_(fletcher32)((UShort*)&buf, sizeof(buf) / sizeof(UShort));
264 /* Store the checksum. */
265 VKI_UC_GUEST_EFLAGS_CHECKSUM(uc) = checksum;
459 UInt checksum; local
466 checksum = ML_(fletcher32)((UShort*)&buf,
468 if (checksum == VKI_UC_GUEST_EFLAGS_CHECKSUM(uc)) {
    [all...]
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-glacier/1.11.18/
aws-java-sdk-glacier-1.11.18.jar 
  /art/profman/
profile_assistant_test.cc 47 uint32_t checksum,
55 uint32_t dex_location_checksum1 = checksum;
57 uint32_t dex_location_checksum2 = 10 * checksum;
115 uint32_t checksum,
124 info->AddMethodIndex(Hotness::kFlagHot, dex_location, checksum, idx, number_of_methods);
127 info->AddMethodIndex(Hotness::kFlagStartup, dex_location, checksum, idx, number_of_methods);
132 checksum,
    [all...]
  /external/squashfs-tools/squashfs-tools/
mksquashfs.c 318 struct file_buffer *file_buffer, int blocks, unsigned short checksum,
330 unsigned short checksum, unsigned short fragment_checksum,
1540 unsigned short checksum; local
1982 unsigned short checksum = file_buffer->checksum; local
2578 unsigned short checksum = file_buffer->checksum; local
    [all...]
  /external/boringssl/src/crypto/fipsmodule/aes/asm/
aesni-x86_64.pl     [all...]
  /external/toolchain-utils/crosperf/
results_cache.py 549 # Cache hit if the checksum of cpuinfo and totalmem of
553 # Cache hit if the image checksum of the cached result and the new run match.
672 checksum = '*'
674 checksum = hashlib.md5(self.label.chromeos_image).hexdigest()
676 checksum = '*'
678 checksum = ImageChecksummer().Checksum(self.label, self.log_level)
701 test_args_checksum, checksum, machine_checksum, machine_id_checksum,
  /frameworks/base/services/backup/java/com/android/server/backup/internal/
PerformBackupTask.java     [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
FileUtils.java 37 import java.util.zip.Checksum;
61 * <li>calculating a checksum
1682 checksum(file, crc); method
1703 public static Checksum checksum(File file, Checksum checksum) throws IOException { method in class:FileUtils
    [all...]
  /test/vts/utils/python/coverage/
coverage_utils.py 151 of gcno files with the same checksum as the gcda file by matching
167 # For each gcno files with the matched checksum, compare the
194 """Generates a dictionary from gcno checksum to GCNOParser object.
197 checksum to the GCNOParser object wrapping the gcno content.
198 Note there might be multiple gcno files corresponds to the same checksum.
224 if gcno_file_parser.checksum in checksum_gcno_dict:
225 checksum_gcno_dict[gcno_file_parser.checksum].append(
228 checksum_gcno_dict[gcno_file_parser.checksum] = [
405 if not gcda_file_parser.checksum in checksum_gcno_dict:
408 gcno_file_parsers = checksum_gcno_dict[gcda_file_parser.checksum]
    [all...]
  /tools/test/connectivity/acts/framework/acts/controllers/
monsoon.py 356 """Pack a struct (without length or checksum) and send it.
362 checksum = (data_len + sum(bytearray(data))) % 256
363 out = struct.pack("B", data_len) + data + struct.pack("B", checksum)
367 """Read a single data record as a string (without length or checksum).
383 checksum = (sum(struct.unpack("B" * len(body), body)) + data_len) % 256
384 if result[-1] != checksum:
386 "Invalid checksum from serial port! Expected %s, got %s",
387 hex(checksum), hex(result[-1]))
    [all...]
  /external/stressapptest/src/
os.cc 258 AdlerChecksum *checksum) {
260 return AdlerMemcpyAsm(dstmem, srcmem, size_in_bytes, checksum);
262 return AdlerMemcpyWarmC(dstmem, srcmem, size_in_bytes, checksum);
  /external/tcpdump/
print-isoclns.c 158 { ISIS_TLV_CHECKSUM, "Checksum"},
243 { 0x2, "Incorrect checksum"},
568 uint16_t checksum, int checksum_offset, u_int length);
642 uint8_t checksum[2]; member in struct:isis_lsp_header
662 uint8_t checksum[2]; member in struct:isis_tlv_lsp
858 ND_PRINT((ndo, "\n\t%s PDU, hlen: %u, v: %u, lifetime: %u.%us, Segment PDU length: %u, checksum: 0x%04x",
    [all...]
  /external/v8/src/snapshot/
code-serializer.cc 321 class Checksum {
323 explicit Checksum(Vector<const byte> payload) {
325 // Computing the checksum includes padding bytes for objects like strings.
329 // Fletcher's checksum. Modified to reduce 64-bit sums to 32-bit.
357 DISALLOW_COPY_AND_ASSIGN(Checksum);
404 Checksum checksum(DataWithoutHeader());
405 SetHeaderValue(kChecksum1Offset, checksum.a());
406 SetHeaderValue(kChecksum2Offset, checksum.b());
426 if (!Checksum(DataWithoutHeader()).Check(c1, c2)) return CHECKSUM_MISMATCH
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api_50001/
loc_eng_nmea.cpp 85 uint8_t checksum = 0; local
91 checksum ^= *pNmea++;
95 int checksumLength = snprintf(pNmea,(maxSize-length-1),"*%02X\r\n", checksum);
  /hardware/qcom/gps/msm8084/loc_api/libloc_api_50001/
loc_eng_nmea.cpp 85 uint8_t checksum = 0; local
91 checksum ^= *pNmea++;
95 int checksumLength = snprintf(pNmea,(maxSize-length-1),"*%02X\r\n", checksum);
  /hardware/qcom/gps/msm8909/loc_api/libloc_api_50001/
loc_eng_nmea.cpp 81 uint8_t checksum = 0; local
87 checksum ^= *pNmea++;
91 int checksumLength = snprintf(pNmea,(maxSize-length-1),"*%02X\r\n", checksum);
  /hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
loc_eng_nmea.cpp 81 uint8_t checksum = 0; local
87 checksum ^= *pNmea++;
91 int checksumLength = snprintf(pNmea,(maxSize-length-1),"*%02X\r\n", checksum);
  /hardware/qcom/gps/msm8994/loc_api/libloc_api_50001/
loc_eng_nmea.cpp 86 uint8_t checksum = 0; local
92 checksum ^= *pNmea++;
96 int checksumLength = snprintf(pNmea,(maxSize-length-1),"*%02X\r\n", checksum);
  /hardware/qcom/gps/msm8996/loc_api/libloc_api_50001/
loc_eng_nmea.cpp 81 uint8_t checksum = 0; local
87 checksum ^= *pNmea++;
92 int checksumLength = snprintf(pNmea,(maxSize-length-1),"*%02X\r\n", checksum);
95 // length of checksum (+1 is to cover the $ character in the length).
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineSpecConstantTests.cpp 1488 const int checksum = (3 + 2 + 1 + specValue + 8); \/\/ matches the shader code local
1650 const int checksum = (3 + 2 + 1) + (1 + 5 + 1) + (1 + 2 + 0); local
1695 const int checksum = (1 + 2 + 31 + 4 + 0); local
1730 const int checksum = (1 + 2 + 11 + 4 + 1); local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
blknum.c 202 * Return the block bitmap checksum of a group
243 * Return the inode bitmap checksum of a group
473 * Get the checksum for this block group
484 * Set the checksum for this block group to a previously calculated value
486 void ext2fs_bg_checksum_set(ext2_filsys fs, dgrp_t group, __u16 checksum)
491 gdp->bg_checksum = checksum;

Completed in 2693 milliseconds

<<11121314151617181920>>