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

  /art/runtime/
stride_iterator.h 36 stride_(stride) {}
39 DCHECK_EQ(stride_, other.stride_);
48 ptr_ += stride_;
54 ptr_ += stride_;
65 ptr_ += static_cast<ssize_t>(stride_) * delta;
80 size_t stride_; member in class:art::StrideIterator
  /external/gemmlowp/public/
map.h 40 int rows_, cols_, stride_; member in class:gemmlowp::MatrixMap
43 MatrixMap() : data_(nullptr), rows_(0), cols_(0), stride_(0) {}
45 : data_(data), rows_(rows), cols_(cols), stride_(stride) {}
50 stride_(other.stride_) {}
54 int stride() const { return stride_; }
55 int rows_stride() const { return kOrder == MapOrder::ColMajor ? 1 : stride_; }
56 int cols_stride() const { return kOrder == MapOrder::RowMajor ? 1 : stride_; }
71 stride_);
  /external/libvpx/libvpx/test/
vp9_intrapred_test.cc 43 *error_count += ref_dst_[x + y * stride_] != dst_[x + y * stride_];
45 ASSERT_EQ(ref_dst_[x + y * stride_], dst_[x + y * stride_])
87 ptrdiff_t stride_; member in class:__anon17921::VP9IntraPredBase
105 stride_ = block_size_ * 3;
112 ref_fn_(ref_dst_, stride_, const_above_row, const_left_col, bit_depth_);
113 ASM_REGISTER_STATE_CHECK(pred_fn_(dst_, stride_, const_above_row,
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_frame.h 34 int stride() const { return stride_; }
80 const int stride_; member in class:webrtc::DesktopFrame
differ_unittest.cc 37 stride_ = (kBytesPerPixel * width);
40 differ_.reset(new Differ(width_, height_, bytes_per_pixel_, stride_));
76 int block_offset = ((block_y * stride_) + (block_x * bytes_per_pixel_))
80 stride_);
101 buffer += (y * stride_) + (x * bytes_per_pixel_);
197 int stride_; member in class:webrtc::DifferTest
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
intrapred_test.cc 43 stride_ = stride;
56 data_ptr_[p][x - stride_] = rnd.Rand8();
58 data_ptr_[p][y * stride_ - 1] = rnd.Rand8();
68 data_ptr_[p][stride_ * i - 1] = 129;
74 memset(&data_ptr_[p][-1 - stride_], 127, block_size_ + 2);
103 sum += data_ptr_[p][x - stride_];
106 sum += data_ptr_[p][y * stride_ - 1];
113 ASSERT_EQ(0, memcmp(data_ptr_[p], &data_ptr_[p][y * stride_],
128 ASSERT_EQ(0, memcmp(&data_ptr_[p][-stride_],
129 &data_ptr_[p][y * stride_], block_size_))
214 int stride_; member in class:__anon31387::IntraPredBase
    [all...]
  /external/gemmlowp/internal/
pack.h 147 : data_(data), width_(width), depth_(depth), stride_(stride) {}
151 stride_ = kOrder == SideMapOrder::WidthMajor ? depth_ : width_;
158 stride_(other.stride_) {}
162 int stride() const { return stride_; }
164 return kOrder == SideMapOrder::DepthMajor ? 1 : stride_;
167 return kOrder == SideMapOrder::WidthMajor ? 1 : stride_;
184 stride_);
189 int width_, depth_, stride_; member in class:gemmlowp::SideMap

Completed in 3684 milliseconds