Searched refs:src_pixels (Results 1 – 7 of 7) sorted by relevance
/aosp_15_r20/external/libyuv/unit_test/ |
H A D | planar_test.cc | 839 align_buffer_page_end(src_pixels, benchmark_width_ * benchmark_height_ * 4); in TEST_F() 844 MemRandomize(src_pixels, benchmark_width_ * benchmark_height_ * 4); in TEST_F() 846 ARGBMirror(src_pixels, benchmark_width_ * 4, dst_pixels_c, in TEST_F() 851 ARGBMirror(src_pixels, benchmark_width_ * 4, dst_pixels_opt, in TEST_F() 857 free_aligned_buffer_page_end(src_pixels); in TEST_F() 863 align_buffer_page_end(src_pixels, benchmark_width_ * benchmark_height_); in TEST_F() 867 MemRandomize(src_pixels, benchmark_width_ * benchmark_height_); in TEST_F() 869 MirrorPlane(src_pixels, benchmark_width_, dst_pixels_c, benchmark_width_, in TEST_F() 874 MirrorPlane(src_pixels, benchmark_width_, dst_pixels_opt, benchmark_width_, in TEST_F() 880 free_aligned_buffer_page_end(src_pixels); in TEST_F() [all …]
|
H A D | rotate_test.cc | 871 int src_pixels[4][4]; in TEST_F() local 877 src_pixels[i][j] = i * 10 + j; in TEST_F() 883 Transpose4x4_32_C((const uint8_t*)src_pixels, height * 4, in TEST_F() 892 Transpose4x4_32_NEON((const uint8_t*)src_pixels, height * 4, in TEST_F() 897 Transpose4x4_32_SSE2((const uint8_t*)src_pixels, height * 4, in TEST_F() 902 Transpose4x4_32_C((const uint8_t*)src_pixels, height * 4, in TEST_F() 909 EXPECT_EQ(dst_pixels_c[i][j], src_pixels[j][i]); in TEST_F() 919 align_buffer_page_end(src_pixels, height * width * 4); in TEST_F() 923 MemRandomize(src_pixels, height * width * 4); in TEST_F() 927 Transpose4x4_32_C((const uint8_t*)src_pixels, height * 4, in TEST_F() [all …]
|
/aosp_15_r20/external/deqp/external/openglcts/modules/gl/ |
H A D | gl4cCopyImageTests.cpp | 2618 GLubyte *src_pixels[FUNCTIONAL_TEST_N_LEVELS] = {0}; in iterate() local 2629 prepareSrcPxls(test_case.m_src, test_case.m_dst.m_internal_format, src_pixels); in iterate() 2639 … m_rb_name = prepareTexture(test_case.m_src, (const GLubyte **)src_pixels, m_src_buf_name); in iterate() 2640 m_src_tex_name = prepareTexture(desc, (const GLubyte **)src_pixels, m_src_buf_name); in iterate() 2644 … m_src_tex_name = prepareTexture(test_case.m_src, (const GLubyte **)src_pixels, m_src_buf_name); in iterate() 2648 … result = copyAndVerify(test_case, (const GLubyte **)dst_pixels, (const GLubyte **)src_pixels); in iterate() 2654 cleanPixels((GLubyte **)src_pixels); in iterate() 2661 cleanPixels((GLubyte **)src_pixels); in iterate() 2744 …t::copyAndVerify(const testCase &test_case, const GLubyte **dst_pixels, const GLubyte **src_pixels) in copyAndVerify() argument 2813 … result = verify(test_case, dst_layer, dst_pixels, src_layer, src_pixels, region_depth); in copyAndVerify() [all …]
|
H A D | gl4cCopyImageTests.hpp | 141 …erify(const testCase &test_case, const glw::GLubyte **dst_pixels, const glw::GLubyte **src_pixels); 158 glw::GLuint src_layer, const glw::GLubyte **src_pixels, glw::GLuint depth); 223 bool copyAndVerify(const testCase &test_case, const glw::GLubyte *src_pixels); 233 bool verify(const testCase &test_case, const glw::GLubyte *src_pixels);
|
/aosp_15_r20/packages/services/BuiltInPrintService/jni/plugins/ |
D | lib_pclm.c | 252 char *src_pixels = rgb_pixels + job_info->scan_line_width; in _print_swath() local 254 for (i = 1; i < num_rows; i++, src_pixels += job_info->scan_line_width, in _print_swath() 256 memmove(dest_pixels, src_pixels, job_info->pclm_scan_line_width); in _print_swath()
|
/aosp_15_r20/external/libaom/aom_dsp/flow_estimation/x86/ |
H A D | disflow_sse4.c | 222 __m128i src_pixels = _mm_slli_epi16(_mm_cvtepu8_epi16(src_pixels_u8), 3); in compute_flow_vector() local 225 __m128i dt = _mm_sub_epi16(warped, src_pixels); in compute_flow_vector()
|
H A D | disflow_avx2.c | 239 __m256i src_pixels = in compute_flow_vector() local 243 __m256i dt = _mm256_sub_epi16(warped, src_pixels); in compute_flow_vector()
|