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

  /external/llvm/test/Transforms/LoopStrengthReduce/
2011-10-14-IntPtr.ll 11 define void @test(i32 %rowStride) ssp align 2 {
13 %cond = select i1 undef, i32 %rowStride, i32 4
  /external/eigen/Eigen/src/Core/
MapBase.h 71 using Base::rowStride;
92 return m_data[col * colStride() + row * rowStride()];
103 return this->m_data[col * colStride() + row * rowStride()];
116 (m_data + (col * colStride() + row * rowStride()));
189 using Base::rowStride;
203 return this->m_data[col * colStride() + row * rowStride()];
216 (this->m_data + (col * colStride() + row * rowStride()), x);
DenseCoeffsBase.h 258 void rowStride();
582 * \sa outerStride(), rowStride(), colStride()
592 * \sa innerStride(), rowStride(), colStride()
609 inline Index rowStride() const
616 * \sa innerStride(), outerStride(), rowStride()
653 * \sa outerStride(), rowStride(), colStride()
663 * \sa innerStride(), rowStride(), colStride()
680 inline Index rowStride() const
687 * \sa innerStride(), outerStride(), rowStride()
DenseBase.h 86 using Base::rowStride;
  /external/chromium/chrome/browser/ui/gtk/
nine_box.cc 182 int rowstride = gdk_pixbuf_get_rowstride(pixbuf); local
186 if (width * 4 > rowstride) {
193 guchar* pixel = &pixels[i * rowstride + j * 4];
  /device/generic/goldfish/camera/fake-pipeline2/
JpegCompressor.cpp 176 size_t rowStride = mAuxBuffer.stride * 3;
182 (mAuxBuffer.img + (i + mCInfo.next_scanline) * rowStride);
  /frameworks/av/services/camera/libcameraservice/camera2/
JpegCompressor.cpp 116 size_t rowStride = mAuxBuffer->stride;// * 3;
122 (mAuxBuffer->data + (i + mCInfo.next_scanline) * rowStride);
  /external/webkit/Source/WebCore/platform/graphics/
ContextShadow.cpp 109 void ContextShadow::blurLayerImage(unsigned char* imageData, const IntSize& size, int rowStride)
129 int stride = (!k) ? 4 : rowStride;
130 int delta = (!k) ? rowStride : 4;
ShadowBlur.cpp 195 void ShadowBlur::blurLayerImage(unsigned char* imageData, const IntSize& size, int rowStride)
245 int delta = rowStride;
302 stride = rowStride;
    [all...]
  /external/webkit/Tools/DumpRenderTree/gtk/
ImageDiff.cpp 77 int rowStride = gdk_pixbuf_get_rowstride(image);
81 unsigned char* diffPixel = diffPixels + (y * rowStride) + (x * 3);
  /external/eigen/test/
block.cpp 159 Index rowStride = m.rowStride();
165 VERIFY(m.coeff(i,j) == data[i*rowStride + j*colStride]);
  /external/skia/src/gpu/gl/debug/
GrGLCreateDebugInterface.cpp 296 GrGLint rowStride = 0; // number of components (not bytes) to skip
298 rowStride = componentsPerPixel * pixelsInRow;
303 rowStride = static_cast<GrGLint>(alignment * fTemp / componentSize);
309 scanline += rowStride;
    [all...]

Completed in 869 milliseconds