HomeSort by relevance Sort by last modified time
    Searched refs:puffs (Results 1 - 7 of 7) sorted by null

  /external/puffin/src/
puffin_stream.cc 33 const std::vector<ByteExtent>& puffs) {
34 TEST_AND_RETURN_FALSE(puffs.size() == deflates.size());
36 // puff in |puffs|.
37 if (!puffs.empty()) {
39 puffs.back().offset + puffs.back().length);
42 // Check to make sure |puffs| and |deflates| are sorted and non-overlapping.
49 TEST_AND_RETURN_FALSE(puffs.end() == std::adjacent_find(puffs.begin(),
50 puffs.end()
    [all...]
puffin_stream.h 23 // and used on demand. This class uses a given deflate stream, and puffs the
41 // |puffs| IN The location of puffs into the final puff stream.
44 // size in |puffs|, then its value will be set to zero
50 const std::vector<ByteExtent>& puffs,
59 // |puffs| IN The location of puffs into the input puff stream.
64 const std::vector<ByteExtent>& puffs);
95 const std::vector<ByteExtent>& puffs,
puffdiff.cc 106 Buffer* puff_buffer, vector<ByteExtent>* puffs) {
110 FindPuffLocations(stream, deflates, puffs, &puff_size));
113 std::move(stream), puffer, puff_size, deflates, *puffs);
puffpatch.cc 80 CopyRpfToVector(header.src().puffs(), src_puffs, 8);
81 CopyRpfToVector(header.dst().puffs(), dst_puffs, 8);
utils_unittest.cc 107 vector<ByteExtent> puffs; local
109 ASSERT_TRUE(FindPuffLocations(src, deflates, &puffs, &puff_size));
110 EXPECT_EQ(puffs, expected_puffs);
utils.cc 344 vector<ByteExtent>* puffs,
399 puffs->emplace_back(puff_offset, puff_size);
  /external/puffin/src/include/puffin/
utils.h 69 // Finds the location of puffs in the deflate stream |src| based on the location
70 // of |deflates| and populates the |puffs|. We assume |deflates| are sorted by
74 std::vector<ByteExtent>* puffs,

Completed in 493 milliseconds