HomeSort by relevance Sort by last modified time
    Searched refs:checksum (Results 326 - 350 of 597) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/brotli/src/woff2/
font.cc 53 !file.ReadU32(&table.checksum) ||
109 StoreU32(table.checksum, &offset, dst);
  /external/chromium_org/third_party/leveldatabase/src/db/
log_reader.cc 18 Reader::Reader(SequentialFile* file, Reporter* reporter, bool checksum,
22 checksum_(checksum),
246 ReportCorruption(drop_size, "checksum mismatch");
  /external/openssl/crypto/krb5/
krb5_asn.c 122 ASN1_EXP(KRB5_CHECKSUM, checksum, ASN1_OCTET_STRING,1)
  /external/skia/src/gpu/gl/
GrGLProgramDesc.cpp 271 *desc->checksum() = 0;
272 *desc->checksum() = SkChecksum::Compute(reinterpret_cast<uint32_t*>(desc->fKey.get()),
  /external/skia/tests/
GLProgramsTest.cpp 121 *this->checksum() = 0;
122 *this->checksum() = SkChecksum::Compute(reinterpret_cast<uint32_t*>(fKey.get()), keyLength);
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/
font.cc 132 fos->WriteULong((int32_t)((*record)->checksum()));
493 int64_t checksum = is->ReadULong(); local
496 HeaderPtr table = new Header(tag, checksum, offset, length);
516 int64_t checksum = fd->ReadULong(table_offset + Offset::kTableCheckSum); local
519 HeaderPtr table = new Header(tag, checksum, offset, length);
  /external/dhcpcd/
net.c 680 checksum(const void *data, uint16_t len) function
717 * We then fill the udp structure and put the checksum
718 * of the whole packet into the udp checksum.
719 * Finally we complete the ip structure and ip checksum.
720 * If we don't do the ordering like so then the udp checksum will be
736 udp->uh_sum = checksum(udpp, sizeof(*udpp));
743 ip->ip_sum = checksum(ip, sizeof(*ip));
781 if (checksum(&packet.ip, sizeof(packet.ip)) != 0) {
803 if (udpsum && checksum(&packet, bytes) != udpsum) {
  /external/sfntly/cpp/src/sfntly/
font.cc 132 fos->WriteULong((int32_t)((*record)->checksum()));
493 int64_t checksum = is->ReadULong(); local
496 HeaderPtr table = new Header(tag, checksum, offset, length);
516 int64_t checksum = fd->ReadULong(table_offset + Offset::kTableCheckSum); local
519 HeaderPtr table = new Header(tag, checksum, offset, length);
  /external/tcpdump/
print-rsvp.c 46 * | Vers | Flags| Msg Type | RSVP Checksum |
56 u_int8_t checksum[2]; member in struct:rsvp_common_header
    [all...]
print-isoclns.c 160 { ISIS_TLV_CHECKSUM, "Checksum"},
244 { 0x2, "Incorrect checksum"},
568 static void osi_print_cksum(const u_int8_t *pptr, u_int16_t checksum,
643 u_int8_t checksum[2]; member in struct:isis_lsp_header
663 u_int8_t checksum[2]; member in struct:isis_tlv_lsp
828 printf("\n\t%s PDU, hlen: %u, v: %u, lifetime: %u.%us, Segment PDU length: %u, checksum: 0x%04x",
    [all...]
  /external/pdfium/core/src/fxge/ge/
fx_ge_fontmap.cpp 317 FXFT_Face CFX_FontMgr::GetCachedTTCFace(int ttc_size, FX_DWORD checksum,
321 key.Format("%d:%d", ttc_size, checksum);
335 FXFT_Face CFX_FontMgr::AddCachedTTCFace(int ttc_size, FX_DWORD checksum,
339 key.Format("%d:%d", ttc_size, checksum);
350 key.Format("%d:%d", ttc_size, checksum);
1237 FX_DWORD checksum = 0; local
    [all...]
  /external/pixman/test/
utils.c 630 * used as final checksum, which can be compared to some expected
637 * 'default_number_of_iterations'. The resulting checksum is
658 uint32_t checksum = 0; local
674 checksum = test_function (n2, 1);
675 printf ("%d: checksum=%08X\n", n2, checksum);
685 #pragma omp parallel for reduction(+:checksum) default(none) \
693 checksum += crc;
698 if (checksum == expected_checksum)
700 printf ("%s test passed (checksum=%08X)\n"
    [all...]
  /art/runtime/
dex_file_test.cc 111 // contents due to the checksum etc, so we embed the exact input here.
205 uint32_t checksum; local
208 EXPECT_TRUE(DexFile::GetChecksum(GetLibCoreDexFileName().c_str(), &checksum, &error_msg))
210 EXPECT_EQ(java_lang_dex_file_->GetLocationChecksum(), checksum);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
mock_drt.py 199 checksum = None
205 checksum = vals[2]
214 return DriverInput(test_name, 0, checksum, should_run_pixel_tests, args=[])
227 actual_checksum = 'mock-checksum'
231 actual_checksum = 'not-mock-checksum'
  /external/chromium_org/third_party/lcov/bin/
geninfo 38 # 2003-07-03 / Peter Oberparleiter: added line checksum support, added
39 # --no-checksum
221 our $checksum;
296 "geninfo_checksum" => \$checksum,
311 $checksum = ($no_checksum ? 0 : 1);
340 "checksum" => \$checksum,
341 "no-checksum" => \$no_checksum,
371 $checksum = ($no_checksum ? 0 : 1);
456 # Determine checksum mod
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLProgramDesc.cpp 411 uint32_t* checksum = this->atOffset<uint32_t, kChecksumOffset>();
412 *checksum = 0;
413 *checksum = SkChecksum::Compute(reinterpret_cast<uint32_t*>(fKey.begin()), keyLength);
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
md5.c 286 unsigned char checksum[16]; local
300 yasm_md5_final (checksum, &context);
303 printf ("%02x", (unsigned int) checksum[i]);
  /external/lldb/source/Plugins/Process/gdb-remote/
GDBRemoteCommunication.cpp 160 int checksum = 0; local
162 // We only need to compute the checksum if we are sending acks
166 checksum += payload[i];
168 return checksum & 255;
392 total_length = hash_pos + 3; // Skip the # and the two hex checksum bytes
396 // Checksum bytes aren't all here yet
484 log->Printf ("error: checksum mismatch: %.*s expected 0x%2.2x, got 0x%2.2x",
501 log->Printf ("error: invalid checksum in packet: '%s'\n", m_bytes.c_str());
  /external/stressapptest/src/
worker.h 346 AdlerChecksum *checksum,
352 AdlerChecksum *checksum,
357 AdlerChecksum *checksum,
  /external/chromium_org/tools/symsrc/
pefile.py     [all...]
  /bionic/libc/kernel/uapi/linux/
edd.h 179 __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" )
  /cts/tests/tests/media/libmediandkjni/
codec-utils-jni.cpp 60 virtual uint32_t checksum() = 0;
79 uint32_t checksum() { function in struct:Adler32
265 ALOGV("adler %zu/%u", adler.length(), adler.checksum());
266 return adler.checksum();
  /development/ndk/platforms/android-L/include/linux/
edd.h 179 __u8 checksum; member in struct:edd_device_params
  /external/chromium_org/base/metrics/
histogram_unittest.cc 401 uint32 checksum; local
402 EXPECT_TRUE(iter.ReadUInt32(&checksum));
403 EXPECT_EQ(histogram->bucket_ranges()->checksum(), checksum);

Completed in 657 milliseconds

<<11121314151617181920>>