OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CellFormat
(Results
1 - 4
of
4
) sorted by null
/external/gemmlowp/internal/
kernel.h
79
// contains a
CellFormat
and a number of cells; cells are only ever
90
// KernelSideFormat<
CellFormat
<3, 4>, 3>,
91
// KernelSideFormat<
CellFormat
<5, 4>, 2>
94
// The LHS format, KernelSideFormat<
CellFormat
<3, 4>, 3>, means:
96
// DepthMajor order (the default value, see
CellFormat
). In the LHS,
110
// The RHS format, KernelSideFormat<
CellFormat
<5, 4>, 2>, means:
112
// DepthMajor order (the default value, see
CellFormat
). In the RHS,
125
//
CellFormat
describes how data is laid
128
struct
CellFormat
{
137
// (i.e. LHS or RHS). That is, a
CellFormat
together with a number o
[
all
...]
pack_SSE.h
63
KernelSideFormat<
CellFormat
<4, 2, CellOrder::WidthMajor>, Cells>;
74
typedef typename KernelSideFormat::Cell
CellFormat
;
76
static const int kCellWidth =
CellFormat
::kWidth;
77
static const int kKernelWidth =
CellFormat
::kWidth * kCells;
78
static const int kCellDepth =
CellFormat
::kDepth;
79
static const int kCellSize =
CellFormat
::kSize;
pack_neon.h
162
using DepthMajorSideFormatNCells4x2 = KernelSideFormat<
CellFormat
<4, 2>, Cells>;
173
typedef typename KernelSideFormat::Cell
CellFormat
;
175
static const int kCellWidth =
CellFormat
::kWidth;
176
static const int kKernelWidth =
CellFormat
::kWidth * kCells;
177
static const int kCellDepth =
CellFormat
::kDepth;
178
static const int kCellSize =
CellFormat
::kSize;
268
KernelSideFormat<
CellFormat
<4, 2, CellOrder::WidthMajor>, Cells>;
279
typedef typename KernelSideFormat::Cell
CellFormat
;
281
static const int kCellWidth =
CellFormat
::kWidth;
282
static const int kKernelWidth =
CellFormat
::kWidth * kCells
[
all
...]
pack.h
301
typedef typename KernelSideFormat::Cell
CellFormat
;
303
static const int kCellWidth =
CellFormat
::kWidth;
304
static const int kKernelWidth =
CellFormat
::kWidth * kCells;
305
static const int kCellDepth =
CellFormat
::kDepth;
306
static const int kCellSize =
CellFormat
::kSize;
366
dst_ptr[OffsetIntoCell<
CellFormat
>(w, d)] = requantized;
390
typedef typename KernelSideFormat::Cell
CellFormat
;
392
static const int kCellWidth =
CellFormat
::kWidth;
393
static const int kKernelWidth =
CellFormat
::kWidth * kCells;
394
static const int kCellDepth =
CellFormat
::kDepth
[
all
...]
Completed in 60 milliseconds