Searched refs:ByteExtent (Results 1 – 17 of 17) sorted by relevance
/external/puffin/src/ |
D | extent_stream.h | 23 const std::vector<ByteExtent>& extents); 26 const std::vector<ByteExtent>& extents); 38 const std::vector<ByteExtent>& extents, 51 std::vector<ByteExtent> extents_; 54 std::vector<ByteExtent>::iterator cur_extent_;
|
D | unittest_common.cc | 51 const vector<ByteExtent> kDeflateExtentsSample1 = { 55 const vector<ByteExtent> kPuffExtentsSample1 = {{2, 11}, {15, 5}, {21, 7}}; 72 const vector<ByteExtent> kDeflateExtentsSample2 = { 76 const vector<ByteExtent> kPuffExtentsSample2 = {
|
D | unittest_common.h | 39 extern const std::vector<ByteExtent> kDeflateExtentsSample1; 41 extern const std::vector<ByteExtent> kPuffExtentsSample1; 45 extern const std::vector<ByteExtent> kDeflateExtentsSample2; 47 extern const std::vector<ByteExtent> kPuffExtentsSample2;
|
D | puffin_stream.h | 50 const std::vector<ByteExtent>& puffs, 64 const std::vector<ByteExtent>& puffs); 95 const std::vector<ByteExtent>& puffs, 121 std::vector<ByteExtent> puffs_; 123 std::vector<ByteExtent>::iterator cur_puff_;
|
D | fuzzer_puffpatch.cc | 16 using puffin::ByteExtent; 28 vector<ByteExtent>* src_puffs, 29 vector<ByteExtent>* dst_puffs, 60 vector<ByteExtent> src_puffs, dst_puffs; in FuzzPuffPatch()
|
D | main.cc | 30 using puffin::ByteExtent; 213 auto src_deflates_byte = StringToExtents<ByteExtent>(FLAGS_src_deflates_byte); in Main() 214 auto dst_deflates_byte = StringToExtents<ByteExtent>(FLAGS_dst_deflates_byte); in Main() 217 auto src_puffs = StringToExtents<ByteExtent>(FLAGS_src_puffs); in Main() 218 auto dst_puffs = StringToExtents<ByteExtent>(FLAGS_dst_puffs); in Main() 219 auto src_extents = StringToExtents<ByteExtent>(FLAGS_src_extents); in Main() 220 auto dst_extents = StringToExtents<ByteExtent>(FLAGS_dst_extents); in Main()
|
D | puffdiff.cc | 55 const vector<ByteExtent>& src_puffs, in CreatePatch() 56 const vector<ByteExtent>& dst_puffs, in CreatePatch() 109 Buffer* puff_buffer, vector<ByteExtent>* puffs) { in PuffDiff() 125 vector<ByteExtent> src_puffs, dst_puffs; in PuffDiff()
|
D | extent_stream.cc | 17 UniqueStreamPtr stream, const vector<ByteExtent>& extents) { in CreateForWrite() 22 const vector<ByteExtent>& extents) { in CreateForRead() 27 const vector<ByteExtent>& extents, in ExtentStream()
|
D | puffpatch.cc | 103 vector<ByteExtent>* src_puffs, in DecodePatch() 104 vector<ByteExtent>* dst_puffs, in DecodePatch() 149 vector<ByteExtent> src_puffs, dst_puffs; in PuffPatch()
|
D | utils_unittest.cc | 87 const vector<ByteExtent>& zlibs, in FindDeflatesInZlibBlocks() 104 const vector<ByteExtent>& expected_puffs, in CheckFindPuffLocation() 107 vector<ByteExtent> puffs; in CheckFindPuffLocation() 136 vector<ByteExtent> empty_zlibs; in TEST()
|
D | puffin_stream.cc | 33 const vector<ByteExtent>& puffs) { in CheckArgsIntegrity() 61 const vector<ByteExtent>& puffs, in CreateForPuff() 78 const vector<ByteExtent>& puffs) { in CreateForHuff() 94 const vector<ByteExtent>& puffs, in PuffinStream()
|
D | fuzzer_huff.cc | 16 using puffin::ByteExtent;
|
D | puffin_unittest.cc | 189 const vector<ByteExtent>& puff_extents) { in CheckBitExtentsPuffAndHuff() 193 vector<ByteExtent> out_puff_extents; in CheckBitExtentsPuffAndHuff() 567 const vector<ByteExtent> kGapPuffExtents = {
|
D | utils.cc | 132 const vector<ByteExtent>& deflates, in FindDeflateSubBlocks() 161 const vector<ByteExtent>& zlibs, in LocateDeflatesInZlibBlocks() 322 vector<ByteExtent>* puffs, in FindPuffLocations()
|
D | stream_unittest.cc | 253 vector<ByteExtent> extents = {{10, 10}, {25, 0}, {30, 10}}; in TEST_F()
|
/external/puffin/src/include/puffin/ |
D | common.h | 33 struct ByteExtent { struct 34 ByteExtent(uint64_t offset, uint64_t length) in ByteExtent() argument 37 bool operator==(const ByteExtent& other) const {
|
D | utils.h | 49 const std::vector<ByteExtent>& zlibs, 65 const std::vector<ByteExtent>& deflates, 73 std::vector<ByteExtent>* puffs,
|