Searched refs:compressed_data (Results 1 – 3 of 3) sorted by relevance
88 brillo::Blob compressed_data(std::begin(kCompressedData), in TEST_F() local104 brillo::Blob original_compressed_data = compressed_data; in TEST_F()105 for (brillo::Blob::size_type i = 0; i < compressed_data.size(); in TEST_F()107 size_t this_chunk_size = min(kChunkSize, compressed_data.size() - i); in TEST_F()108 EXPECT_TRUE(bzip_writer.Write(&compressed_data[i], this_chunk_size)); in TEST_F()112 test_utils::ExpectVectorsEq(original_compressed_data, compressed_data); in TEST_F()
261 bool XzDecompress(const std::string& compressed_data, std::string* decompressed_data) { in XzDecompress() argument271 std::string dst(compressed_data.size(), ' '); in XzDecompress()276 size_t src_remaining = compressed_data.size() - src_offset; in XzDecompress()279 reinterpret_cast<const Byte*>(&compressed_data[src_offset]), in XzDecompress()
141 bool XzDecompress(const std::string& compressed_data, std::string* decompressed_data);