HomeSort by relevance Sort by last modified time
    Searched defs:pixelIndex (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/filters/
FEConvolveMatrix.cpp 347 int pixelIndex = getPixelValue(paintingData, kernelPixelX, kernelPixelY);
348 if (pixelIndex >= 0) {
349 totals[0] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.srcPixelArray->get(pixelIndex));
350 totals[1] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.srcPixelArray->get(pixelIndex + 1));
351 totals[2] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.srcPixelArray->get(pixelIndex + 2));
353 if (!preserveAlphaValues && pixelIndex >= 0)
354 totals[3] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.srcPixelArray->get(pixelIndex + 3));
  /frameworks/base/telephony/java/com/android/internal/telephony/
IccUtils.java 399 int pixelIndex = 0;
402 while (pixelIndex < numOfPixels) {
404 if (pixelIndex % 8 == 0) {
408 pixels[pixelIndex++] = bitToRGB((currentByte >> bitIndex-- ) & 0x01);
411 if (pixelIndex != numOfPixels) {
  /frameworks/base/telephony/java/com/android/internal/telephony/cat/
IconLoader.java 244 int pixelIndex = 0;
247 while (pixelIndex < numOfPixels) {
249 if (pixelIndex % 8 == 0) {
253 pixels[pixelIndex++] = bitToBnW((currentByte >> bitIndex-- ) & 0x01);
256 if (pixelIndex != numOfPixels) {
302 int pixelIndex = 0;
308 while (pixelIndex < numOfPixels) {
316 pixels[pixelIndex++] = Color.rgb(clut[clutIndex],

Completed in 325 milliseconds