Searched defs:numCols (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXTableColumn.cpp116 unsigned numCols = section->numColumns(); local
117 if (m_columnIndex >= numCols)
H A DAXTable.cpp173 int numCols = firstBody->numColumns(); local
177 if (numRows == 1 && numCols == 1)
210 for (int col = 0; col < numCols; ++col) {
289 if (!row && headersInFirstRowCount == numCols && numCols > 1)
/external/chromium_org/third_party/skia/gm/
H A Dbeziereffects.cpp81 int numCols = SkScalarCeilToInt(SkScalarSqrt(SkIntToScalar(kNumCubics*3))); variable
82 int numRows = SkScalarCeilToInt(SkIntToScalar(kNumCubics*3) / numCols);
83 SkScalar w = SkIntToScalar(rt->width()) / numCols;
182 if (numCols == col) {
239 int numCols = SkScalarCeilToInt(SkScalarSqrt(SkIntToScalar(kNumConics*3))); variable
240 int numRows = SkScalarCeilToInt(SkIntToScalar(kNumConics*3) / numCols);
241 SkScalar w = SkIntToScalar(rt->width()) / numCols;
337 if (numCols == col) {
429 int numCols = SkScalarCeilToInt(SkScalarSqrt(SkIntToScalar(kNumQuads*3))); variable
430 int numRows = SkScalarCeilToInt(SkIntToScalar(kNumQuads*3) / numCols);
[all...]
/external/deqp/framework/opengl/
H A DgluShaderUtil.cpp519 DataType getDataTypeMatrix (int numCols, int numRows) argument
521 DE_ASSERT(de::inRange(numCols, 2, 4) && de::inRange(numRows, 2, 4));
522 return (DataType)((int)TYPE_FLOAT_MAT2 + (numCols-2)*3 + (numRows-2));
/external/deqp/modules/gles31/functional/
H A Des31fSeparateShaderTests.cpp126 const int numCols = rnd.getInt(2, 4), numRows = rnd.getInt(2, 4); local
128 return getDataTypeMatrix(numCols, numRows);
H A Des31fTextureGatherTests.cpp88 const int numCols = dst.getWidth() >= 7 ? 7 : dst.getWidth(); local
94 for (int col = 0; col < numCols; col++)
98 const int xBegin = (col+0)*dst.getWidth()/numCols;
99 const int xEnd = (col+1)*dst.getWidth()/numCols;
H A Des31fSSBOLayoutCase.cpp985 const int numCols = glu::getDataTypeMatrixNumColumns(basicType); local
990 for (int colNdx = 0; colNdx < numCols; colNdx++)
1507 const int numCols = glu::getDataTypeMatrixNumColumns(dstEntry.type); local
1509 for (int colNdx = 0; colNdx < numCols; colNdx++)
1717 const int numCols = glu::getDataTypeMatrixNumColumns(resEntry.type); local
1720 for (int colNdx = 0; colNdx < numCols; colNdx++)
/external/eigen/Eigen/src/plugins/
H A DBlockMethods.h616 * \param numCols the number of columns in the block
623 inline ColsBlockXpr middleCols(Index startCol, Index numCols) argument
625 return ColsBlockXpr(derived(), 0, startCol, rows(), numCols);
629 inline ConstColsBlockXpr middleCols(Index startCol, Index numCols) const
631 return ConstColsBlockXpr(derived(), 0, startCol, rows(), numCols);
/external/skia/gm/
H A Dbeziereffects.cpp81 int numCols = SkScalarCeilToInt(SkScalarSqrt(SkIntToScalar(kNumCubics*3))); variable
82 int numRows = SkScalarCeilToInt(SkIntToScalar(kNumCubics*3) / numCols);
83 SkScalar w = SkIntToScalar(rt->width()) / numCols;
182 if (numCols == col) {
239 int numCols = SkScalarCeilToInt(SkScalarSqrt(SkIntToScalar(kNumConics*3))); variable
240 int numRows = SkScalarCeilToInt(SkIntToScalar(kNumConics*3) / numCols);
241 SkScalar w = SkIntToScalar(rt->width()) / numCols;
337 if (numCols == col) {
429 int numCols = SkScalarCeilToInt(SkScalarSqrt(SkIntToScalar(kNumQuads*3))); variable
430 int numRows = SkScalarCeilToInt(SkIntToScalar(kNumQuads*3) / numCols);
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Drbbitblb.cpp1063 int32_t numCols; local
1073 numCols = fRB->fSetBuilder->getNumCharCategories();
1076 // Therefore we subtract two from numCols when determining
1078 rowSize = sizeof(RBBIStateTableRow) + sizeof(uint16_t)*(numCols-2);
/external/deqp/modules/gles3/functional/
H A Des3fPrimitiveRestartTests.cpp296 // Generate a numRows x numCols arrangement of line polygons of different vertex counts.
300 const int numCols = 4; local
306 for (int col = 0; col < numCols; col++)
308 float centerX = -1.0f + 2.0f * ((float)col + 0.5f) / (float)numCols;
309 int numVertices = row*numCols + col + 1;
313 float fx = centerX + 0.9f * deFloatCos((float)i*2.0f*DE_PI / (float)numVertices) / (float)numCols;
322 if (col < numCols - 1 || row < numRows - 1) // Add a restart after all but last polygon.
363 // Generate a numRows x numCols arrangement of triangle fan polygons of different vertex counts.
367 const int numCols = 4; local
373 for (int col = 0; col < numCols; co
[all...]
H A Des3fShaderIndexingTests.cpp808 int numCols = getDataTypeMatrixNumColumns(varType); local
810 const char* matSizeName = getIntUniformName(numCols);
834 if (numCols >= 2) op << ", ui_one";
835 if (numCols >= 3) op << ", ui_two";
836 if (numCols >= 4) op << ", ui_three";
862 if (numCols >= 2) op << " tmp[1] = ${VEC_TYPE}(coords.yzwx) * 0.5;\n";
863 if (numCols >= 3) op << " tmp[2] = ${VEC_TYPE}(coords.zwxy) * 0.25;\n";
864 if (numCols >= 4) op << " tmp[3] = ${VEC_TYPE}(coords.wxyz) * 0.125;\n";
869 if (numCols >= 2) op << " tmp[ui_one] = ${VEC_TYPE}(coords.yzwx) * 0.5;\n";
870 if (numCols >
875 op << " for (int i = 0; i < " << numCols << "; i++)\\n"; local
909 op << " for (int i = 0; i < " << numCols << "; i++)\\n"; local
[all...]
H A Des3fInstancedRenderingTests.cpp496 int numCols = glu::getDataTypeMatrixNumColumns(m_rgbAttrType); local
498 glVertexAttribPointer(curLoc, numRows, GL_FLOAT, GL_FALSE, numCols*numRows*sizeof(float), attrPtr);
H A Des3fShaderMatrixTests.cpp1886 int numCols = getDataTypeMatrixNumColumns(matType); local
1908 DataType colVecType = getDataTypeFloatVec(numCols);
1928 ShaderInput otherMatIn(inputType == INPUTTYPE_DYNAMIC ? INPUTTYPE_UNIFORM : inputType, getDataTypeMatrix(otherCols, numCols /* rows */), precision);
1944 ShaderInput vec2In((inputType == INPUTTYPE_DYNAMIC) ? (INPUTTYPE_UNIFORM) : (inputType), getDataTypeFloatVec(numCols), precision);
1951 (isOperationUnarySymmetricMatrix(op) && numCols == numRows))
1959 (isOperationAssignmentSymmetricMatrix(op) && numCols == numRows))
/external/icu/icu4c/source/common/
H A Drbbitblb.cpp1063 int32_t numCols; local
1073 numCols = fRB->fSetBuilder->getNumCharCategories();
1076 // Therefore we subtract two from numCols when determining
1078 rowSize = sizeof(RBBIStateTableRow) + sizeof(uint16_t)*(numCols-2);
/external/deqp/modules/glshared/
H A DglsShaderExecUtil.cpp492 int numCols = glu::getDataTypeMatrixNumColumns(basicType); local
493 int stride = numRows * numCols * sizeof(float);
495 for (int colNdx = 0; colNdx < numCols; ++colNdx)
737 int numCols = glu::getDataTypeMatrixNumColumns(basicType); local
738 int stride = numRows * numCols * sizeof(float);
740 for (int colNdx = 0; colNdx < numCols; ++colNdx)
H A DglsShaderRenderCase.cpp576 int numCols; member in struct:deqp::gls::__anon20405
599 int numCols = matrices[matNdx].numCols; local
601 for (int colNdx = 0; colNdx < numCols; colNdx++)
H A DglsUniformBlockCase.cpp956 int numCols = glu::getDataTypeMatrixNumColumns(entry.type); local
961 for (int colNdx = 0; colNdx < numCols; colNdx++)
1286 int numCols = glu::getDataTypeMatrixNumColumns(dstEntry.type); local
1288 for (int colNdx = 0; colNdx < numCols; colNdx++)
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 577 milliseconds