/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/ |
H A D | DynamicTableModel.java | 44 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 D | es3fPrimitiveRestartTests.cpp | 271 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 D | es3fRasterizationTests.cpp | 1405 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 D | es3fInstancedRenderingTests.cpp | 495 int numRows = glu::getDataTypeMatrixNumRows(m_rgbAttrType); local 498 glVertexAttribPointer(curLoc, numRows, GL_FLOAT, GL_FALSE, numCols*numRows*sizeof(float), attrPtr);
|
H A D | es3fShaderIndexingTests.cpp | 809 int numRows = getDataTypeMatrixNumRows(varType); local 811 DataType vecType = getDataTypeFloatVec(numRows); 939 if (numRows == 2) 941 else if (numRows == 3)
|
/external/libvncserver/libvncclient/ |
H A D | tight.c | 81 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 D | genutil.py | 574 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 D | gen-conversions.py | 77 def combineMat(numCols, numRows, comps): 81 res.append(Mat(numCols, numRows, scalars))
|
/external/deqp/modules/gles3/scripts/ |
H A D | genutil.py | 717 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 D | gen-conversions.py | 80 def combineMat(numCols, numRows, comps): 84 res.append(Mat(numCols, numRows, scalars))
|
/external/deqp/modules/gles31/scripts/ |
H A D | genutil.py | 719 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 D | SkSwizzler.h | 138 * @param numRows 164 uint32_t numRows, uint32_t colorOrIndex, const SkPMColor* colorTable);
|
H A D | SkSwizzler.cpp | 459 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 D | es2fRasterizationTests.cpp | 1128 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 D | es2fBufferTestUtil.cpp | 452 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 D | beziereffects.cpp | 141 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 D | gluShaderUtil.cpp | 520 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 D | gluShaderUtil.hpp | 191 DataType getDataTypeMatrix (int numCols, int numRows);
|
/external/llvm/utils/Misc/ |
H A D | zkill | 84 numRows = len(header) 101 fields = ln.split(None, numRows - 1) 102 if len(fields) != numRows:
|
/external/deqp/modules/glshared/ |
H A D | glsShaderExecUtil.cpp | 507 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 D | glsShaderRenderCase.cpp | 577 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 D | glsShaderLibraryCase.cpp | 946 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 D | glsBufferTestUtil.cpp | 622 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 D | rbbitblb.cpp | 1062 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 D | RBBITableBuilder.java | 822 int numRows; 832 numRows = fDStates.size(); 840 size += numRows * rowSize;
|