HomeSort by relevance Sort by last modified time
    Searched defs:Checksum (Results 1 - 25 of 42) sorted by null

1 2

  /libcore/luni/src/main/java/java/util/zip/
Checksum.java 21 * The interface common to checksum classes such as {@link Adler32} and {@link CRC32}.
23 public interface Checksum {
26 * Returns the current calculated checksum value.
28 * @return the checksum.
33 * Resets the checksum value applied before beginning calculations on a new
39 * Updates the checksum with the given bytes.
51 * Updates the checksum value with the given byte.
54 * the byte to update the checksum with.
  /external/chromium_org/chrome/browser/net/
probe_message.cc 35 DVLOG(2) << "version " << header.version() << " checksum "
36 << header.checksum() << " type " << header.type();
43 // Checksum is computed on padding only.
46 uint32 computed_checksum = Checksum(probe_packet->padding());
47 if (computed_checksum != header.checksum()) {
48 DVLOG(1) << "Checksum mismatch. Got: " << header.checksum()
62 uint32 ProbeMessage::Checksum(const std::string& str) const {
91 probe_packet->mutable_header()->set_checksum(Checksum(*padding));
  /external/chromium_org/net/tools/testserver/
echo_message.py 7 This program has classes and functions to encode, decode, calculate checksum
14 <version><checksum><payload_size><payload>. <version> is the version number
15 of the "echo request" protocol. <checksum> is the checksum of the <payload>.
19 <version><checksum><payload_size><key><encoded_payload>.<version>,
20 <checksum> and <payload_size> are same as what is in the "echo request" message.
36 This class knows how to parse the checksum, payload_size from the
37 "echo request" and "echo response" messages. It holds the checksum,
44 # This specifies the starting position of the checksum and length of the
45 # checksum. Maximum value for the checksum is less than (2 ** 31 - 1)
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
readable_font_data.cc 47 int64_t ReadableFontData::Checksum() {
319 // Checksum all whole 4-byte chunks.
  /external/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusMetaHeader.h 73 INT16 Checksum; // Checksum value for previous 10 WORDs
102 // Checksum contains a checksum value for the previous 10 WORDs in the header.
104 // corrupted. The checksum is calculated by XORing each WORD value to an
  /external/sfntly/cpp/src/sfntly/data/
readable_font_data.cc 47 int64_t ReadableFontData::Checksum() {
319 // Checksum all whole 4-byte chunks.
  /external/chromium_org/chrome/browser/devtools/device/usb/
android_usb_device.cc 117 uint32 Checksum(const std::string& data) {
401 header.push_back(Checksum(message->body));
543 if (Checksum(message->body) != data_check) {
android_usb_browsertest.cc 288 DCHECK(false) << "Header checksum error";
321 // Copied from AndroidUsbDevice::Checksum
322 uint32 Checksum(const std::string& data) {
372 append(Checksum(response->body));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusmetaheader.h 72 INT16 Checksum;
  /external/llvm/include/llvm/Support/
GCOV.h 235 GCOVFile() : GCNOInitialized(false), Checksum(0), Functions(), RunCount(0),
239 uint32_t getChecksum() const { return Checksum; }
245 uint32_t Checksum;
283 uint32_t Checksum;
COFF.h 378 uint32_t CheckSum;
457 uint16_t Checksum;
496 uint32_t CheckSum;
  /external/llvm/include/llvm/Object/
COFF.h 41 support::ulittle16_t Checksum;
88 support::ulittle32_t CheckSum;
121 support::ulittle32_t CheckSum;
298 support::ulittle32_t CheckSum;
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dbgeng.h     [all...]
winioctl.h 699 DWORD CheckSum;
    [all...]
netmon.h     [all...]
  /device/asus/fugu/kernel-headers/linux/
psb_drm.h 516 uint8_t checksum; member in struct:intel_mid_vbt
532 uint8_t Checksum;
    [all...]
  /device/asus/fugu/original-kernel-headers/linux/
psb_drm.h 572 uint8_t checksum; /*1 byte checksum*/ member in struct:intel_mid_vbt
586 uint8_t Checksum; /*1 byte,Calculated */
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntifs.h 855 USHORT Checksum;
    [all...]
wdm.h 869 ULONG_PTR Checksum;
894 ULONG_PTR Checksum;
    [all...]
wmidata.h     [all...]
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /external/jarjar/lib/
apache-ant-1.9.4.jar 

Completed in 2399 milliseconds

1 2