/external/bsdiff/ |
D | diff_encoder.cc | 27 if (entry.diff_size > kMaxEncodedUint64Value) { in AddControlEntry() 28 LOG(ERROR) << "Encoding value out of range " << entry.diff_size; in AddControlEntry() 39 if (entry.diff_size + entry.extra_size > new_size_ - written_output_) { in AddControlEntry() 44 if (entry.diff_size > 0 && in AddControlEntry() 46 static_cast<uint64_t>(old_pos_) + entry.diff_size > old_size_)) { in AddControlEntry() 48 << (static_cast<uint64_t>(old_pos_) + entry.diff_size) in AddControlEntry() 58 std::vector<uint8_t> diff(entry.diff_size); in AddControlEntry() 59 for (uint64_t i = 0; i < entry.diff_size; ++i) { in AddControlEntry() 67 if (!patch_->WriteExtraStream(new_buf_ + written_output_ + entry.diff_size, in AddControlEntry() 74 old_pos_ += entry.diff_size + entry.offset_increment; in AddControlEntry() [all …]
|
D | split_patch_writer.cc | 45 while (written_output_ + remaining.diff_size + remaining.extra_size >= in AddControlEntry() 55 current_patch_entry.diff_size = in AddControlEntry() 56 std::min(remaining.diff_size, remaining_bytes); in AddControlEntry() 57 remaining_bytes -= current_patch_entry.diff_size; in AddControlEntry() 58 remaining.diff_size -= current_patch_entry.diff_size; in AddControlEntry() 68 if (remaining.diff_size + remaining.extra_size > 0) { in AddControlEntry() 79 if (!remaining.diff_size) { in AddControlEntry() 137 if (!entry.diff_size && !entry.extra_size && !entry.offset_increment) in AddControlEntryToCurrentPatch() 144 old_pos_ += entry.diff_size + entry.offset_increment; in AddControlEntryToCurrentPatch() 145 written_output_ += entry.diff_size + entry.extra_size; in AddControlEntryToCurrentPatch() [all …]
|
D | endsley_patch_writer.cc | 104 pending_diff_ = entry.diff_size; in AddControlEntry() 111 pending_control_data_ += entry.diff_size + entry.extra_size; in AddControlEntry() 152 EncodeInt64(entry.diff_size, buf); in EmitControlEntry() 176 pending_diff_ = entry.diff_size; in Flush() 178 pending_control_data_ -= entry.extra_size + entry.diff_size; in Flush() 183 size_t diff_size = std::min(diff_data_.size() - used_diff, pending_diff_); in Flush() local 184 EmitBuffer(diff_data_.data() + used_diff, diff_size); in Flush() 185 pending_diff_ -= diff_size; in Flush() 186 used_diff += diff_size; in Flush()
|
D | patch_reader.cc | 125 int64_t diff_size = ParseInt64(buf); in ParseControlEntry() local 132 if (diff_size < 0 || extra_size < 0) { in ParseControlEntry() 133 LOG(ERROR) << "Corrupt patch; diff_size: " << diff_size in ParseControlEntry() 138 control_entry->diff_size = diff_size; in ParseControlEntry()
|
D | patch_reader_unittest.cc | 56 int64_t diff_size, in ConstructPatchHeader() argument 63 EncodeInt64(diff_size, buf + 8); in ConstructPatchHeader() 93 EXPECT_EQ(diff_data_[i].size(), control_entry.diff_size); in VerifyPatch() 112 int64_t diff_size, in InvalidHeaderTestHelper() argument 121 ConstructPatchHeader(ctrl_size, diff_size, new_size, &patch_data); in InvalidHeaderTestHelper() 126 << "Where ctrl_size=" << ctrl_size << " diff_size=" << diff_size in InvalidHeaderTestHelper()
|
D | bsdiff_unittest.cc | 62 EXPECT_EQ(some_text.size(), entry.diff_size); in TEST_F() 81 EXPECT_EQ(100U, entry.diff_size); in TEST_F() 102 EXPECT_EQ(100U, entry.diff_size); in TEST_F()
|
D | patch_writer.cc | 124 EncodeInt64(entry.diff_size, buf); in AddControlEntry() 134 written_output_ += entry.diff_size + entry.extra_size; in AddControlEntry() 215 uint64_t diff_size) { in WriteHeader() argument 246 EncodeInt64(diff_size, header + 16); in WriteHeader()
|
D | bspatch.cc | 274 if (newpos + control_entry.diff_size > patch_reader.new_file_size()) { in bspatch() 303 std::min<uint64_t>(oldpos + control_entry.diff_size, old_file_size); in bspatch() 332 newpos += control_entry.diff_size; in bspatch() 333 if (oldpos > INT64_MAX - static_cast<int64_t>(control_entry.diff_size)) in bspatch() 335 oldpos += control_entry.diff_size; in bspatch()
|
D | patch_writer.h | 57 bool WriteHeader(uint8_t types[3], uint64_t ctrl_size, uint64_t diff_size);
|
/external/bsdiff/include/bsdiff/ |
D | control_entry.h | 11 ControlEntry(uint64_t diff_size, in ControlEntry() 14 : diff_size(diff_size), in ControlEntry() 19 uint64_t diff_size; member 28 return diff_size == o.diff_size && extra_size == o.extra_size &&
|
/external/deqp/android/cts/master/src/ |
D | gles3-master-2020-03-01.txt | 38268 dEQP-GLES3.functional.vertex_array_objects.diff_size
|
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.2.x/ |
D | gles3-master.txt | 36442 dEQP-GLES3.functional.vertex_array_objects.diff_size
|
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.3.x/ |
D | gles3-master.txt | 39017 dEQP-GLES3.functional.vertex_array_objects.diff_size
|
/external/swiftshader/tests/regres/testlists/ |
D | gles3-master-PASS.txt | 40145 dEQP-GLES3.functional.vertex_array_objects.diff_size
|
D | gles3-master.txt | 38268 dEQP-GLES3.functional.vertex_array_objects.diff_size
|
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.3.x/src/ |
D | gles3-master.txt | 38996 dEQP-GLES3.functional.vertex_array_objects.diff_size
|
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.2.x/src/ |
D | gles3-master.txt | 36442 dEQP-GLES3.functional.vertex_array_objects.diff_size
|
/external/deqp/android/cts/master/ |
D | gles3-master-2020-03-01.txt | 38268 dEQP-GLES3.functional.vertex_array_objects.diff_size
|
D | gles3-master.txt | 38460 dEQP-GLES3.functional.vertex_array_objects.diff_size
|
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.6.x/ |
D | gles3-master.txt | 39902 dEQP-GLES3.functional.vertex_array_objects.diff_size
|
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.4.x/ |
D | gles3-master.txt | 39615 dEQP-GLES3.functional.vertex_array_objects.diff_size
|
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.4.x/src/ |
D | gles3-master.txt | 40362 dEQP-GLES3.functional.vertex_array_objects.diff_size
|
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.5.x/ |
D | gles3-master.txt | 39902 dEQP-GLES3.functional.vertex_array_objects.diff_size
|
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/master/ |
D | gles3-master.txt | 39902 dEQP-GLES3.functional.vertex_array_objects.diff_size
|
/external/virglrenderer/ci/previous_results/archived/gl_host_amdgpu/deqp_gles3/ |
D | results.txt | 42645 dEQP-GLES3.functional.vertex_array_objects.diff_size Pass
|