Searched defs:destx (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/cg/
H A DImageBufferDataCG.cpp124 int destx = 0; local
126 destx = -originx;
149 unsigned char* destRows = data + desty * destBytesPerRow + destx * 4;
261 int destx = destPoint.x() + sourceRect.x(); local
262 ASSERT(destx >= 0);
263 ASSERT(destx < size.width());
270 int width = endx - destx;
293 destRows = reinterpret_cast<unsigned char*>(m_data) + desty * destBytesPerRow + destx * 4;
333 destRows = (unsigned char*)(IOSurfaceGetBaseAddress(surface)) + desty * destBytesPerRow + destx * 4;
/external/qemu/distrib/sdl-1.2.12/src/video/xbios/
H A DSDL_xbios.c781 int destx; local
786 destx = (XBIOS_width - surface->w) >> 1;
787 destx &= ~15;
788 destscr += destx;
/external/webkit/Source/WebCore/platform/graphics/android/
H A DImageBufferAndroid.cpp139 int destx = 0; local
141 destx = -originx;
164 unsigned char* destRows = data + desty * destBytesPerRow + destx * 4;
198 int destx = destPoint.x() + sourceRect.x(); local
199 ASSERT(destx >= 0);
200 ASSERT(destx < m_size.width());
207 int numColumns = endx - destx;
224 SkPMColor* dstRows = dst.getAddr32(destx, desty);
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DImageBufferCairo.cpp172 int destx = 0; local
174 destx = -originx;
196 unsigned char* destRows = dataDst + desty * destBytesPerRow + destx * 4;
239 int destx = destPoint.x() + sourceRect.x(); local
240 ASSERT(destx >= 0);
241 ASSERT(destx < size.width());
248 int numColumns = endx - destx;
269 unsigned* pixel = row + x + destx;
282 destx, desty,
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DImageBufferQt.cpp210 int destx = 0; local
212 destx = -originx;
239 quint32* destRows = reinterpret_cast_ptr<quint32*>(&data[desty * rect.width() * 4 + destx * 4]);
312 int destx = destPoint.x() + sourceRect.x(); local
313 ASSERT(destx >= 0);
314 ASSERT(destx < size.width());
321 int numColumns = endx - destx;
378 data.m_painter->drawImage(destx, desty, image);

Completed in 88 milliseconds