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

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/filters/
FECompositeArithmeticNEON.h 48 uint32_t* destinationPixel = reinterpret_cast<uint32_t*>(destination);
49 uint32_t* destinationEndPixel = destinationPixel + (pixelArrayLength >> 2);
51 while (destinationPixel < destinationEndPixel) {
56 temporary1 = vset_lane_u32(*destinationPixel, temporary1, 0);
70 *destinationPixel++ = vget_lane_u32(vreinterpret_u32_u8(temporary4), 0);
FEGaussianBlurNEON.h 41 uint32_t* destinationPixel = reinterpret_cast<uint32_t*>(dstPixelArray->data());
61 storeFloatAsRGBA8(result, destinationPixel + pixelOffset);
FEBlendNEON.h 114 uint8_t* destinationPixel = reinterpret_cast<uint8_t*>(dstPixelArray);
153 vst1_u8(destinationPixel + colorOffset, vmovn_u16(result));
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FilterEffect.cpp 354 unsigned char *destinationPixel = destination->data() + ((yDest * rect.width()) + xDest) * 4;
358 memcpy(destinationPixel, sourcePixel, size);
359 destinationPixel += destinationScanline;

Completed in 2606 milliseconds