Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
DFEBlend.cpp105 unsigned char* destinationPixel, unsigned pixelArrayLength) in platformApply() argument
107 unsigned len = pixelArrayLength / 4; in platformApply()
122 unsigned char* destinationPixel, unsigned pixelArrayLength) in platformApplyGeneric() argument
126 … platformApply<feBlendNormal>(sourcePixelA, sourcePixelB, destinationPixel, pixelArrayLength); in platformApplyGeneric()
129 … platformApply<feBlendMultiply>(sourcePixelA, sourcePixelB, destinationPixel, pixelArrayLength); in platformApplyGeneric()
132 … platformApply<feBlendScreen>(sourcePixelA, sourcePixelB, destinationPixel, pixelArrayLength); in platformApplyGeneric()
135 … platformApply<feBlendDarken>(sourcePixelA, sourcePixelB, destinationPixel, pixelArrayLength); in platformApplyGeneric()
138 … platformApply<feBlendLighten>(sourcePixelA, sourcePixelB, destinationPixel, pixelArrayLength); in platformApplyGeneric()
141 … platformApply<feBlendUnknown>(sourcePixelA, sourcePixelB, destinationPixel, pixelArrayLength); in platformApplyGeneric()
164 unsigned pixelArrayLength = srcPixelArrayA->length(); in applySoftware() local
[all …]
DFEComposite.cpp132 …id computeArithmeticPixels(unsigned char* source, unsigned char* destination, int pixelArrayLength, in computeArithmeticPixels() argument
142 while (--pixelArrayLength >= 0) { in computeArithmeticPixels()
165 …elsUnclamped(unsigned char* source, unsigned char* destination, int pixelArrayLength, float k1, fl… in computeArithmeticPixelsUnclamped() argument
174 while (--pixelArrayLength >= 0) { in computeArithmeticPixelsUnclamped()
189 …eticSoftware(unsigned char* source, unsigned char* destination, int pixelArrayLength, float k1, fl… in arithmeticSoftware() argument
196 … computeArithmeticPixelsUnclamped<1, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4); in arithmeticSoftware()
198 … computeArithmeticPixelsUnclamped<0, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4); in arithmeticSoftware()
201 … computeArithmeticPixelsUnclamped<1, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4); in arithmeticSoftware()
203 … computeArithmeticPixelsUnclamped<0, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4); in arithmeticSoftware()
210 computeArithmeticPixels<1, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4); in arithmeticSoftware()
[all …]
DFEComposite.h81 unsigned pixelArrayLength, float k1, float k2, float k3, float k4);
83 unsigned pixelArrayLength, float k1, float k2, float k3, float k4);
DFilterEffect.cpp179 int pixelArrayLength = imageArray->length(); in forceValidPreMultipliedPixels() local
182 ASSERT(!(pixelArrayLength % 4)); in forceValidPreMultipliedPixels()
185 if (pixelArrayLength >= 64) { in forceValidPreMultipliedPixels()
186 unsigned char* lastPixel = pixelData + (pixelArrayLength & ~0x3f); in forceValidPreMultipliedPixels()
197 pixelArrayLength &= 0x3f; in forceValidPreMultipliedPixels()
198 if (!pixelArrayLength) in forceValidPreMultipliedPixels()
203 int numPixels = pixelArrayLength / 4; in forceValidPreMultipliedPixels()
DFEComponentTransfer.cpp168 unsigned pixelArrayLength = pixelArray->length(); in applySoftware() local
169 for (unsigned pixelOffset = 0; pixelOffset < pixelArrayLength; pixelOffset += 4) { in applySoftware()
DFEColorMatrix.cpp111 unsigned pixelArrayLength = pixelArray->length(); in effectType() local
119 for (unsigned pixelByteOffset = 0; pixelByteOffset < pixelArrayLength; pixelByteOffset += 4) { in effectType()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/filters/
DFECompositeArithmeticNEON.h39 unsigned pixelArrayLength, float k1, float k2, float k3, float k4) in computeArithmeticPixelsNeon() argument
49 uint32_t* destinationEndPixel = destinationPixel + (pixelArrayLength >> 2); in computeArithmeticPixelsNeon()
76 unsigned pixelArrayLength, float k1, float k2, float k3, float k4) in platformArithmeticNeon() argument
80 … computeArithmeticPixelsNeon<0, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4); in platformArithmeticNeon()
84 computeArithmeticPixelsNeon<1, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4); in platformArithmeticNeon()
89 computeArithmeticPixelsNeon<0, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4); in platformArithmeticNeon()
92 computeArithmeticPixelsNeon<1, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4); in platformArithmeticNeon()
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
DShape.cpp228 unsigned pixelArrayLength = pixelArray->length(); in createShape() local
232 … ASSERT(static_cast<unsigned>(imageSize.width() * imageSize.height() * 4) == pixelArrayLength); in createShape()
236 …for (int x = 0; x < imageSize.width() && pixelArrayOffset < pixelArrayLength; ++x, pixelArrayOffse… in createShape()