OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pixelArrayLength
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
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);
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 342 milliseconds