Searched refs:rowStride (Results 1 - 25 of 25) sorted by relevance

/external/eigen/Eigen/src/Core/
H A DMapBase.h80 using Base::rowStride;
105 return m_data[colId * colStride() + rowId * rowStride()];
120 return this->m_data[colId * colStride() + rowId * rowStride()];
136 (m_data + (colId * colStride() + rowId * rowStride()));
237 using Base::rowStride;
254 return this->m_data[col * colStride() + row * rowStride()];
268 (this->m_data + (col * colStride() + row * rowStride()), val);
H A DDenseCoeffsBase.h284 void rowStride();
493 * \sa outerStride(), rowStride(), colStride()
504 * \sa innerStride(), rowStride(), colStride()
523 inline Index rowStride() const function in class:Eigen::DenseCoeffsBase
530 * \sa innerStride(), outerStride(), rowStride()
567 * \sa outerStride(), rowStride(), colStride()
578 * \sa innerStride(), rowStride(), colStride()
597 inline Index rowStride() const function in class:Eigen::DenseCoeffsBase
604 * \sa innerStride(), outerStride(), rowStride()
H A DCoreEvaluators.h834 return m_data[col * colStride() + row * rowStride()];
846 return m_data[col * colStride() + row * rowStride()];
859 PointerType ptr = m_data + row * rowStride() + col * colStride();
874 PointerType ptr = m_data + row * rowStride() + col * colStride();
886 inline Index rowStride() const { return XprType::IsRowMajor ? m_outerStride.value() : m_innerStride.value(); } function in struct:Eigen::internal::mapbase_evaluator
H A DDenseBase.h94 using Base::rowStride;
/external/mesa3d/src/mesa/swrast/
H A Ds_depth.c221 const GLint rowStride = srb->RowStride; local
224 zbuffer[i] = *((GLuint *) (map + y[i] * rowStride + x[i] * 4));
230 const GLint rowStride = srb->RowStride; local
233 const GLubyte *src = map + y[i] * rowStride+ x[i] * bpp;
256 const GLint rowStride = srb->RowStride; local
259 GLuint *dst = (GLuint *) (map + y[i] * rowStride + x[i] * 4);
267 const GLint rowStride = srb->RowStride; local
270 void *dst = map + y[i] * rowStride + x[i] * bpp;
534 GLint rowStride, i, j; local
557 mapMode, &map, &rowStride);
664 GLint rowStride, i, j; local
[all...]
H A Ds_stencil.c302 const GLint rowStride = srb->RowStride; local
305 stencil[i] = *(map + y[i] * rowStride + x[i]);
311 const GLint rowStride = srb->RowStride; local
314 const GLubyte *src = map + y[i] * rowStride + x[i] * bpp;
558 GLint rowStride, i, j; local
581 mapMode, &map, &rowStride);
599 map += rowStride;
602 else if (rowStride == width) {
610 map += rowStride;
624 map += rowStride;
[all...]
H A Ds_clear.c59 GLint rowStride; local
69 mapMode, &map, &rowStride);
97 map += rowStride; \
132 map += rowStride; \
H A Ds_copypix.c512 GLint rowStride; local
517 &map, &rowStride);
523 srcMap = map + srcY * rowStride + srcX * pixelBytes;
524 dstMap = map + dstY * rowStride + dstX * pixelBytes;
529 srcMap += rowStride * (height - 1);
530 dstMap += rowStride * (height - 1);
531 srcRowStride = -rowStride;
532 dstRowStride = -rowStride;
536 srcRowStride = rowStride;
537 dstRowStride = rowStride;
[all...]
H A Ds_blit.c217 GLint rowStride; local
223 &map, &rowStride);
229 srcMap = map + srcYpos * rowStride + srcXpos * formatSize;
230 dstMap = map + dstYpos * rowStride + dstXpos * formatSize;
235 srcMap += rowStride * (readRb->Height - 1);
236 dstMap += rowStride * (readRb->Height - 1);
237 srcRowStride = -rowStride;
238 dstRowStride = -rowStride;
242 srcRowStride = rowStride;
243 dstRowStride = rowStride;
[all...]
H A Ds_context.h465 const GLint rowStride = srb->RowStride; local
474 return (GLubyte *) srb->Map + y * rowStride + x * bpp;
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_mipmap_tree.h98 unsigned rowStride,
H A Dradeon_mipmap_tree.c75 unsigned rowStride,
85 return rowStride * ((height + blockHeight - 1) / blockHeight) * depth;
96 return rowStride * height * depth;
73 get_texture_image_size( gl_format format, unsigned rowStride, unsigned height, unsigned depth, unsigned tiling) argument
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_mipmap_tree.h98 unsigned rowStride,
H A Dradeon_mipmap_tree.c75 unsigned rowStride,
85 return rowStride * ((height + blockHeight - 1) / blockHeight) * depth;
96 return rowStride * height * depth;
73 get_texture_image_size( gl_format format, unsigned rowStride, unsigned height, unsigned depth, unsigned tiling) argument
/external/libvncserver/client_examples/
H A DSDLvncviewer.c25 static int realWidth, realHeight, bytesPerPixel, rowStride; variable
191 case 1: ((uint8_t *)sdlPixels)[x + y * rowStride] = v; break;
192 case 2: ((uint16_t *)sdlPixels)[x + y * rowStride] = v; break;
193 case 4: ((uint32_t *)sdlPixels)[x + y * rowStride] = v; break;
268 rowStride = client->width;
286 rowStride = sdl->pitch / (depth / 8);
/external/mesa3d/src/mesa/drivers/osmesa/
H A Dosmesa.c546 GLint rowStride; /* in bytes */ local
549 rowStride = osmesa->userRowLength * bpp;
551 rowStride = rb->Width * bpp;
556 *rowStrideOut = -rowStride;
559 *rowStrideOut = rowStride;
562 *mapOut = (GLubyte *) srb->Buffer + y * rowStride + x * bpp;
/external/eigen/test/
H A Dblock.cpp209 Index rowStride = m.rowStride(); local
215 VERIFY(m.coeff(i,j) == data[i*rowStride + j*colStride]);
/external/skia/tools/gpu/gl/debug/
H A DDebugGLTestContext.cpp187 GrGLint rowStride = 0; // number of components (not bytes) to skip variable
189 rowStride = componentsPerPixel * pixelsInRow;
194 rowStride = static_cast<GrGLint>(alignment * fTemp / componentSize);
200 scanline += rowStride;
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_fbo.c121 GLint rowStride = srb->RowStride; local
122 *out_map = (GLubyte *) srb->Buffer + y * rowStride + x * bpp;
123 *out_stride = rowStride;
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_fbo.c121 GLint rowStride = srb->RowStride; local
122 *out_map = (GLubyte *) srb->Buffer + y * rowStride + x * bpp;
123 *out_stride = rowStride;
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_fbo.c121 GLint rowStride = srb->RowStride; local
122 *out_map = (GLubyte *) srb->Buffer + y * rowStride + x * bpp;
123 *out_stride = rowStride;
/external/deqp/framework/qphelper/
H A DqpTestLog.c720 static deBool compressImagePNG (Buffer* buffer, qpImageFormat imageFormat, int width, int height, int rowStride, const void* data) argument
738 rowPointers[ndx] = (png_byte*)((const deUint8*)data + ndx*rowStride);
/external/robolectric/v3/runtime/
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 2491 milliseconds