Searched refs:test_output (Results  1 – 4 of 4) sorted by relevance
| /system/cros-codecs/examples/ | 
| D | perf_test.rs | 63     let mut test_output = [0u8; 480 * 288 * 3 / 2];  in test_nv12_to_i420_perf()  localVariable64     let (test_y_output, test_uv_output) = test_output.split_at_mut(480 * 288);  in test_nv12_to_i420_perf()
 95     assert_eq!(test_output, *test_expected_output);  in test_nv12_to_i420_perf()
 102     let mut test_output = [0u8; 480 * 288 * 3 / 2];  in test_i420_to_nv12_perf()  localVariable
 103     let (test_y_output, test_uv_output) = test_output.split_at_mut(480 * 288);  in test_i420_to_nv12_perf()
 126     assert_eq!(test_output, *test_expected_output);  in test_i420_to_nv12_perf()
 
 | 
| /system/cros-codecs/ | 
| D | simple_test.py | 20   test_output = ccdec_process.stdout.decode('utf-8')21   if test_output != golden:
 23     test_lines = test_output.split('\n')
 
 | 
| /system/cros-codecs/src/ | 
| D | image_processing.rs | 499         let mut test_output = [0u8; 480 * 288 * 3 / 2];  in test_mm21_to_nv12()  localVariable500         let (test_y_output, test_uv_output) = test_output.split_at_mut(480 * 288);  in test_mm21_to_nv12()
 514         assert_eq!(test_output, *test_expected_output);  in test_mm21_to_nv12()
 522         let mut test_output = [0u8; 480 * 288 * 3 / 2];  in test_nv12_to_i420()  localVariable
 523         let (test_y_output, test_uv_output) = test_output.split_at_mut(480 * 288);  in test_nv12_to_i420()
 532         assert_eq!(test_output, *test_expected_output);  in test_nv12_to_i420()
 540         let mut test_output = [0u8; 480 * 288 * 3 / 2];  in test_i420_to_nv12()  localVariable
 541         let (test_y_output, test_uv_output) = test_output.split_at_mut(480 * 288);  in test_i420_to_nv12()
 549         assert_eq!(test_output, *test_expected_output);  in test_i420_to_nv12()
 
 | 
| /system/memory/lmkd/tests/ | 
| D | lmkd_test.cpp | 319     std::string test_output;  in TEST()  local325         std::string test_output = readCommand(command);  in TEST()  local
 326         GTEST_LOG_(INFO) << test_output;  in TEST()
 
 |