HomeSort by relevance Sort by last modified time
    Searched refs:dstPixelArray (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEBlend.h 38 void platformApplyGeneric(unsigned char* srcPixelArrayA, unsigned char* srcPixelArrayB, unsigned char* dstPixelArray,
40 void platformApplyNEON(unsigned char* srcPixelArrayA, unsigned char* srcPixelArrayB, unsigned char* dstPixelArray,
FEBlend.cpp 76 Uint8ClampedArray* dstPixelArray = createPremultipliedImageResult();
77 if (!dstPixelArray)
93 platformApplyNEON(srcPixelArrayA->data(), srcPixelArrayB->data(), dstPixelArray->data(), pixelArrayLength);
103 reinterpret_cast<uint32_t*>(dstPixelArray->data())[0] = sourceBAndDest[0];
FEGaussianBlur.h 57 RefPtr<Uint8ClampedArray> dstPixelArray;
FEMorphology.h 57 Uint8ClampedArray* dstPixelArray;
FEDisplacementMap.cpp 123 Uint8ClampedArray* dstPixelArray = createPremultipliedImageResult();
124 if (!dstPixelArray)
152 dstPixelArray->set(dstIndex + channel, static_cast<unsigned char>(0));
155 dstPixelArray->set(dstIndex + channel, pixelValue);
FEConvolveMatrix.h 82 Uint8ClampedArray* dstPixelArray;
FEComposite.cpp 297 Uint8ClampedArray* dstPixelArray = createPremultipliedImageResult();
298 if (!dstPixelArray)
305 in2->copyPremultipliedImage(dstPixelArray, effectBDrawingRect);
307 platformArithmeticSoftware(srcPixelArray.get(), dstPixelArray, m_k1, m_k2, m_k3, m_k4);
FEConvolveMatrix.cpp 304 setDestinationPixels<preserveAlphaValues>(paintingData.dstPixelArray, pixel, totals, m_divisor, paintingData.bias, paintingData.srcPixelArray);
389 setDestinationPixels<preserveAlphaValues>(paintingData.dstPixelArray, pixel, totals, m_divisor, paintingData.bias, paintingData.srcPixelArray);
450 paintingData.dstPixelArray = resultImage;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/filters/
FEGaussianBlurNEON.h 37 inline void boxBlurNEON(Uint8ClampedArray* srcPixelArray, Uint8ClampedArray* dstPixelArray,
41 uint32_t* destinationPixel = reinterpret_cast<uint32_t*>(dstPixelArray->data());
FEBlendNEON.h 109 void FEBlend::platformApplyNEON(unsigned char* srcPixelArrayA, unsigned char* srcPixelArrayB, unsigned char* dstPixelArray,
114 uint8_t* destinationPixel = reinterpret_cast<uint8_t*>(dstPixelArray);
158 dstPixelArray[colorOffset + 3] = alphaR1;
159 dstPixelArray[colorOffset + 7] = alphaR2;

Completed in 375 milliseconds