HomeSort by relevance Sort by last modified time
    Searched refs:srcPixelArrayA (Results 1 - 4 of 4) 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 84 RefPtr<Uint8ClampedArray> srcPixelArrayA = in->asPremultipliedImage(effectADrawingRect);
89 unsigned pixelArrayLength = srcPixelArrayA->length();
93 platformApplyNEON(srcPixelArrayA->data(), srcPixelArrayB->data(), dstPixelArray->data(), pixelArrayLength);
100 sourceA[0] = reinterpret_cast<uint32_t*>(srcPixelArrayA->data())[0];
FEDisplacementMap.cpp 128 RefPtr<Uint8ClampedArray> srcPixelArrayA = in->asPremultipliedImage(effectADrawingRect);
133 ASSERT(srcPixelArrayA->length() == srcPixelArrayB->length());
154 unsigned char pixelValue = srcPixelArrayA->item(srcY * stride + srcX * 4 + channel);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/filters/
FEBlendNEON.h 109 void FEBlend::platformApplyNEON(unsigned char* srcPixelArrayA, unsigned char* srcPixelArrayB, unsigned char* dstPixelArray,
112 uint8_t* sourcePixelA = reinterpret_cast<uint8_t*>(srcPixelArrayA);
121 unsigned char alphaA1 = srcPixelArrayA[colorOffset + 3];
123 unsigned char alphaA2 = srcPixelArrayA[colorOffset + 7];

Completed in 315 milliseconds