HomeSort by relevance Sort by last modified time
    Searched refs:checksum (Results 26 - 50 of 469) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Tools/Scripts/
svn-unapply 74 sub checksum($);
126 sub checksum($) subroutine
131 my $checksum = Digest::MD5->new->addfile(*FILE)->hexdigest();
133 return $checksum;
199 unlink("$fullPath.orig") if -e "$fullPath.orig" && checksum($fullPath) eq checksum("$fullPath.orig");
  /external/chromium_org/third_party/jinja2/
bccache.py 61 The buckets get an internal checksum from the cache assigned and use this
66 def __init__(self, environment, key, checksum):
69 self.checksum = checksum
84 checksum = pickle.load(f)
85 if self.checksum != checksum:
95 pickle.dump(self.checksum, f, 2)
169 """Returns a checksum for the source."""
177 checksum = self.get_source_checksum(source
    [all...]
  /external/chromium_org/third_party/libaddressinput/chromium/cpp/src/
validating_util.cc 15 // ValidatingUtil wraps data with checksum and timestamp. Format:
18 // checksum=<checksum>
26 // The checksum is the 32-character hexadecimal MD5 checksum of <data>. It is
53 const char kChecksumPrefix[] = "checksum=";
137 std::string checksum; local
138 if (!UnwrapHeader(kChecksumPrefix, kChecksumPrefixLength, data, &checksum)) {
141 return checksum == MD5String(*data);
  /external/dropbear/libtomcrypt/src/encauth/ocb/
s_ocb_done.c 22 * is we XOR the final ciphertext into the checksum so we have to xor it
93 /* xor C[m] into checksum */
95 ocb->checksum[x] ^= ct[x];
106 /* xor C[m] into checksum */
108 ocb->checksum[x] ^= ct[x];
112 /* xor Y[m] and Z[m] into checksum */
114 ocb->checksum[x] ^= Y[x] ^ Z[x];
117 /* encrypt checksum, er... tag!! */
118 if ((err = cipher_descriptor[ocb->cipher].ecb_encrypt(ocb->checksum, X, &ocb->key)) != CRYPT_OK) {
  /external/grub/stage2/
mb_header.h 33 * Checksum
37 unsigned checksum; member in struct:multiboot_header
smp-imps.h 109 unsigned char checksum; member in struct:imps_fps
124 unsigned char checksum; member in struct:imps_cth
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fbelo.c 134 int eloGetPacket(unsigned char* buffer, int* buffer_p, int* checksum, int fd) {
160 *checksum = *checksum + buffer[*buffer_p];
161 *checksum = *checksum % 256;
169 ok = (*checksum == buffer[ELO_PACKET_SIZE-1]);
170 *checksum = ELO_INIT_CHECKSUM;
424 int checksum = ELO_INIT_CHECKSUM; local
427 if(eloGetPacket(buffer, &pointer, &checksum, fd)) {
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
cycx_cfm.h 80 * @checksum - info + image
89 unsigned short checksum; member in struct:cycx_firmware
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cycx_cfm.h 80 * @checksum - info + image
89 unsigned short checksum; member in struct:cycx_firmware
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cycx_cfm.h 80 * @checksum - info + image
89 unsigned short checksum; member in struct:cycx_firmware
  /external/chromium/chrome/browser/safe_browsing/
prefix_set.cc 49 // Used to build a checksum from the data used to construct the
53 uint32 checksum = static_cast<uint32>(sorted_prefixes[0]); local
54 checksum ^= static_cast<uint32>(deltas_.size());
70 checksum ^= static_cast<uint32>(sorted_prefixes[i]);
71 checksum ^= static_cast<uint32>(deltas_.size());
75 checksum ^= static_cast<uint32>(delta16);
84 checksum_ = checksum;
332 uint32 checksum = 0; local
335 checksum ^= static_cast<uint32>(index_[ii].first);
336 checksum ^= static_cast<uint32>(index_[ii].second)
    [all...]
  /packages/apps/Launcher3/util/com/android/launcher3/
DecoderRing.java 235 MessageNano proto;// other types are wrapped in a checksum message
247 CRC32 checksum = new CRC32(); local
248 checksum.update(wrapper.payload);
249 if (wrapper.checksum != checksum.getValue()) {
250 System.err.println("wrapper checksum failed");
290 if (key.checksum != checkKey(key)) {
317 CRC32 checksum = new CRC32(); local
318 checksum.update(key.type);
319 checksum.update((int) (key.id & 0xffff))
    [all...]
  /external/android-clat/
Android.mk 4 LOCAL_SRC_FILES:=clatd.c dump.c checksum.c translate.c icmp.c ipv4.c ipv6.c config.c dns64.c logging.c getaddr.c getroute.c netlink_callbacks.c netlink_msg.c setif.c setroute.c mtu.c
  /external/chromium/sdch/open-vcdiff/src/
encodetable.h 25 #include "checksum.h"
97 void AddChecksum(VCDChecksum checksum) {
99 checksum_ = checksum;
213 // If true, an Adler32 checksum of the target window data will be written as
218 // The checksum to be written to the current target window,
223 // the checksum all at once and to call AddChecksum() with that value.
vcdecoder_test.h 21 #include "checksum.h"
50 // body, plus (if UseChecksum() is true) the corresponding checksum.
55 // This function adds an Adler32 checksum to the delta window header.
56 void AddChecksum(VCDChecksum checksum);
58 // This function computes the Adler32 checksum for the expected target
  /external/chromium_org/sdch/open-vcdiff/src/
encodetable.h 24 #include "checksum.h"
102 virtual void AddChecksum(VCDChecksum checksum) {
104 checksum_ = checksum;
214 // If true, an Adler32 checksum of the target window data will be written as
219 // The checksum to be written to the current target window,
224 // the checksum all at once and to call AddChecksum() with that value.
vcdecoder_test.h 21 #include "checksum.h"
50 // body, plus (if UseChecksum() is true) the corresponding checksum.
55 // This function adds an Adler32 checksum to the delta window header.
56 void AddChecksum(VCDChecksum checksum);
58 // This function computes the Adler32 checksum for the expected target
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/
header.h 33 Header(int32_t tag, int64_t checksum, int32_t offset, int32_t length);
61 // Get the checksum for the table as recorded in the table record header.
62 int64_t checksum() { return checksum_; } function in class:sfntly::Header
64 // Is the checksum valid. The checksum will not be valid if the table was
66 // Note that this does *NOT* check the validity of the checksum against
67 // the calculated checksum for the table data.
  /external/open-vcdiff/src/
encodetable.h 24 #include "checksum.h"
102 virtual void AddChecksum(VCDChecksum checksum) {
104 checksum_ = checksum;
214 // If true, an Adler32 checksum of the target window data will be written as
219 // The checksum to be written to the current target window,
224 // the checksum all at once and to call AddChecksum() with that value.
  /external/sfntly/cpp/src/sfntly/table/
header.h 33 Header(int32_t tag, int64_t checksum, int32_t offset, int32_t length);
61 // Get the checksum for the table as recorded in the table record header.
62 int64_t checksum() { return checksum_; } function in class:sfntly::Header
64 // Is the checksum valid. The checksum will not be valid if the table was
66 // Note that this does *NOT* check the validity of the checksum against
67 // the calculated checksum for the table data.
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
WordListMetadata.java 53 final String checksum, final String localFilename, final String remoteFilename,
60 mChecksum = checksum;
80 final String checksum = values.getAsString(MetadataDbHelper.CHECKSUM_COLUMN); local
92 || null == checksum
101 return new WordListMetadata(id, type, description, lastUpdate, fileSize, checksum,
  /bionic/libc/kernel/common/linux/
icmp.h 72 __u16 checksum; member in struct:icmphdr
  /development/ndk/platforms/android-3/include/linux/
icmp.h 61 __u16 checksum; member in struct:icmphdr
  /external/chromium_org/third_party/leveldatabase/src/db/
log_reader.h 39 // If "checksum" is true, verify checksums if available.
43 Reader(SequentialFile* file, Reporter* reporter, bool checksum,
  /external/grub/docs/
multiboot.h 53 unsigned long checksum; member in struct:multiboot_header

Completed in 701 milliseconds

12 3 4 5 6 7 8 91011>>