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

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/filters/
FECompositeArithmeticNEON.h 39 unsigned pixelArrayLength, float k1, float k2, float k3, float k4)
49 uint32_t* destinationEndPixel = destinationPixel + (pixelArrayLength >> 2);
76 unsigned pixelArrayLength, float k1, float k2, float k3, float k4)
80 computeArithmeticPixelsNeon<0, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
84 computeArithmeticPixelsNeon<1, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
89 computeArithmeticPixelsNeon<0, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4);
92 computeArithmeticPixelsNeon<1, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEComposite.h 83 unsigned pixelArrayLength, float k1, float k2, float k3, float k4);
85 unsigned pixelArrayLength, float k1, float k2, float k3, float k4);
FEBlend.cpp 89 unsigned pixelArrayLength = srcPixelArrayA->length();
90 ASSERT(pixelArrayLength == srcPixelArrayB->length());
92 if (pixelArrayLength >= 8) {
93 platformApplyNEON(srcPixelArrayA->data(), srcPixelArrayB->data(), dstPixelArray->data(), pixelArrayLength);
96 ASSERT(pixelArrayLength > 0);
FEComposite.cpp 131 static inline void computeArithmeticPixels(unsigned char* source, unsigned char* destination, int pixelArrayLength,
141 while (--pixelArrayLength >= 0) {
164 static inline void computeArithmeticPixelsUnclamped(unsigned char* source, unsigned char* destination, int pixelArrayLength, float k1, float k2, float k3, float k4)
173 while (--pixelArrayLength >= 0) {
188 static inline void arithmeticSoftware(unsigned char* source, unsigned char* destination, int pixelArrayLength, float k1, float k2, float k3, float k4)
195 computeArithmeticPixelsUnclamped<1, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4);
197 computeArithmeticPixelsUnclamped<0, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4);
200 computeArithmeticPixelsUnclamped<1, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
202 computeArithmeticPixelsUnclamped<0, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
209 computeArithmeticPixels<1, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4)
    [all...]
FilterEffect.cpp 217 int pixelArrayLength = imageArray->length();
220 ASSERT(!(pixelArrayLength % 4));
223 if (pixelArrayLength >= 64) {
224 unsigned char* lastPixel = pixelData + (pixelArrayLength & ~0x3f);
235 pixelArrayLength &= 0x3f;
236 if (!pixelArrayLength)
241 int numPixels = pixelArrayLength / 4;

Completed in 54 milliseconds