Searched refs:VectorDup (Results 1 – 5 of 5) sorted by relevance
/external/gemmlowp/public/ |
D | map.h | 113 class VectorDup { 123 VectorDup() : data_(0), size_(0) {} in VectorDup() function 124 VectorDup(Scalar data, int size) : data_(data), size_(size) {} in VectorDup() function 125 VectorDup(const VectorDup& other) : data_(other.data_), size_(other.size_) {} in VectorDup() function 130 VectorDup block(int start, int len) const { in block() 134 return VectorDup(data_, len); in block()
|
D | gemmlowp.h | 59 typedef VectorDup<const std::int32_t, VectorShape::Col> OffsetColDup; in GemmWithOutputPipeline() 60 typedef VectorDup<const std::int32_t, VectorShape::Row> OffsetRowDup; in GemmWithOutputPipeline()
|
/external/gemmlowp/internal/ |
D | simd_wrappers.h | 329 VectorDup<SrcScalarType, Shape>> { 331 using SrcObjectType = VectorDup<SrcScalarType, Shape>; 387 VectorDup<ScalarType, Shape>> { 433 VectorDup<SrcScalarType, Shape>> { 435 using SrcObjectType = VectorDup<SrcScalarType, Shape>;
|
D | simd_wrappers_common_neon_sse.h | 99 VectorDup<SrcScalarType, VectorShape::Col>> { 101 const VectorDup<SrcScalarType, VectorShape::Col>& src, int) {
|
/external/gemmlowp/test/ |
D | test.cc | 112 typedef VectorDup<const std::int32_t, VectorShape::Col> OffsetColDup; 113 typedef VectorDup<const std::int32_t, VectorShape::Row> OffsetRowDup;
|