Home
last modified time | relevance | path

Searched refs:test_output (Results 1 – 4 of 4) sorted by relevance

/system/cros-codecs/examples/
Dperf_test.rs63 let mut test_output = [0u8; 480 * 288 * 3 / 2]; in test_nv12_to_i420_perf() localVariable
64 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/
Dsimple_test.py20 test_output = ccdec_process.stdout.decode('utf-8')
21 if test_output != golden:
23 test_lines = test_output.split('\n')
/system/cros-codecs/src/
Dimage_processing.rs499 let mut test_output = [0u8; 480 * 288 * 3 / 2]; in test_mm21_to_nv12() localVariable
500 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/
Dlmkd_test.cpp319 std::string test_output; in TEST() local
325 std::string test_output = readCommand(command); in TEST() local
326 GTEST_LOG_(INFO) << test_output; in TEST()