Searched refs:destBytesPerRow (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/cg/
H A DImageBufferDataCG.cpp148 unsigned destBytesPerRow = 4 * rect.width(); local
149 unsigned char* destRows = data + desty * destBytesPerRow + destx * 4;
169 dst.rowBytes = destBytesPerRow;
189 destRows += destBytesPerRow;
205 scanlineData.destRowBytes = destBytesPerRow;
218 dest.rowBytes = destBytesPerRow;
243 destRows += destBytesPerRow;
288 unsigned destBytesPerRow; local
292 destBytesPerRow = 4 * size.width();
293 destRows = reinterpret_cast<unsigned char*>(m_data) + desty * destBytesPerRow
[all...]
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DImageBufferHaiku.cpp130 uint8* destRows, unsigned destBytesPerRow,
146 destRows += destBytesPerRow;
151 uint8* destRows, unsigned destBytesPerRow,
170 destRows += destBytesPerRow;
174 destRows, destBytesPerRow,
180 uint8* destRows, unsigned destBytesPerRow,
206 destRows += destBytesPerRow;
210 destRows, destBytesPerRow,
235 unsigned destBytesPerRow = 4 * rect.width(); local
240 + (rect.y() - static_cast<int>(sourceRect.top)) * destBytesPerRow;
129 convertFromData(const uint8* sourceRows, unsigned sourceBytesPerRow, uint8* destRows, unsigned destBytesPerRow, unsigned rows, unsigned columns) argument
150 convertFromInternalData(const uint8* sourceRows, unsigned sourceBytesPerRow, uint8* destRows, unsigned destBytesPerRow, unsigned rows, unsigned columns, bool premultiplied) argument
179 convertToInternalData(const uint8* sourceRows, unsigned sourceBytesPerRow, uint8* destRows, unsigned destBytesPerRow, unsigned rows, unsigned columns, bool premultiplied) argument
293 uint32 destBytesPerRow = imageData.m_bitmap.BytesPerRow(); local
[all...]
/external/webkit/Source/WebCore/platform/graphics/android/
H A DImageBufferAndroid.cpp161 unsigned destBytesPerRow = 4 * rect.width(); local
164 unsigned char* destRows = data + desty * destBytesPerRow + destx * 4;
176 destRows += destBytesPerRow;
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DImageBufferCairo.cpp194 unsigned destBytesPerRow = 4 * rect.width(); local
196 unsigned char* destRows = dataDst + desty * destBytesPerRow + destx * 4;
212 destRows += destBytesPerRow;
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DImageBufferSkia.cpp223 unsigned destBytesPerRow = 4 * rect.width(); local
228 unsigned char* destRow = data + destY * destBytesPerRow + destX * 4;
251 destRow += destBytesPerRow;

Completed in 73 milliseconds