Searched refs:checksum (Results 51 - 75 of 255) sorted by relevance

1234567891011

/external/syslinux/gpxe/src/arch/i386/core/
H A Dwince_loader.c56 unsigned long checksum; // Section CheckSum member in struct:segment_info
200 X.checksum = *(unsigned long *)(dbuffer + now + sizeof(unsigned long)*2);
227 printf("\t Checksum = %ld [%lx]\n", X.checksum, X.checksum);
/external/toolchain-utils/bestflags/examples/omnetpp/
H A Dbuild_omnetpp58 checksum=$(readelf -x .text $outfile | md5sum | cut -d " " -f 1)
64 echo $checksum $user_time $output_file $file_size $size
/external/toolchain-utils/crosperf/
H A Dlabel.py82 """Compute label checksum only once."""
84 self.checksum = None
86 self.checksum = ImageChecksummer().Checksum(self, self.log_level)
88 self.checksum = hashlib.md5(self.chromeos_image).hexdigest()
146 self.checksum = ''
H A Dmachine_manager.py27 """Raised if all machines for a label don't have the same checksum."""
32 """Raised if all machines for a label don't have the same checksum string."""
53 self.checksum = None
184 l.append(str(self.checksum))
257 checksum = label.checksum
259 if checksum and (machine.checksum == checksum):
303 machine.checksum
[all...]
/external/elfutils/libelf/
H A Delf32_checksum.c1 /* Compute simple checksum from permanent parts of the ELF file.
54 elfw2(LIBELFBITS,checksum) (Elf *elf)
116 /* To compute the checksum we need to get to the data. For
168 INTDEF(elfw2(LIBELFBITS,checksum))
/external/pdfium/xfa/fxbarcode/
H A Dcbc_ean13.cpp40 int32_t checksum = static_cast<CBC_OnedEAN13Writer*>(m_pBCWriter.get()) local
42 byteString += checksum - 0 + '0';
H A Dcbc_ean8.cpp40 int32_t checksum = static_cast<CBC_OnedEAN8Writer*>(m_pBCWriter.get()) local
42 encodeContents += FX_WCHAR(checksum - 0 + '0');
H A Dcbc_upca.cpp40 int32_t checksum = pWriter->CalcChecksum(byteString); local
41 byteString += checksum - 0 + '0';
/external/autotest/client/site_tests/video_GlitchDetection/
H A Dvideo_GlitchDetection.py102 raw_test_checksums = [tuple(checksum) for checksum in
138 logging.debug("Write golden checksum file to %s",
142 for checksum in test_checksums:
143 f.write(' '.join([str(i) for i in checksum]) + '\n')
234 Reads the golden checksum file. Each line in file has the format
235 w x y z where w x y z is a chameleon frame checksum
236 @param path: complete path to the golden checksum file.
243 checksum = tuple(int(val) for val in line.split())
244 checksums.append(checksum)
[all...]
/external/pdfium/core/fxge/ge/
H A Dcfx_fontmgr.cpp59 CFX_ByteString KeyNameFromSize(int ttc_size, uint32_t checksum) { argument
61 key.Format("%d:%d", ttc_size, checksum);
171 uint32_t checksum,
174 auto it = m_FaceMap.find(KeyNameFromSize(ttc_size, checksum));
190 uint32_t checksum,
200 m_FaceMap[KeyNameFromSize(ttc_size, checksum)] = pFontDesc;
170 GetCachedTTCFace(int ttc_size, uint32_t checksum, int font_offset, uint8_t*& pFontData) argument
189 AddCachedTTCFace(int ttc_size, uint32_t checksum, uint8_t* pData, uint32_t size, int font_offset) argument
/external/syslinux/gpxe/src/util/
H A Defirom.c115 uint8_t checksum; member in struct:__anon22331
123 uint8_t checksum; local
165 /* Fix image checksum */
166 for ( i = 0, checksum = 0 ; i < rom_size ; i++ )
167 checksum += *( ( uint8_t * ) buf + i );
168 headers->checksum -= checksum;
H A Dmakerom.pl133 sub checksum ($$) { subroutine
205 checksum(\$rom, $opts{'n'} ? $stubsize : $romsize);
222 checksum(\$rom, ord(substr($rom, 2, 1)) * 512);
H A Dmodrom.pl131 sub checksum ($) { subroutine
199 &checksum(\$rom);
216 &checksum(\$rom);
/external/toolchain-utils/crb/
H A Dmachine_manager_singleton.py15 self.checksum = None
24 l.append(str(self.checksum))
65 cros_machine.checksum = out.strip()
89 ### m.checksum == image_checksum):
92 if m.checksum == image_checksum:
97 if not m.checksum:
149 autotest_status, m.checksum)
/external/android-clat/
H A Dtranslate.c22 #include "checksum.h"
30 * calculates the checksum over all the packet components starting from pos
31 * checksum - checksum of packet components before pos
32 * packet - packet to calculate the checksum of
34 * returns - the completed 16-bit checksum, ready to write into a checksum header field
36 uint16_t packet_checksum(uint32_t checksum, clat_packet packet, clat_packet_index pos) { argument
40 checksum = ip_checksum_add(checksum, packe
227 icmp_to_icmp6(clat_packet out, clat_packet_index pos, const struct icmphdr *icmp, uint32_t checksum, const uint8_t *payload, size_t payload_size) argument
[all...]
H A Dipv4.c21 #include "checksum.h"
30 * checksum - pseudo-header checksum
35 uint32_t checksum, size_t len) {
47 return icmp_to_icmp6(out, pos, icmp, checksum, payload, payload_size);
103 * UDP include parts of the IP header in the checksum. Set the length to zero because we don't
109 /* Calculate the pseudo-header checksum.
110 * Technically, the length that is used in the pseudo-header checksum is the transport layer
112 * translation does not change the transport layer length, the checksum is unaffected.
34 icmp_packet(clat_packet out, clat_packet_index pos, const struct icmphdr *icmp, uint32_t checksum, size_t len) argument
H A Dtranslate.h35 // Calculates the checksum over all the packet components starting from pos.
36 uint16_t packet_checksum(uint32_t checksum, clat_packet packet, clat_packet_index pos);
70 uint32_t checksum, const uint8_t *payload, size_t payload_size);
/external/skia/src/gpu/
H A DGrProgramDesc.h57 // Gets the a checksum of the key. Can be used as a hash value for a fast lookup in a cache.
126 uint32_t* checksum = this->atOffset<uint32_t, GrProgramDesc::kChecksumOffset>(); local
127 *checksum = 0; // We'll hash through these bytes, so make sure they're initialized.
128 *checksum = SkOpts::hash(fKey.begin(), keyLength);
142 // 2. uint32_t for a checksum.
/external/autotest/server/site_tests/audiovideo_AVSync/
H A Daudiovideo_AVSync.py68 def compute_video_keypoint(self, checksum):
70 checksum changes.
72 @param checksum: Checksums of frames put in a list.
77 for i in xrange(1, len(checksum))
78 if checksum[i] != checksum[i - 1]]
/external/curl/src/
H A Dtool_metalink.h80 metalink_checksum *checksum; member in struct:metalinkfile
135 * Check checksum of file denoted by filename.
137 * This function returns 1 if the checksum matches or one of the
145 * No checksum in Metalink supported, hash algorithm not available, or
146 * Metalink does not contain checksum.
/external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/
H A DClassFileDumper.java67 final Long id = Long.valueOf(CRC64.checksum(contents));
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
H A DProbeArrayStrategyFactory.java45 final long classId = CRC64.checksum(reader.b);
/external/libchrome/base/metrics/
H A Dbucket_ranges.cc119 // Seed checksum.
120 uint32_t checksum = static_cast<uint32_t>(ranges_.size()); local
123 checksum = Crc32(checksum, ranges_[index]);
124 return checksum;
/external/pdfium/xfa/fwl/
H A Dcfx_barcode.h44 bool SetPrintChecksum(bool checksum);
/external/skia/src/sfnt/
H A DSkSFNTHeader.h58 SK_SFNT_ULONG checksum; member in struct:SkSFNTHeader::TableDirectoryEntry

Completed in 6080 milliseconds

1234567891011