/cts/tools/dex-tools/src/dex/reader/ |
DexFileReader.java | 36 private int checksum = 0; field in class:DexFileReader 112 // CHECKSUM (1, U_INT) 114 checksum = b.readUInt();
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
DESedeWrapEngine.java | 55 // checksum digest 151 // Compute the CMS Key Checksum, (section 5.6.1), call this CKS. 292 // Calculate a CMS Key Checksum, (section 5.6.1), over the WK and compare 297 "Checksum inside ciphertext is corrupted"); 305 * Some key wrap algorithms make use of the Key Checksum defined 310 * - Use the first 8 octets of this hash as the checksum value. 313 * @return the CMS checksum. 332 * @param checksum 338 byte[] checksum) 340 return Arrays.constantTimeAreEqual(calculateCMSKeyChecksum(key), checksum); [all...] |
/external/chromium/sdch/open-vcdiff/src/ |
headerparser.cc | 291 VCDChecksum* checksum) { 296 ParseChecksum("Adler32 checksum value", checksum);
|
/external/chromium_org/base/metrics/ |
statistics_recorder.cc | 99 RangesMap::iterator ranges_it = ranges_->find(ranges->checksum()); 104 (*ranges_)[ranges->checksum()] = checksum_matching_list;
|
histogram_unittest.cc | 404 uint32 checksum; local 405 EXPECT_TRUE(iter.ReadUInt32(&checksum)); 406 EXPECT_EQ(histogram->bucket_ranges()->checksum(), checksum);
|
/external/chromium_org/sdch/open-vcdiff/src/ |
headerparser.cc | 291 VCDChecksum* checksum) { 296 ParseChecksum("Adler32 checksum value", checksum);
|
/external/chromium_org/third_party/leveldatabase/src/db/ |
log_reader.cc | 18 Reader::Reader(SequentialFile* file, Reporter* reporter, bool checksum, 22 checksum_(checksum), 239 ReportCorruption(drop_size, "checksum mismatch");
|
/external/chromium_org/third_party/openssl/openssl/crypto/krb5/ |
krb5_asn.c | 122 ASN1_EXP(KRB5_CHECKSUM, checksum, ASN1_OCTET_STRING,1)
|
/external/chromium_org/third_party/skia/src/gpu/gl/ |
GrGLProgramDesc.cpp | 247 *desc->checksum() = 0; 248 *desc->checksum() = SkChecksum::Compute(reinterpret_cast<uint32_t*>(desc->fKey.get()),
|
/external/open-vcdiff/src/ |
headerparser.cc | 291 VCDChecksum* checksum) { 296 ParseChecksum("Adler32 checksum value", checksum);
|
/external/openssl/crypto/krb5/ |
krb5_asn.c | 122 ASN1_EXP(KRB5_CHECKSUM, checksum, ASN1_OCTET_STRING,1)
|
/external/skia/src/gpu/gl/ |
GrGLProgramDesc.cpp | 247 *desc->checksum() = 0; 248 *desc->checksum() = SkChecksum::Compute(reinterpret_cast<uint32_t*>(desc->fKey.get()),
|
/external/skia/tests/ |
GLProgramsTest.cpp | 114 *this->checksum() = 0; 115 *this->checksum() = SkChecksum::Compute(reinterpret_cast<uint32_t*>(fKey.get()), keyLength);
|
/external/chromium_org/third_party/skia/src/core/ |
SkPictureFlat.h | 275 * - checksum 279 * we see the checksum right away, so that most of the time it is enough 318 uint32_t checksum() const { return fChecksum; } 380 // with the checksum and then length. 484 int oldHash = ChecksumToHashIndex(toReplace->checksum()); 545 const int hashIndex = ChecksumToHashIndex(scratch.checksum()); 683 // fSortedData is sorted by checksum/size/data. 697 static int ChecksumToHashIndex(uint32_t checksum) { 698 int n = checksum;
|
/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/skia/src/core/ |
SkPictureFlat.h | 275 * - checksum 279 * we see the checksum right away, so that most of the time it is enough 318 uint32_t checksum() const { return fChecksum; } 380 // with the checksum and then length. 484 int oldHash = ChecksumToHashIndex(toReplace->checksum()); 545 const int hashIndex = ChecksumToHashIndex(scratch.checksum()); 683 // fSortedData is sorted by checksum/size/data. 697 static int ChecksumToHashIndex(uint32_t checksum) { 698 int n = checksum;
|
/external/chromium_org/third_party/lcov/bin/ |
lcov | 51 # 2003-07-03 / Peter Oberparleiter: added line checksum support, added 52 # --no-checksum 152 our $checksum; # If set, calculate a checksum for each line 153 our $no_checksum; # If set, don't calculate a checksum for each line 220 "checksum" => \$checksum, 221 "no-checksum" => \$no_checksum, 238 $checksum = ($no_checksum ? 0 : 1); 410 --(no-)checksum Enable (disable) line checksummin [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...] |
/external/chromium_org/third_party/lcov-1.9/bin/ |
geninfo | 38 # 2003-07-03 / Peter Oberparleiter: added line checksum support, added 39 # --no-checksum 159 our $checksum; 213 "geninfo_checksum" => \$checksum, 220 $checksum = ($no_checksum ? 0 : 1); 228 "checksum" => \$checksum, 229 "no-checksum" => \$no_checksum, 254 $checksum = ($no_checksum ? 0 : 1); 310 # Determine checksum mod [all...] |
/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/stressapptest/src/ |
worker.h | 346 AdlerChecksum *checksum, 352 AdlerChecksum *checksum, 357 AdlerChecksum *checksum,
|
/external/chromium_org/tools/symsrc/ |
pefile.py | [all...] |
/external/chromium_org/chrome/browser/spellchecker/ |
spellcheck_custom_dictionary.cc | 32 // Prefix for the checksum in the dictionary file. 35 // The status of the checksum in a custom spellcheck dictionary. 57 // valid checksum, then returns ChecksumStatus::VALID. If the file has an 58 // invalid checksum, then returns ChecksumStatus::INVALID and clears |words|. 66 std::string checksum = contents.substr(pos + strlen(CHECKSUM_PREFIX)); local 68 if (checksum != base::MD5String(contents)) 87 // the dictionary checksum is not valid, but backup checksum is valid, then 94 // Load the contents and verify the checksum. 97 // Checksum is not valid. See if there's a backup 120 std::string checksum = base::MD5String(content.str()); local 121 content << CHECKSUM_PREFIX << checksum; local [all...] |
/external/chromium_org/native_client_sdk/src/build_tools/ |
manifest_util.py | 25 VALID_ARCHIVE_KEYS = frozenset(['host_os', 'size', 'checksum', 'url']) 141 checksum = self.get('checksum', None) 142 if not checksum: 143 raise Error('Archive "%s" has no checksum' % host_os) 144 elif not isinstance(checksum, dict): 145 raise Error('Archive "%s" has a checksum, but it is not a dict' % host_os) 146 elif not len(checksum): 147 raise Error('Archive "%s" has an empty checksum dict' % host_os) 156 """Update the size and checksum information for this archiv [all...] |