Searched refs:pixelArrayLength (Results 1 - 9 of 9) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/platform/graphics/cpu/arm/filters/
H A DFECompositeArithmeticNEON.h40 unsigned pixelArrayLength, float k1, float k2, float k3, float k4)
50 uint32_t* destinationEndPixel = destinationPixel + (pixelArrayLength >> 2);
72 unsigned pixelArrayLength, float k1, float k2, float k3, float k4)
76 computeArithmeticPixelsNeon<0, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
80 computeArithmeticPixelsNeon<1, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
85 computeArithmeticPixelsNeon<0, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4);
88 computeArithmeticPixelsNeon<1, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4);
39 computeArithmeticPixelsNeon(unsigned char* source, unsigned char* destination, unsigned pixelArrayLength, float k1, float k2, float k3, float k4) argument
71 platformArithmeticNeon(unsigned char* source, unsigned char* destination, unsigned pixelArrayLength, float k1, float k2, float k3, float k4) argument
H A DFEBlendNEON.h124 unsigned pixelArrayLength = srcPixelArrayA->length(); local
125 ASSERT(pixelArrayLength == srcPixelArrayB->length());
127 if (pixelArrayLength >= 8) {
128 platformApplyNEON(srcPixelArrayA->data(), srcPixelArrayB->data(), dstPixelArray->data(), pixelArrayLength);
132 ASSERT(pixelArrayLength > 0);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/filters/
H A DFEComposite.cpp127 static inline void computeArithmeticPixels(unsigned char* source, unsigned char* destination, int pixelArrayLength, argument
137 while (--pixelArrayLength >= 0) {
160 static inline void computeArithmeticPixelsUnclamped(unsigned char* source, unsigned char* destination, int pixelArrayLength, float k1, float k2, float k3, float k4) argument
169 while (--pixelArrayLength >= 0) {
185 static inline void arithmeticSoftware(unsigned char* source, unsigned char* destination, int pixelArrayLength, float k1, float k2, float k3, float k4) argument
192 computeArithmeticPixelsUnclamped<1, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4);
194 computeArithmeticPixelsUnclamped<0, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4);
197 computeArithmeticPixelsUnclamped<1, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
199 computeArithmeticPixelsUnclamped<0, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
206 computeArithmeticPixels<1, 1>(source, destination, pixelArrayLength, k
[all...]
H A DFEComposite.h81 unsigned pixelArrayLength, float k1, float k2, float k3, float k4);
83 unsigned pixelArrayLength, float k1, float k2, float k3, float k4);
H A DFilterEffect.cpp194 int pixelArrayLength = imageArray->length(); local
197 ASSERT(!(pixelArrayLength % 4));
200 if (pixelArrayLength >= 64) {
201 unsigned char* lastPixel = pixelData + (pixelArrayLength & ~0x3f);
212 pixelArrayLength &= 0x3f;
213 if (!pixelArrayLength)
218 int numPixels = pixelArrayLength / 4;
H A DFEColorMatrix.cpp110 unsigned pixelArrayLength = pixelArray->length(); local
118 for (unsigned pixelByteOffset = 0; pixelByteOffset < pixelArrayLength; pixelByteOffset += 4) {
H A DFEComponentTransfer.cpp167 unsigned pixelArrayLength = pixelArray->length(); local
169 for (unsigned pixelOffset = 0; pixelOffset < pixelArrayLength; pixelOffset += 4) {
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DImageBuffer.cpp81 unsigned pixelArrayLength = srcPixelArray->length(); local
82 for (unsigned pixelOffset = 0; pixelOffset < pixelArrayLength; pixelOffset += 4) {
/macosx-10.10/WebCore-7600.1.25/rendering/shapes/
H A DShape.cpp189 unsigned pixelArrayLength = pixelArray->length(); local
196 if (static_cast<unsigned>(imageRect.width() * imageRect.height() * 4) == pixelArrayLength) {

Completed in 84 milliseconds