HomeSort by relevance Sort by last modified time
    Searched refs:VectorDup (Results 1 - 5 of 5) sorted by null

  /external/gemmlowp/public/
map.h 111 // A VectorDup is a (duplicated value) vector where all components are the same.
113 class VectorDup {
123 VectorDup() : data_(0), size_(0) {}
124 VectorDup(Scalar data, int size) : data_(data), size_(size) {}
125 VectorDup(const VectorDup& other) : data_(other.data_), size_(other.size_) {}
130 VectorDup block(int start, int len) const {
134 return VectorDup(data_, len);
gemmlowp.h 59 typedef VectorDup<const std::int32_t, VectorShape::Col> OffsetColDup;
60 typedef VectorDup<const std::int32_t, VectorShape::Row> OffsetRowDup;
  /external/gemmlowp/internal/
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>;
simd_wrappers_common_neon_sse.h 99 VectorDup<SrcScalarType, VectorShape::Col>> {
101 const VectorDup<SrcScalarType, VectorShape::Col>& src, int) {
  /external/gemmlowp/test/
test.cc 111 typedef VectorDup<const std::int32_t, VectorShape::Col> OffsetColDup;
112 typedef VectorDup<const std::int32_t, VectorShape::Row> OffsetRowDup;
    [all...]

Completed in 88 milliseconds