• Home
  • Raw
  • Download

Lines Matching refs:Format

34   typedef tFormat Format;  typedef
40 Format::Lhs::kCells, Format::Lhs::Cell::kWidth, in Name()
41 Format::Lhs::Cell::kDepth, in Name()
42 CellOrderName(Format::Lhs::Cell::kOrder), Format::Rhs::kCells, in Name()
43 Format::Rhs::Cell::kDepth, Format::Rhs::Cell::kWidth, in Name()
44 CellOrderName(Format::Rhs::Cell::kOrder)); in Name()
52 std::int32_t accumulator[Format::kRows * Format::kCols]; in Run()
55 const int run_depth_cells = static_cast<int>(run_depth / Format::kDepth); in Run()
61 for (int rc = 0; rc < Format::Lhs::kCells; rc++) { in Run()
63 (dc * Format::Lhs::kCells + rc) * in Run()
64 Format::Lhs::Cell::kWidth * in Run()
65 Format::kDepth; in Run()
66 for (int cc = 0; cc < Format::Rhs::kCells; cc++) { in Run()
68 (dc * Format::Rhs::kCells + cc) * in Run()
69 Format::Rhs::Cell::kWidth * in Run()
70 Format::kDepth; in Run()
75 for (int di = 0; di < Format::kDepth; di++) { in Run()
76 for (int ri = 0; ri < Format::Lhs::Cell::kWidth; ri++) { in Run()
77 for (int ci = 0; ci < Format::Rhs::Cell::kWidth; ci++) { in Run()
80 OffsetIntoCell<typename Format::Lhs::Cell>(ri, di); in Run()
83 OffsetIntoCell<typename Format::Rhs::Cell>(ci, di); in Run()
85 accumulator + (ri + rc * Format::Lhs::Cell::kWidth) + in Run()
86 (ci + cc * Format::Rhs::Cell::kWidth) * Format::kRows; in Run()
99 for (int r = 0; r < Format::kRows; r++) { in Run()
100 for (int c = 0; c < Format::kCols; c++) { in Run()
102 accumulator[r + c * Format::kRows]; in Run()
108 for (int r = 0; r < Format::kRows; r++) { in Run()
109 for (int c = 0; c < Format::kCols; c++) { in Run()
111 accumulator[r + c * Format::kRows]; in Run()