HomeSort by relevance Sort by last modified time
    Searched defs:subcols (Results 1 - 2 of 2) sorted by null

  /art/tools/ahat/src/
HeapTable.java 65 List<Column> subcols = new ArrayList<Column>(); local
67 subcols.add(new Column(heap.getName(), Column.Align.RIGHT));
70 subcols.add(new Column("Total", Column.Align.RIGHT));
76 doc.table(DocString.text(config.getHeapsDescription()), subcols, cols); local
  /external/eigen/Eigen/src/Core/products/
TriangularSolverMatrix.h 84 Index subcols = cols>0 ? l2/(4 * sizeof(Scalar) * otherStride) : 0; local
85 subcols = std::max<Index>((subcols/Traits::nr)*Traits::nr, Traits::nr);
106 for(Index j2=0; j2<cols; j2+=subcols)
108 Index actual_cols = (std::min)(cols-j2,subcols);

Completed in 131 milliseconds