HomeSort by relevance Sort by last modified time
    Searched refs:checksums (Results 1 - 25 of 34) 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...]
  /dalvik/dx/tests/127-merge-stress/
run 35 checksums=()
56 if [[ "$checksums[$checksum]" == "$checksum" ]]; then
59 checksums[$checksum]=$checksum
  /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 786 @return: a list of checksums of frames captured.
805 checksums = self.get_captured_checksums()
810 total_period = (len(checksums) - frame_to_start) / self._FRAME_RATE
813 if frame_to_start >= len(checksums) or frame_to_stop >= len(checksums):
818 checksums = checksums[frame_to_start:frame_to_stop]
820 # Count the unique checksums per second, i.e. FPS
823 for i in xrange(0, len(checksums), self._FRAME_RATE):
827 if j == 0 or checksums[j] != checksums[j - 1]
    [all...]
  /external/libaom/libaom/test/
test_data_util.cmake 560 # Parses test/test-data.sha1 and writes captured file names and checksums to
571 # Iterate over the list of lines and split it into $checksums and $filenames.
583 set(checksums ${checksums} ${checksum})
589 list(LENGTH checksums num_checksums)
590 if(NOT checksums OR NOT filenames OR NOT num_files EQUAL num_checksums)
594 set(${out_checksums} ${checksums} PARENT_SCOPE)
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/docker/scripts/llvm_checksum/
llvm_checksum.py 2 """ A small program to compute checksums of LLVM checkout.
26 help="read checksums from reference_file and " +
27 "check they match checksums of llvm_path.")
52 checksums = ComputeLLVMChecksums(args.llvm_path, llvm_projects)
55 WriteLLVMChecksums(checksums, sys.stdout)
58 if not ValidateChecksums(reference_checksums, checksums, args.partial):
59 sys.stdout.write("Checksums differ.\nNew checksums:\n")
60 WriteLLVMChecksums(checksums, sys.stdout)
61 sys.stdout.write("Reference checksums:\n"
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
StringsAndChecksums.h 27 // If only a string table subsection is given, we find a checksums subsection.
32 const DebugChecksumsSubsectionRef &Checksums);
43 if (Strings && Checksums)
66 const DebugChecksumsSubsectionRef &checksums() const { return *Checksums; } function in class:llvm::codeview::StringsAndChecksumsRef
69 bool hasChecksums() const { return Checksums != nullptr; }
79 const DebugChecksumsSubsectionRef *Checksums = nullptr;
91 void setChecksums(const ChecksumsPtr &CP) { Checksums = CP; }
94 const ChecksumsPtr &checksums() const { return Checksums; } function in class:llvm::codeview::StringsAndChecksums
    [all...]
  /art/libdexfile/dex/
art_dex_file_loader_test.cc 66 std::vector<uint32_t> checksums; local
70 &checksums,
73 ASSERT_EQ(1U, checksums.size());
74 EXPECT_EQ(java_lang_dex_file_->GetLocationChecksum(), checksums[0]);
79 std::vector<uint32_t> checksums; local
83 &checksums,
88 ASSERT_EQ(2U, checksums.size());
91 EXPECT_EQ(dexes[0]->GetLocationChecksum(), checksums[0]);
94 EXPECT_EQ(dexes[1]->GetLocationChecksum(), checksums[1]);
art_dex_file_loader.cc 88 std::vector<uint32_t>* checksums,
92 CHECK(checksums != nullptr);
136 checksums->push_back(zip_entry->GetCrc32());
152 checksums->push_back(dex_file->GetHeader().checksum_);
art_dex_file_loader.h 41 // Returns the checksums of a file for comparison with GetLocationChecksum().
49 // Return true if the checksums could be found, false otherwise.
51 std::vector<uint32_t>* checksums,
dex_file_loader.h 108 // Returns the checksums of a file for comparison with GetLocationChecksum().
116 // Return true if the checksums could be found, false otherwise.
118 std::vector<uint32_t>* checksums,
  /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...]
  /cts/tools/release-parser/src/com/android/cts/releaseparser/
VdexParser.java 98 int checksums = getIntLittleEndian(buffer, offset); local
100 mVdexInfoBuilder.addChecksums(checksums);
101 codeIdSB.append(String.format(CODE_ID_FORMAT, checksums));
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/docker/
build_docker_image.sh 45 -c|--checksums name of a file, containing checksums of llvm checkout.
46 Script will fail if checksums of the checkout do not
125 -c|--checksums)
188 mkdir "$BUILD_DIR/checksums"
190 cp "$CHECKSUMS_FILE" "$BUILD_DIR/checksums/checksums.txt"
  /art/runtime/
dexopt_test.cc 133 const char* checksums = oat_header.GetStoreValueByKey(OatHeader::kBootClassPathChecksumsKey); local
134 ASSERT_TRUE(checksums != nullptr);
136 EXPECT_NE(boot_image_checksums, checksums);
138 EXPECT_EQ(boot_image_checksums, checksums);
dex2oat_environment_test.h 70 std::vector<uint32_t> checksums; variable
79 dex_file_loader.GetMultiDexChecksums(GetStrippedDexSrc1().c_str(), &checksums, &error_msg))
165 // image checksums in the oat_file_assistant_tests.
class_loader_context.cc 171 // Checksums are not provided and dex locations themselves have no meaning
225 info->checksums.push_back(checksum);
505 info->checksums.clear();
509 info->checksums.push_back(dex->GetLocationChecksum());
646 // dex2oat does not need the checksums.
    [all...]
class_loader_context.h 119 // This is the same as EncodeContextForOatFile but without adding the checksums
139 // Checksums are only verified if verify_checksums is true.
181 // The list of class path elements checksums.
182 // May be empty if the checksums are not given when the context is created.
183 std::vector<uint32_t> checksums; member in struct:art::ClassLoaderContext::ClassLoaderInfo
255 // together with their checksums.
vdex_file.cc 392 *error_msg = "Could not write dex checksums to " + path;
434 const VdexChecksum* checksums = header.GetDexChecksumsArray(); local
436 if (checksums[i] != dex_headers[i]->checksum_) {
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ELF/
debug-md5-err.s 25 # CHECK: [[@LINE+1]]:{{[0-9]+}}: warning: inconsistent use of MD5 checksums
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
DexMaker.java 351 int[] checksums = new int[typesKeySet.size()]; local
360 checksums[i++] = 31 * sum + methodSet.hashCode();
363 Arrays.sort(checksums);
365 for (int sum : checksums) {
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
InputFile.cpp 166 // checksums. So we only set the strings if they're not already set.
187 for (const auto &Entry : SC.checksums()) {
225 auto Iter = SC.checksums().getArray().at(Offset);
226 if (Iter == SC.checksums().getArray().end()) {
  /external/syzkaller/prog/
checksum.go 63 // Calculate generic inet checksums.
96 // Calculate pseudo checksums.
  /external/fonttools/Lib/fontTools/ttLib/
sfnt.py 352 checksums = []
354 checksums.append(self.tables[tags[i]].checkSum)
373 checksums.append(calcChecksum(directory))
374 checksum = sum(checksums) & 0xffffffff
  /art/runtime/gc/space/
image_space.cc 2162 std::vector<uint32_t> checksums; local
    [all...]

Completed in 693 milliseconds

1 2