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

  /art/tools/ahat/src/main/com/android/ahat/
HeapTable.java 66 List<Column> subcols = new ArrayList<Column>(); local
68 subcols.add(new Column(heap.getName(), Column.Align.RIGHT));
69 subcols.add(new Column("?", Column.Align.RIGHT, snapshot.isDiffed()));
72 subcols.add(new Column("Total", Column.Align.RIGHT, showTotal));
73 subcols.add(new Column("?", Column.Align.RIGHT, showTotal && snapshot.isDiffed()));
78 doc.table(DocString.text(config.getHeapsDescription()), subcols, cols); local
  /external/eigen/Eigen/src/Core/products/
TriangularSolverMatrix.h 86 Index subcols = cols>0 ? l2/(4 * sizeof(Scalar) * std::max<Index>(otherStride,size)) : 0; local
87 subcols = std::max<Index>((subcols/Traits::nr)*Traits::nr, Traits::nr);
108 for(Index j2=0; j2<cols; j2+=subcols)
110 Index actual_cols = (std::min)(cols-j2,subcols);

Completed in 596 milliseconds