Home
last modified time | relevance | path

Searched refs:rowSize (Results 1 – 17 of 17) sorted by relevance

/external/v8/benchmarks/
Dnavier-stokes.js92 x[i] = x[i + rowSize];
93 x[i + (height+1) *rowSize] = x[i + height * rowSize];
97 x[j * rowSize] = -x[1 + j * rowSize];
98 x[(width + 1) + j * rowSize] = -x[width + j * rowSize];
102 x[i] = -x[i + rowSize];
103 x[i + (height + 1) * rowSize] = -x[i + height * rowSize];
107 x[j * rowSize] = x[1 + j * rowSize];
108 x[(width + 1) + j * rowSize] = x[width + j * rowSize];
112 x[i] = x[i + rowSize];
113 x[i + (height + 1) * rowSize] = x[i + height * rowSize];
[all …]
/external/mesa3d/src/glx/
Dpixel.c94 GLint components, groupsPerRow, rowSize, padding, elementsPerRow; in FillBitmap() local
104 rowSize = (groupsPerRow * components + 7) >> 3; in FillBitmap()
105 padding = (rowSize % alignment); in FillBitmap()
107 rowSize += alignment - padding; in FillBitmap()
109 start = ((const GLubyte *) userdata) + skipRows * rowSize + in FillBitmap()
154 start += rowSize; in FillBitmap()
176 GLint components, elementSize, rowSize, padding, groupsPerRow, groupSize; in __glFillImage() local
204 rowSize = groupsPerRow * groupSize; in __glFillImage()
205 padding = (rowSize % alignment); in __glFillImage()
207 rowSize += alignment - padding; in __glFillImage()
[all …]
/external/pdfium/fxbarcode/common/
DBC_CommonBitMatrix.cpp34 int32_t rowSize = (m_height + 31) >> 5; in Init() local
35 m_rowSize = rowSize; in Init()
43 int32_t rowSize = (width + 31) >> 5; in Init() local
44 m_rowSize = rowSize; in Init()
/external/eigen/unsupported/Eigen/src/SparseExtra/
DBlockSparseMatrix.h184 Index rowSize = m_spblockmat.blockRowsIndex(bi+1) - startRow;
185 return m_vec.middleRows(startRow, rowSize);
190 Index rowSize = m_spblockmat.blockRowsIndex(bi+1) - startRow;
191 return m_vec.block(startRow, j, rowSize, 1);
224 Index rowSize = m_spblockmat.blockRowsIndex(bi+1) - startRow;
225 return m_vec.middleRows(startRow, rowSize);
230 Index rowSize = m_spblockmat.blockRowsIndex(bi+1) - startRow;
231 return m_vec.block(startRow, j, rowSize, 1);
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineVertexUtil.cpp995 const float rowSize = 2.0f / (float)rows; in createQuadMosaic() local
1005 Vec4(-1.0f + (float)columnNdx * columnSize, -1.0f + (float)rowNdx * rowSize, 0.0f, 1.0f), in createQuadMosaic()
1010 Vec4(lowerLeftVertex.position.x(), lowerLeftVertex.position.y() + rowSize, 0.0f, 1.0f), in createQuadMosaic()
1020 …Vec4(lowerLeftVertex.position.x() + columnSize, lowerLeftVertex.position.y() + rowSize, 0.0f, 1.0f… in createQuadMosaic()
/external/icu/icu4c/source/common/
Drbbitblb.cpp1272 int32_t rowSize; in getTableSize() local
1283 rowSize = offsetof(RBBIStateTableRow, fNextState) + sizeof(uint16_t)*numCols; in getTableSize()
1284 size += numRows * rowSize; in getTableSize()
1457 int32_t rowSize; in getSafeTableSize() local
1468 rowSize = offsetof(RBBIStateTableRow, fNextState) + sizeof(uint16_t)*numCols; in getSafeTableSize()
1469 size += numRows * rowSize; in getSafeTableSize()
/external/deqp/modules/gles31/functional/
Des31fFboTestUtil.cpp450 int rowSize = deAlign32(readFormat.getPixelSize()*width, alignment); in readPixels() local
451 vector<deUint8> data (rowSize*height); in readPixels()
456 tcu::ConstPixelBufferAccess src(readFormat, width, height, 1, rowSize, 0, &data[0]); in readPixels()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DRBBITableBuilder.java1064 int rowSize = 8 + 2*numCols;
1065 size += numRows * rowSize;
1217 int rowSize = 8 + 2*numCols;
1218 size += numRows * rowSize;
/external/icu/android_icu4j/src/main/java/android/icu/text/
DRBBITableBuilder.java1065 int rowSize = 8 + 2*numCols;
1066 size += numRows * rowSize;
1218 int rowSize = 8 + 2*numCols;
1219 size += numRows * rowSize;
/external/deqp/external/vulkancts/modules/vulkan/ycbcr/
DvktYCbCrUtil.cpp457 const size_t rowSize = planeSize / planeH; in fillImageMemory() local
459 const void* const srcPtr = ((const deUint8*)imageData.getPlanePtr(planeNdx)) + row * rowSize; in fillImageMemory()
461 deMemcpy(dstPtr, srcPtr, rowSize); in fillImageMemory()
682 const size_t rowSize = planeSize / planeH; in readImageMemory() local
684 void* const dstPtr = ((deUint8*)imageData->getPlanePtr(planeNdx)) + row * rowSize; in readImageMemory()
686 deMemcpy(dstPtr, srcPtr, rowSize); in readImageMemory()
/external/deqp/modules/gles3/functional/
Des3fFboTestUtil.cpp896 int rowSize = deAlign32(readFormat.getPixelSize()*width, alignment); in readPixels() local
897 vector<deUint8> data (rowSize*height); in readPixels()
902 tcu::ConstPixelBufferAccess src(readFormat, width, height, 1, rowSize, 0, &data[0]); in readPixels()
/external/dng_sdk/source/
Ddng_read_image.cpp2242 uint32 rowSize = 0; in ReadTile() local
2243 if (!SafeUint32Mult (rowStep, buffer.fPixelSize, &rowSize) || in ReadTile()
2244 !SafeUint32Add (bufferSize, rowSize, &bufferSize)) in ReadTile()
/external/swiftshader/src/OpenGL/libGLESv2/
DProgram.cpp622 const int rowSize = VariableRowCount(type); in setUniformMatrixfv() local
628 for(int j = 0; j < rowSize; ++j) in setUniformMatrixfv()
630 dst[i * rowSize + j] = value[j * colSize + i]; in setUniformMatrixfv()
/external/skqp/src/core/
DSkAAClip.cpp103 size_t rowSize = ComputeRowSizeForWidth(width); in AllocRect() local
104 RunHead* head = RunHead::Alloc(1, rowSize); in AllocRect()
/external/skia/src/core/
DSkAAClip.cpp103 size_t rowSize = ComputeRowSizeForWidth(width); in AllocRect() local
104 RunHead* head = RunHead::Alloc(1, rowSize); in AllocRect()
/external/skia/src/gpu/gl/
DGrGLGpu.cpp1590 size_t rowSize = GrBytesPerPixel(desc.fConfig) * desc.fWidth; in onCreateTexture() local
1591 size_t size = rowSize * desc.fHeight; in onCreateTexture()
/external/skqp/src/gpu/gl/
DGrGLGpu.cpp1555 size_t rowSize = GrBytesPerPixel(desc.fConfig) * desc.fWidth; in onCreateTexture() local
1556 size_t size = rowSize * desc.fHeight; in onCreateTexture()