HomeSort by relevance Sort by last modified time
    Searched refs:bytesPerLine (Results 1 - 25 of 27) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/win/
BitmapInfo.h 56 unsigned bytesPerLine() const { return (width() * bmiHeader.biBitCount + 7) / 8; }
57 unsigned paddedBytesPerLine() const { return (bytesPerLine() + 3) & ~0x3; }
  /frameworks/native/libs/utils/
TextOutput.cpp 133 HexDump::HexDump(const void *buf, size_t size, size_t bytesPerLine)
136 , mBytesPerLine(bytesPerLine)
141 if (bytesPerLine >= 16) mAlignment = 4;
142 else if (bytesPerLine >= 8) mAlignment = 2;
148 printHexData(0, val.buffer(), val.size(), val.bytesPerLine(),
Debug.cpp 172 size_t bytesPerLine, int32_t singleLineBytesCutoff,
177 if (bytesPerLine >= 16) alignment = 4;
178 else if (bytesPerLine >= 8) alignment = 2;
210 if (bytesPerLine > maxBytesPerLine) bytesPerLine = maxBytesPerLine;
223 for (offset = 0; ; offset += bytesPerLine, pos += bytesPerLine) {
235 for (word = 0; word < bytesPerLine; ) {
245 for (index = 0; index < alignment || (alignment == 0 && index < bytesPerLine); index++) {
285 for (index = 0; index < bytesPerLine; index++)
    [all...]
  /frameworks/native/include/utils/
TextOutput.h 97 HexDump(const void *buf, size_t size, size_t bytesPerLine=16);
100 inline HexDump& setBytesPerLine(size_t bytesPerLine);
107 inline size_t bytesPerLine() const;
167 inline HexDump& HexDump::setBytesPerLine(size_t bytesPerLine) {
168 mBytesPerLine = bytesPerLine; return *this;
182 inline size_t HexDump::bytesPerLine() const { return mBytesPerLine; }
Debug.h 59 size_t bytesPerLine=16, int32_t singleLineBytesCutoff=16,
  /external/webkit/Source/WebCore/platform/graphics/qt/
ImageBufferQt.cpp 181 const int bytesPerLine = image.bytesPerLine();
184 quint32* scanLine = reinterpret_cast_ptr<quint32*>(bits + y * bytesPerLine);
236 const int bytesPerLine = image.bytesPerLine();
243 const quint32* scanLine = reinterpret_cast_ptr<const quint32*>(bits + (y + originy) * bytesPerLine);
265 const quint32* scanLine = reinterpret_cast_ptr<const quint32*>(bits + (y + originy) * bytesPerLine);
339 const int bytesPerLine = image.bytesPerLine();
345 quint32* destScanLine = reinterpret_cast_ptr<quint32*>(bits + y * bytesPerLine);
    [all...]
ContextShadowQt.cpp 152 m_layerImage.bytesPerLine());
  /external/qemu/distrib/sdl-1.2.15/src/video/qtopia/
SDL_QWin.cc 252 int buflineadd = my_image->bytesPerLine();
254 buf += (rect.left()<<1) + rect.top() * my_image->bytesPerLine();
288 int buflineadd = my_image->bytesPerLine();
290 buf += (rect.left()<<1) + rect.top() * my_image->bytesPerLine();
301 int buflineadd = my_image->bytesPerLine() - (rect.width() << 1);
311 buf += my_image->bytesPerLine() * (rect.top() + rect.height()) -
SDL_sysvideo.cc 310 current->pitch = qimage->bytesPerLine();
  /system/extras/tests/lib/testUtil/
testUtil.c 321 const unsigned int bytesPerLine = 16;
329 if (((ptr - start) % bytesPerLine) == 0) {
  /external/quake/quake/src/QW/client/
vid_win.c     [all...]
  /external/quake/quake/src/WinQuake/
vid_win.cpp 1352 vid.rowbytes = vid.conrowbytes = dibdc->mi.bytesPerLine;
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
DrawUtils.java 318 int srcIndex = srcY * srcData.bytesPerLine + srcX * bytesPerPixel;
  /external/webkit/Source/WebCore/plugins/qt/
PluginViewQt.cpp 228 imageExpose.stride = image->bytesPerLine();
246 imageExpose.stride = m_image.bytesPerLine();
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jar 
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 
  /external/quake/quake/src/QW/scitech/include/
mgraph.h 703 m_int bytesPerLine; /* Bytes per line value for surface */
817 m_int bytesPerLine; /* Number of bytes in a line */
    [all...]
  /external/quake/quake/src/WinQuake/scitech/INCLUDE/
MGRAPH.H 703 m_int bytesPerLine; /* Bytes per line value for surface */
817 m_int bytesPerLine; /* Number of bytes in a line */
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
pdebuild.jar 
  /prebuilts/tools/common/m2/internal/com/android/external/eclipse/swt/3.5.0/
swt-3.5.0.jar 
  /prebuilts/tools/darwin-x86/swt/
swt.jar 
  /prebuilts/tools/darwin-x86_64/swt/
swt.jar 
  /prebuilts/tools/linux-x86/swt/
swt.jar 
  /prebuilts/tools/linux-x86_64/swt/
swt.jar 

Completed in 2628 milliseconds

1 2