HomeSort by relevance Sort by last modified time
    Searched refs:checksums (Results 1 - 25 of 40) sorted by null

1 2

  /external/autotest/client/cros/video/
frame_checksum_utils.py 9 def checksum_counts(checksums):
11 @param checksums: list of checksums, each checksum in a 4-tuple of ints
12 @returns a dictionary of checksums as keys mapped to their respective
18 for checksum in checksums:
27 def checksum_indices(checksums):
29 @param checksums: list of checksums.
30 @returns an OrderedDict containing checksums as keys and their respective
37 for i, checksum in enumerate(checksums)
    [all...]
  /external/autotest/client/cros/chameleon/
chameleon_video_capturer.py 55 ind_paths = {i : str(i) for i in self.checksums}
63 save the images, gets only the checksums.
69 @return: list of checksums
98 self.checksums = self.chameleon_port.get_captured_checksums()
103 del self.checksums[max_frame_count:]
106 logging.debug("Checksums before chopping repeated ones")
107 for c in self.checksums:
114 if self.checksums[0] != self.checksums[i]:
119 self.checksums = self.checksums[first_index:
    [all...]
chameleon.py 740 @return: a list of checksums of frames captured.
759 checksums = self.get_captured_checksums()
764 total_period = (len(checksums) - frame_to_start) / self._FRAME_RATE
767 if frame_to_start >= len(checksums) or frame_to_stop >= len(checksums):
772 checksums = checksums[frame_to_start:frame_to_stop]
774 # Count the unique checksums per second, i.e. FPS
777 for i in xrange(0, len(checksums), self._FRAME_RATE):
781 if j == 0 or checksums[j] != checksums[j - 1]
    [all...]
  /dalvik/dx/tests/127-merge-stress/
run 38 checksums=()
59 if [[ "$checksums[$checksum]" == "$checksum" ]]; then
62 checksums[$checksum]=$checksum
  /prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-connector-basic/1.0.2.v20150114/
aether-connector-basic-1.0.2.v20150114.jar 
  /external/autotest/client/site_tests/video_GlitchDetection/
video_GlitchDetection.py 109 if not overreach_counts: # no checksums exceeded threshold
117 'tries. Checksums: %s' % (constants.NUM_CAPTURE_TRIES,
122 # produces unique checksums mapped to their occur. indices
163 msg = ('Expecting about %d checksums, received %d. '
207 def overreach_frame_counts(self, checksums, max_frame_repeat_count):
211 @param checksums: list of frame checksums received from chameleon.
213 @return : dictionary, checksums and their counts
220 counts = frame_checksum_utils.checksum_counts(checksums)
240 checksums = [
    [all...]
  /art/runtime/
class_loader_context.cc 128 class_loader_chain_.back().checksums.push_back(checksum);
267 info.checksums.clear();
271 info.checksums.push_back(dex->GetLocationChecksum());
358 // dex2oat does not need the checksums.
621 info.checksums.push_back(dex_file->GetLocationChecksum());
704 DCHECK_EQ(info.classpath.size(), info.checksums.size());
705 DCHECK_EQ(expected_info.classpath.size(), expected_info.checksums.size());
748 // Compare the checksums.
749 if (info.checksums[k] != expected_info.checksums[k])
    [all...]
dex2oat_environment_test.h 66 std::vector<uint32_t> checksums; variable
74 ASSERT_FALSE(DexFile::GetMultiDexChecksums(GetStrippedDexSrc1().c_str(), &checksums, &error_msg))
172 // image checksums in the oat_file_assistant_tests.
class_loader_context.h 92 // This is the same as EncodeContextForOatFile but without adding the checksums
149 // The list of class path elements checksums.
150 // May be empty if the checksums are not given when the context is created.
151 std::vector<uint32_t> checksums; member in struct:art::ClassLoaderContext::ClassLoaderInfo
199 // together with their checksums.
dex_file_test.cc 357 std::vector<uint32_t> checksums; local
360 EXPECT_TRUE(DexFile::GetMultiDexChecksums(GetLibCoreDexFileNames()[0].c_str(), &checksums, &error_msg))
362 ASSERT_EQ(1U, checksums.size());
363 EXPECT_EQ(java_lang_dex_file_->GetLocationChecksum(), checksums[0]);
368 std::vector<uint32_t> checksums; local
371 &checksums,
376 ASSERT_EQ(2U, checksums.size());
379 EXPECT_EQ(dexes[0]->GetLocationChecksum(), checksums[0]);
382 EXPECT_EQ(dexes[1]->GetLocationChecksum(), checksums[1]);
dex_file.cc 85 std::vector<uint32_t>* checksums,
87 CHECK(checksums != nullptr);
114 checksums->push_back(zip_entry->GetCrc32());
126 checksums->push_back(dex_file->GetHeader().checksum_);
    [all...]
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
DexMaker.java 339 int[] checksums = new int[typesKeySet.size()]; local
347 checksums[i++] = 31 * decl.supertype.hashCode() + methodSet.hashCode();
350 Arrays.sort(checksums);
352 for (int sum : checksums) {
  /external/fonttools/Lib/fontTools/ttLib/
sfnt.py 238 checksums = []
240 checksums.append(self.tables[tags[i]].checkSum)
258 checksums.append(calcChecksum(directory))
259 checksum = sum(checksums) & 0xffffffff
  /packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
DictionaryBackupAgent.java 124 private void writeNewChecksums(long[] checksums, ParcelFileDescriptor newState)
129 dataOutput.writeLong(checksums[i]);
  /art/runtime/gc/space/
image_space.cc 1825 std::vector<uint32_t> checksums; local
    [all...]
  /external/syslinux/com32/hdt/
Makefile 32 SUM_FILE = hdt-$(VERSION).checksums
144 rm -rf hdt-*checksums
  /prebuilts/go/darwin-x86/src/hash/crc32/
crc32_test.go 53 // correct IEEE checksums.
63 // correct IEEE checksums.
  /prebuilts/go/linux-x86/src/hash/crc32/
crc32_test.go 53 // correct IEEE checksums.
63 // correct IEEE checksums.
  /external/curl/src/
tool_metalink.c 738 if(fileinfo->checksums) {
743 for(p = fileinfo->checksums; *p; ++p) {
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsBackupAgent.java 487 private void writeNewChecksums(long[] checksums, ParcelFileDescriptor newState)
494 dataOutput.writeLong(checksums[i]);
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-aether-provider/3.3.9/
maven-aether-provider-3.3.9.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-spi/1.0.2.v20150114/
aether-spi-1.0.2.v20150114.jar 
  /build/soong/third_party/zip/
reader.go 145 // decompresses data and verifies checksums.
  /prebuilts/go/darwin-x86/src/archive/zip/
reader.go 145 // decompresses data and verifies checksums.
  /prebuilts/go/linux-x86/src/archive/zip/
reader.go 145 // decompresses data and verifies checksums.

Completed in 1613 milliseconds

1 2