Home
last modified time | relevance | path

Searched refs:pixels2 (Results 1 – 8 of 8) sorted by relevance

/external/skia/tests/
DPremulAlphaRoundTripTest.cpp82 const uint32_t* pixels2 = readBmp2.getAddr32(0, y); in test_premul_alpha_roundtrip() local
85 if (pixels1[x] != pixels2[x]) { in test_premul_alpha_roundtrip()
86 SkDebugf("%x != %x, x = %d, y = %d\n", pixels1[x], pixels2[x], x, y); in test_premul_alpha_roundtrip()
88 REPORTER_ASSERT(reporter, success = pixels1[x] == pixels2[x]); in test_premul_alpha_roundtrip()
/external/skqp/tests/
DPremulAlphaRoundTripTest.cpp84 const uint32_t* pixels2 = readBmp2.getAddr32(0, y); in test_premul_alpha_roundtrip() local
87 if (pixels1[x] != pixels2[x]) { in test_premul_alpha_roundtrip()
88 SkDebugf("%x != %x, x = %d, y = %d\n", pixels1[x], pixels2[x], x, y); in test_premul_alpha_roundtrip()
90 REPORTER_ASSERT(reporter, success = pixels1[x] == pixels2[x]); in test_premul_alpha_roundtrip()
/external/noto-fonts/scripts/
Dcolor_emoji_image_diff.py122 pixels2 = rgba_map.get(img2, img2.convert('L').getdata())
123 pixels = itertools.izip(pixels1, pixels2)
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowBitmapTest.java621 int[] pixels2 = new int[] {3, 2, 1, 0}; in sameAs_bitmapsDifferentPixels() local
623 original2.setPixels(pixels2, 0, 1, 0, 0, 2, 2); in sameAs_bitmapsDifferentPixels()
/external/deqp/modules/egl/
DteglGLES2SharingThreadedTests.cpp3196 SharedPtr<tcu::ThreadUtil::DataBlock> pixels2; in addBufferOperations() local
3199 …w GLES2ThreadTest::ReadPixels(0, 0, 400, 400, GL_RGBA, GL_UNSIGNED_BYTE, pixels2, m_config.useFenc… in addBufferOperations()
3201 m_threads[0]->addOperation(new tcu::ThreadUtil::CompareData(pixels1, pixels2)); in addBufferOperations()
3297 SharedPtr<tcu::ThreadUtil::DataBlock> pixels2; in addTextureOperations() local
3303 …w GLES2ThreadTest::ReadPixels(0, 0, 400, 400, GL_RGBA, GL_UNSIGNED_BYTE, pixels2, m_config.useFenc… in addTextureOperations()
3305 m_threads[0]->addOperation(new tcu::ThreadUtil::CompareData(pixels1, pixels2)); in addTextureOperations()
3438 SharedPtr<tcu::ThreadUtil::DataBlock> pixels2; in addImageOperations() local
3444 …w GLES2ThreadTest::ReadPixels(0, 0, 400, 400, GL_RGBA, GL_UNSIGNED_BYTE, pixels2, m_config.useFenc… in addImageOperations()
3446 m_threads[0]->addOperation(new tcu::ThreadUtil::CompareData(pixels1, pixels2)); in addImageOperations()
/external/skia/modules/canvaskit/tests/
Dcore.spec.js156 const pixels2 = rdsData.toTypedArray(); constant
157 pixels2[0] = 127; // sentinel value, should be overwritten by readPixels.
/external/angle/src/tests/egl_tests/
DEGLPreRotationTest.cpp265 std::vector<GLColor> pixels2(width * height); in testDrawingAndReadPixels() local
266 glReadPixels(xOffset, yOffset, width, height, GL_RGBA, GL_UNSIGNED_BYTE, &pixels2[0]); in testDrawingAndReadPixels()
275 GLColor actualPixel = pixels2[index]; in testDrawingAndReadPixels()
/external/libgav1/libgav1/src/dsp/x86/
Dintrapred_smooth_sse4.cc95 const __m128i& pixels2, in WriteSmoothDirectionalSum16() argument
102 const __m128i weighted_px2 = _mm_mullo_epi16(pixels2, weights2); in WriteSmoothDirectionalSum16()