/external/bsdiff/ |
D | brotli_decompressor_unittest.cc | 35 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()
|
D | bz2_decompressor_unittest.cc | 37 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()
|
D | patch_reader.cc | 95 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()
|
D | brotli_compressor_unittest.cc | 30 EXPECT_TRUE(brotli_decompressor.SetInputData(compressed_data.data(), in TEST() 50 EXPECT_TRUE(brotli_decompressor.SetInputData(compressed_data.data(), in TEST()
|
D | bz2_decompressor.h | 19 bool SetInputData(const uint8_t* input_data, size_t size) override;
|
D | brotli_decompressor.h | 21 bool SetInputData(const uint8_t* input_data, size_t size) override;
|
D | brotli_decompressor.cc | 16 bool BrotliDecompressor::SetInputData(const uint8_t* input_data, size_t size) { in SetInputData() function in bsdiff::BrotliDecompressor
|
D | bz2_decompressor.cc | 22 bool BZ2Decompressor::SetInputData(const uint8_t* input_data, size_t size) { in SetInputData() function in bsdiff::BZ2Decompressor
|
/external/libgav1/src/dsp/ |
D | motion_vector_search_test.cc | 75 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()
|
D | loop_restoration_test.cc | 101 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()
|
D | motion_field_projection_test.cc | 79 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()
|
D | weight_mask_test.cc | 232 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()
|
D | convolve_test.cc | 667 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()
|
D | warp_test.cc | 290 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/ |
D | decompressor_interface.h | 24 virtual bool SetInputData(const uint8_t* input_data, size_t size) = 0;
|