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

1234

/external/skia/include/encode/
H A DSkEncoder.h18 * Encode |numRows| rows of input. If the caller requests more rows than are remaining
19 * in the src, this will encode all of the remaining rows. |numRows| must be greater
22 bool encodeRows(int numRows);
28 virtual bool onEncodeRows(int numRows) = 0;
H A DSkJpegEncoder.h89 bool onEncodeRows(int numRows) override;
H A DSkPngEncoder.h93 bool onEncodeRows(int numRows) override;
/external/skqp/include/encode/
H A DSkEncoder.h18 * Encode |numRows| rows of input. If the caller requests more rows than are remaining
19 * in the src, this will encode all of the remaining rows. |numRows| must be greater
22 bool encodeRows(int numRows);
28 virtual bool onEncodeRows(int numRows) = 0;
H A DSkJpegEncoder.h89 bool onEncodeRows(int numRows) override;
H A DSkPngEncoder.h93 bool onEncodeRows(int numRows) override;
/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/skia/src/codec/
H A DSkSampler.cpp20 const int numRows = info.height(); local
33 for (int row = 0; row < numRows; row++) {
54 for (int row = 0; row < numRows; row++) {
82 for (int row = 0; row < numRows; row++) {
/external/skqp/src/codec/
H A DSkSampler.cpp20 const int numRows = info.height(); local
33 for (int row = 0; row < numRows; row++) {
54 for (int row = 0; row < numRows; row++) {
82 for (int row = 0; row < numRows; row++) {
/external/skia/src/images/
H A DSkImageEncoder.cpp64 bool SkEncoder::encodeRows(int numRows) { argument
65 SkASSERT(numRows > 0 && fCurrRow < fSrc.height());
66 if (numRows <= 0 || fCurrRow >= fSrc.height()) {
70 if (fCurrRow + numRows > fSrc.height()) {
71 numRows = fSrc.height() - fCurrRow;
74 if (!this->onEncodeRows(numRows)) {
H A DSkJpegEncoder.cpp227 bool SkJpegEncoder::onEncodeRows(int numRows) { argument
234 for (int i = 0; i < numRows; i++) {
246 fCurrRow += numRows;
H A DSkPngEncoder.cpp400 bool SkPngEncoder::onEncodeRows(int numRows) { argument
406 for (int y = 0; y < numRows; y++) {
415 fCurrRow += numRows;
/external/skqp/src/images/
H A DSkImageEncoder.cpp64 bool SkEncoder::encodeRows(int numRows) { argument
65 SkASSERT(numRows > 0 && fCurrRow < fSrc.height());
66 if (numRows <= 0 || fCurrRow >= fSrc.height()) {
70 if (fCurrRow + numRows > fSrc.height()) {
71 numRows = fSrc.height() - fCurrRow;
74 if (!this->onEncodeRows(numRows)) {
H A DSkJpegEncoder.cpp227 bool SkJpegEncoder::onEncodeRows(int numRows) { argument
234 for (int i = 0; i < numRows; i++) {
246 fCurrRow += numRows;
H A DSkPngEncoder.cpp400 bool SkPngEncoder::onEncodeRows(int numRows) { argument
406 for (int y = 0; y < numRows; y++) {
415 fCurrRow += numRows;
/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...]
/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.py596 def __init__ (self, numCols, numRows, scalars):
597 assert len(scalars) == numRows*numCols
599 self.numRows = numRows
603 def identity (numCols, numRows):
606 for row in range(0, numRows):
608 return Mat(numCols, numRows, scalars)
612 assert 0 <= rowNdx and rowNdx < self.numRows
613 return self.scalars[colNdx*self.numRows + rowNdx]
617 assert 0 <= rowNdx and rowNdx < self.numRows
[all...]
/external/deqp/modules/gles3/scripts/
H A Dgenutil.py739 def __init__ (self, numCols, numRows, scalars):
740 assert len(scalars) == numRows*numCols
742 self.numRows = numRows
746 def fromScalar (numCols, numRows, scalar):
749 for row in range(0, numRows):
751 return Mat(numCols, numRows, scalars)
754 def identity (numCols, numRows):
755 return Mat.fromScalar(numCols, numRows, 1.0)
759 assert 0 <= rowNdx and rowNdx < self.numRows
[all...]
/external/deqp/modules/gles31/scripts/
H A Dgenutil.py741 def __init__ (self, numCols, numRows, scalars):
742 assert len(scalars) == numRows*numCols
744 self.numRows = numRows
748 def fromScalar (numCols, numRows, scalar):
751 for row in range(0, numRows):
753 return Mat(numCols, numRows, scalars)
756 def identity (numCols, numRows):
757 return Mat.fromScalar(numCols, numRows, 1.0)
761 assert 0 <= rowNdx and rowNdx < self.numRows
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fRasterizationTests.cpp1260 const int numRows = 4;
1265 outData.resize(6 * numRows * numColumns);
1268 for (int row = 0; row < numRows; ++row)
1270 const tcu::Vec2 center = tcu::Vec2(((float)row + 0.5f) / (float)numRows * 2.0f - 1.0f, ((float)col + 0.5f) / (float)numColumns * 2.0f - 1.0f);
1271 const float rotation = float(iteration * numColumns * numRows + col * numRows + row) / (float)(m_iterationCount * numColumns * numRows) * DE_PI / 2.0f;
1284 outData[6 * (col * numRows + row) + 0] = tcu::Vec4(quad[0].x(), quad[0].y(), 0.0f, 1.0f);
1285 outData[6 * (col * numRows + row) + 1] = tcu::Vec4(quad[1].x(), quad[1].y(), 0.0f, 1.0f);
1286 outData[6 * (col * numRows
[all...]
/external/llvm/utils/Misc/
H A Dzkill84 numRows = len(header)
101 fields = ln.split(None, numRows - 1)
102 if len(fields) != numRows:
/external/deqp/framework/opengl/
H A DgluShaderUtil.cpp741 DataType getDataTypeMatrix (int numCols, int numRows) argument
743 DE_ASSERT(de::inRange(numCols, 2, 4) && de::inRange(numRows, 2, 4));
744 return (DataType)((int)TYPE_FLOAT_MAT2 + (numCols-2)*3 + (numRows-2));
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowCursorWindow.java125 return WINDOW_DATA.get(windowPtr).numRows();
253 public int numRows() { method in class:ShadowCursorWindow.Data
354 return data.numRows();
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
H A DVDUBuffer.java516 int numRows = bottom - l - 1;
521 if (numRows > 0) {
522 System.arraycopy(charArray, screenBase + l + 1, charArray, screenBase + l, numRows);
523 System.arraycopy(charAttributes, screenBase + l + 1, charAttributes, screenBase + l, numRows);

Completed in 762 milliseconds

1234