Home
last modified time | relevance | path

Searched refs:SetInputData (Results 1 – 15 of 15) sorted by relevance

/external/bsdiff/
Dbrotli_decompressor_unittest.cc35 EXPECT_TRUE(decompressor_->SetInputData(kBrotliHello, sizeof(kBrotliHello))); in TEST_F()
44 EXPECT_TRUE(decompressor_->SetInputData(&data, 0)); in TEST_F()
54 decompressor_->SetInputData(kBrotliHello, sizeof(kBrotliHello) / 2)); in TEST_F()
61 EXPECT_TRUE(decompressor_->SetInputData(kBrotliHello, sizeof(kBrotliHello))); in TEST_F()
Dbz2_decompressor_unittest.cc37 EXPECT_TRUE(decompressor_->SetInputData(&data, 0)); in TEST_F()
46 EXPECT_TRUE(decompressor_->SetInputData(kBZ2Hello, sizeof(kBZ2Hello) / 2)); in TEST_F()
53 EXPECT_TRUE(decompressor_->SetInputData(kBZ2Hello, sizeof(kBZ2Hello))); in TEST_F()
Dpatch_reader.cc95 if (!ctrl_stream_->SetInputData(const_cast<uint8_t*>(patch_data) + offset, in Init()
102 if (!diff_stream_->SetInputData(const_cast<uint8_t*>(patch_data) + offset, in Init()
109 if (!extra_stream_->SetInputData(const_cast<uint8_t*>(patch_data) + offset, in Init()
Dbrotli_compressor_unittest.cc30 EXPECT_TRUE(brotli_decompressor.SetInputData(compressed_data.data(), in TEST()
50 EXPECT_TRUE(brotli_decompressor.SetInputData(compressed_data.data(), in TEST()
Dbz2_decompressor.h19 bool SetInputData(const uint8_t* input_data, size_t size) override;
Dbrotli_decompressor.h21 bool SetInputData(const uint8_t* input_data, size_t size) override;
Dbrotli_decompressor.cc16 bool BrotliDecompressor::SetInputData(const uint8_t* input_data, size_t size) { in SetInputData() function in bsdiff::BrotliDecompressor
Dbz2_decompressor.cc22 bool BZ2Decompressor::SetInputData(const uint8_t* input_data, size_t size) { in SetInputData() function in bsdiff::BZ2Decompressor
/external/libgav1/src/dsp/
Dmotion_vector_search_test.cc75 void SetInputData(libvpx_test::ACMRandom* rnd);
97 void MotionVectorSearchTest::SetInputData(libvpx_test::ACMRandom* const rnd) { in SetInputData() function in libgav1::dsp::__anon266073e80111::MotionVectorSearchTest
132 SetInputData(&rnd); in TestRandomValues()
156 SetInputData(&rnd); in TestRandomValues()
Dloop_restoration_test.cc101 void SetInputData(int type, Pixel value, int radius_index,
119 void SelfGuidedFilterTest<bitdepth, Pixel>::SetInputData( in SetInputData() function in libgav1::dsp::__anon6566af7e0111::SelfGuidedFilterTest
195 SetInputData(0, value, radius_index, &rnd); in TestFixedValues()
263 SetInputData(1, 0, radius_index, &rnd); in TestRandomValues()
420 void SetInputData(int type, Pixel value, int vertical_order,
444 void WienerFilterTest<bitdepth, Pixel>::SetInputData( in SetInputData() function in libgav1::dsp::__anon6566af7e0111::WienerFilterTest
488 SetInputData(0, value, vertical_order, horizontal_order); in TestFixedValues()
553 SetInputData(1, (1 << bitdepth) - 1, vertical_order, horizontal_order); in TestRandomValues()
590 SetInputData(1, (1 << bitdepth) - 1, vertical_order, horizontal_order); in TestCompare2C()
Dmotion_field_projection_test.cc79 void SetInputData(int motion_field_width, libvpx_test::ACMRandom* rnd);
88 void MotionFieldProjectionTest::SetInputData( in SetInputData() function in libgav1::dsp::__anonf6b12c800111::MotionFieldProjectionTest
157 SetInputData(motion_field_width, &rnd); in TestRandomValues()
Dweight_mask_test.cc232 void SetInputData(bool use_fixed_values, int value_1, int value_2);
250 void WeightMaskTest<bitdepth>::SetInputData(const bool use_fixed_values, in SetInputData() function in libgav1::dsp::__anon21aa963e0111::WeightMaskTest
323 SetInputData(use_fixed_values, value_1, value_2); in Test()
Dconvolve_test.cc667 void SetInputData(bool use_fixed_values, int value);
704 void ConvolveTest<bitdepth, Pixel>::SetInputData(bool use_fixed_values, in SetInputData() function in libgav1::dsp::__anonc8f7b3170111::ConvolveTest
804 SetInputData(use_fixed_values, value); in Test()
1119 void SetInputData(bool use_fixed_values, int value);
1148 void ConvolveScaleTest<bitdepth, Pixel>::SetInputData(bool use_fixed_values, in SetInputData() function in libgav1::dsp::__anonc8f7b3170111::ConvolveScaleTest
1241 SetInputData(use_fixed_values, value); in Test()
Dwarp_test.cc290 void SetInputData(bool use_fixed_values, int value);
309 void WarpTest<is_compound, bitdepth, Pixel>::SetInputData(bool use_fixed_values, in SetInputData() function in libgav1::dsp::__anone8100d850111::WarpTest
341 SetInputData(use_fixed_values, value); in Test()
/external/bsdiff/include/bsdiff/
Ddecompressor_interface.h24 virtual bool SetInputData(const uint8_t* input_data, size_t size) = 0;