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

12

/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
H A DDynamicTableModel.java44 private int numRows; field in class:DynamicTableModel
56 * @param numRows
58 public DynamicTableModel(int numColumns, int numRows) { argument
59 this(numColumns, numRows, TableOrder.ROW_MAJOR);
63 public DynamicTableModel(int numColumns, int numRows, TableOrder order) { argument
68 this.numRows = numRows;
130 axisElements = numRows;
151 return numRows;
154 public void setNumRows(int numRows) { argument
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fPrimitiveRestartTests.cpp271 const int numRows = 20; local
273 for (int row = 0; row < numRows; row++)
277 float fx = -1.0f + 2.0f * ((float)col + 0.5f) / (float)numRows;
278 float fy = -1.0f + 2.0f * ((float)row + 0.5f) / (float)numRows;
286 if (row < numRows - 1) // Add a restart after all but last row.
296 // Generate a numRows x numCols arrangement of line polygons of different vertex counts.
299 const int numRows = 4; local
302 for (int row = 0; row < numRows; row++)
304 float centerY = -1.0f + 2.0f * ((float)row + 0.5f) / (float)numRows;
314 float fy = centerY + 0.9f * deFloatSin((float)i*2.0f*DE_PI / (float)numVertices) / (float)numRows;
366 const int numRows = 4; local
408 const int numRows = 3*7; local
[all...]
H A Des3fRasterizationTests.cpp1405 const int numRows = 4;
1410 outData.resize(6 * numRows * numColumns);
1413 for (int row = 0; row < numRows; ++row)
1415 const tcu::Vec2 center = tcu::Vec2((row + 0.5f) / numRows * 2.0f - 1.0f, (col + 0.5f) / numColumns * 2.0f - 1.0f);
1416 const float rotation = (iteration * numColumns * numRows + col * numRows + row) / (float)(m_iterationCount * numColumns * numRows) * DE_PI / 2.0f;
1429 outData[6 * (col * numRows + row) + 0] = tcu::Vec4(quad[0].x(), quad[0].y(), 0.0f, 1.0f);
1430 outData[6 * (col * numRows + row) + 1] = tcu::Vec4(quad[1].x(), quad[1].y(), 0.0f, 1.0f);
1431 outData[6 * (col * numRows
[all...]
H A Des3fInstancedRenderingTests.cpp495 int numRows = glu::getDataTypeMatrixNumRows(m_rgbAttrType); local
498 glVertexAttribPointer(curLoc, numRows, GL_FLOAT, GL_FALSE, numCols*numRows*sizeof(float), attrPtr);
H A Des3fShaderIndexingTests.cpp809 int numRows = getDataTypeMatrixNumRows(varType); local
811 DataType vecType = getDataTypeFloatVec(numRows);
939 if (numRows == 2)
941 else if (numRows == 3)
/external/libvncserver/libvncclient/
H A Dtight.c81 static void FilterCopyBPP (rfbClient* client, int numRows, CARDBPP *destBuffer);
82 static void FilterPaletteBPP (rfbClient* client, int numRows, CARDBPP *destBuffer);
83 static void FilterGradientBPP (rfbClient* client, int numRows, CARDBPP *destBuffer);
101 int bufferSize, rowSize, numRows, portionLen, rowsProcessed, extraBytes; local
272 numRows = (bufferSize - zs->avail_out) / rowSize;
274 filterFn(client, numRows, (CARDBPP *)buffer2);
276 extraBytes = bufferSize - zs->avail_out - numRows * rowSize;
278 memcpy(client->buffer, &client->buffer[numRows * rowSize], extraBytes);
280 CopyRectangle(client, (uint8_t *)buffer2, rx, ry+rowsProcessed, rw, numRows); local
282 rowsProcessed += numRows;
320 FilterCopyBPP(rfbClient* client, int numRows, CARDBPP *dst) argument
359 FilterGradient24(rfbClient* client, int numRows, uint32_t *dst) argument
398 FilterGradientBPP(rfbClient* client, int numRows, CARDBPP *dst) argument
490 FilterPaletteBPP(rfbClient* client, int numRows, CARDBPP *dst) argument
[all...]
/external/deqp/modules/gles2/scripts/
H A Dgenutil.py574 def __init__ (self, numCols, numRows, scalars):
575 assert len(scalars) == numRows*numCols
577 self.numRows = numRows
581 def identity (numCols, numRows):
584 for row in range(0, numRows):
586 return Mat(numCols, numRows, scalars)
590 assert 0 <= rowNdx and rowNdx < self.numRows
591 return self.scalars[colNdx*self.numRows + rowNdx]
595 assert 0 <= rowNdx and rowNdx < self.numRows
[all...]
H A Dgen-conversions.py77 def combineMat(numCols, numRows, comps):
81 res.append(Mat(numCols, numRows, scalars))
/external/deqp/modules/gles3/scripts/
H A Dgenutil.py717 def __init__ (self, numCols, numRows, scalars):
718 assert len(scalars) == numRows*numCols
720 self.numRows = numRows
724 def fromScalar (numCols, numRows, scalar):
727 for row in range(0, numRows):
729 return Mat(numCols, numRows, scalars)
732 def identity (numCols, numRows):
733 return Mat.fromScalar(numCols, numRows, 1.0)
737 assert 0 <= rowNdx and rowNdx < self.numRows
[all...]
H A Dgen-conversions.py80 def combineMat(numCols, numRows, comps):
84 res.append(Mat(numCols, numRows, scalars))
/external/deqp/modules/gles31/scripts/
H A Dgenutil.py719 def __init__ (self, numCols, numRows, scalars):
720 assert len(scalars) == numRows*numCols
722 self.numRows = numRows
726 def fromScalar (numCols, numRows, scalar):
729 for row in range(0, numRows):
731 return Mat(numCols, numRows, scalars)
734 def identity (numCols, numRows):
735 return Mat.fromScalar(numCols, numRows, 1.0)
739 assert 0 <= rowNdx and rowNdx < self.numRows
[all...]
/external/skia/src/codec/
H A DSkSwizzler.h138 * @param numRows
164 uint32_t numRows, uint32_t colorOrIndex, const SkPMColor* colorTable);
H A DSkSwizzler.cpp459 uint32_t numRows, uint32_t colorOrIndex, const SkPMColor* colorTable) {
461 SkASSERT(numRows <= (uint32_t) dstInfo.height());
464 const size_t bytesToFill = dstInfo.makeWH(dstInfo.width(), numRows).getSafeSize(dstRowBytes);
487 for (uint32_t row = 0; row < numRows; row++) {
458 Fill(void* dstStartRow, const SkImageInfo& dstInfo, size_t dstRowBytes, uint32_t numRows, uint32_t colorOrIndex, const SkPMColor* colorTable) argument
/external/deqp/modules/gles2/functional/
H A Des2fRasterizationTests.cpp1128 const int numRows = 4;
1133 outData.resize(6 * numRows * numColumns);
1136 for (int row = 0; row < numRows; ++row)
1138 const tcu::Vec2 center = tcu::Vec2((row + 0.5f) / numRows * 2.0f - 1.0f, (col + 0.5f) / numColumns * 2.0f - 1.0f);
1139 const float rotation = (iteration * numColumns * numRows + col * numRows + row) / (float)(m_iterationCount * numColumns * numRows) * DE_PI / 2.0f;
1152 outData[6 * (col * numRows + row) + 0] = tcu::Vec4(quad[0].x(), quad[0].y(), 0.0f, 1.0f);
1153 outData[6 * (col * numRows + row) + 1] = tcu::Vec4(quad[1].x(), quad[1].y(), 0.0f, 1.0f);
1154 outData[6 * (col * numRows
[all...]
H A Des2fBufferTestUtil.cpp452 int numRows = numQuads/maxQuadsX + (numQuads%maxQuadsX != 0 ? 1 : 0);
466 rendered.setSize(numCols*VERIFY_QUAD_SIZE, numRows*VERIFY_QUAD_SIZE);
/external/skia/gm/
H A Dbeziereffects.cpp141 int numRows = SkScalarCeilToInt(SkIntToScalar(kNumCubics*3) / numCols); variable
143 SkScalar h = SkIntToScalar(rt->height()) / numRows;
289 int numRows = SkScalarCeilToInt(SkIntToScalar(kNumConics*3) / numCols); variable
291 SkScalar h = SkIntToScalar(rt->height()) / numRows;
530 int numRows = SkScalarCeilToInt(SkIntToScalar(kNumQuads*3) / numCols); variable
532 SkScalar h = SkIntToScalar(rt->height()) / numRows;
/external/deqp/framework/opengl/
H A DgluShaderUtil.cpp520 DataType getDataTypeMatrix (int numCols, int numRows) argument
522 DE_ASSERT(de::inRange(numCols, 2, 4) && de::inRange(numRows, 2, 4));
523 return (DataType)((int)TYPE_FLOAT_MAT2 + (numCols-2)*3 + (numRows-2));
H A DgluShaderUtil.hpp191 DataType getDataTypeMatrix (int numCols, int numRows);
/external/llvm/utils/Misc/
H A Dzkill84 numRows = len(header)
101 fields = ln.split(None, numRows - 1)
102 if len(fields) != numRows:
/external/deqp/modules/glshared/
H A DglsShaderExecUtil.cpp507 int numRows = glu::getDataTypeMatrixNumRows(basicType); local
509 int stride = numRows * numCols * sizeof(float);
512 vertexArrays.push_back(glu::va::Float(symbol.name, colNdx, numRows, numValues, stride, ((const float*)ptr) + colNdx * numRows));
752 int numRows = glu::getDataTypeMatrixNumRows(basicType); local
754 int stride = numRows * numCols * sizeof(float);
757 vertexArrays.push_back(glu::va::Float(attribName, colNdx, numRows, numValues, stride, ((const float*)ptr) + colNdx * numRows));
H A DglsShaderRenderCase.cpp577 int numRows; member in struct:deqp::gls::__anon3776
598 int numRows = matrices[matNdx].numRows; local
602 vertexArrays.push_back(va::Float(loc+colNdx, numRows, numElements, 4*(int)sizeof(float), (const float*)quadGrid.getUserAttrib(colNdx)));
H A DglsShaderLibraryCase.cpp946 int numRows = getDataTypeMatrixNumRows(dataType);
947 DE_ASSERT(scalarSize == numCols*numRows);
950 vertexArrays.push_back(va::Float(attribLoc + i, numRows, numVerticesPerDraw, scalarSize*sizeof(float), &scalars[i * numRows]));
1762 int numRows = getDataTypeMatrixNumRows(dataType);
1764 for (int rowNdx = 0; rowNdx < numRows; rowNdx++)
H A DglsBufferTestUtil.cpp622 int numRows = numQuads/maxQuadsX + (numQuads%maxQuadsX != 0 ? 1 : 0);
636 rendered.setSize(numCols*VERIFY_QUAD_SIZE, numRows*VERIFY_QUAD_SIZE);
/external/icu/icu4c/source/common/
H A Drbbitblb.cpp1062 int32_t numRows; local
1072 numRows = fDStates->size();
1079 size += numRows * rowSize;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DRBBITableBuilder.java822 int numRows;
832 numRows = fDStates.size();
840 size += numRows * rowSize;

Completed in 451 milliseconds

12