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

  /frameworks/base/core/java/android/text/
PackedObjectVector.java 138 int destrow = i - (mRowGapStart + mRowGapLength) + mRowGapStart; local
144 mValues[destrow * mColumns + j] = val;
154 int destrow = i - where + mRowGapStart + mRowGapLength - moving; local
160 mValues[destrow * mColumns + j] = val;
PackedIntVector.java 324 int destrow = i - gapend + mRowGapStart; local
333 if (destrow >= valuegap[j]) {
337 values[destrow * columns + j] = val;
348 int destrow = i - where + gapend - moving; local
357 if (destrow >= valuegap[j]) {
361 values[destrow * columns + j] = val;
  /external/webkit/WebCore/platform/graphics/skia/
ImageBufferSkia.cpp 163 unsigned char* destRow = data + destY * destBytesPerRow + destX * 4;
168 unsigned char* destPixel = &destRow[x * 4];
185 destRow += destBytesPerRow;
239 uint32_t* destRow = bitmap.getAddr32(destX, destY + y);
243 destRow[x] = SkPreMultiplyARGB(srcPixel[3], srcPixel[0],
246 destRow[x] = SkPackARGB32(srcPixel[3], srcPixel[0],

Completed in 99 milliseconds