Home
last modified time | relevance | path

Searched refs:stride_ (Results 1 – 16 of 16) sorted by relevance

/external/gemmlowp/public/
Dmap.h39 int rows_, cols_, stride_; variable
42 MatrixMap() : data_(nullptr), rows_(0), cols_(0), stride_(0) {} in MatrixMap()
47 stride_(kOrder == MapOrder::ColMajor ? rows : cols) {} in MatrixMap()
49 : data_(data), rows_(rows), cols_(cols), stride_(stride) {} in MatrixMap()
54 stride_(other.stride_) {} in MatrixMap()
58 int stride() const { return stride_; } in stride()
59 int rows_stride() const { return kOrder == MapOrder::ColMajor ? 1 : stride_; } in rows_stride()
60 int cols_stride() const { return kOrder == MapOrder::RowMajor ? 1 : stride_; } in cols_stride()
75 stride_); in block()
/external/libvpx/libvpx/test/
Dpartial_idct_test.cc83 stride_ = rnd_(1024) + 1; in SetUp()
84 if (stride_ < size_) { in SetUp()
85 stride_ = size_; in SetUp()
88 if (stride_ > 16) { in SetUp()
89 stride_ &= ~15; in SetUp()
93 output_block_size_ = size_ * stride_; in SetUp()
152 ref = output_block_ref_[y * stride_ + x]; in PrintDiff()
153 opt = output_block_[y * stride_ + x]; in PrintDiff()
156 output_block_ref_)[y * stride_ + x]; in PrintDiff()
157 opt = reinterpret_cast<uint16_t *>(output_block_)[y * stride_ + x]; in PrintDiff()
[all …]
Dvp9_intrapred_test.cc85 stride_ = params_.block_size * 3; in SetUp()
96 *error_count += ref_dst_[x + y * stride_] != dst_[x + y * stride_]; in CheckPrediction()
98 ASSERT_EQ(ref_dst_[x + y * stride_], dst_[x + y * stride_]) in CheckPrediction()
109 ptrdiff_t stride_; member in __anon32d36ea10111::IntraPredTest
117 params_.ref_fn(ref_dst_, stride_, above_row_, left_col_); in Predict()
119 params_.pred_fn(dst_, stride_, above_row_, left_col_)); in Predict()
454 params_.ref_fn(ref_dst_, stride_, above_row_, left_col_, bit_depth); in Predict()
456 params_.pred_fn(dst_, stride_, above_row_, left_col_, bit_depth)); in Predict()
Dbuffer.h47 int stride() const { return stride_; } in stride()
86 stride_ = left_padding_ + width_ + right_padding_; in Init()
87 raw_size_ = stride_ * (top_padding_ + height_ + bottom_padding_); in Init()
102 int stride_; variable
/external/gemmlowp/internal/
Dpack.h145 : data_(data), width_(width), depth_(depth), stride_(stride) {} in SideMap()
149 stride_ = kOrder == SideMapOrder::WidthMajor ? depth_ : width_; in SideMap()
156 stride_(other.stride_) {} in SideMap()
160 int stride() const { return stride_; } in stride()
162 return kOrder == SideMapOrder::DepthMajor ? 1 : stride_; in width_stride()
165 return kOrder == SideMapOrder::WidthMajor ? 1 : stride_; in depth_stride()
182 stride_); in block()
187 int width_, depth_, stride_; variable
/external/webrtc/webrtc/modules/desktop_capture/
Ddiffer_unittest.cc37 stride_ = (kBytesPerPixel * width); in InitDiffer()
40 differ_.reset(new Differ(width_, height_, bytes_per_pixel_, stride_)); in InitDiffer()
76 int block_offset = ((block_y * stride_) + (block_x * bytes_per_pixel_)) in DiffBlock()
80 stride_); in DiffBlock()
101 buffer += (y * stride_) + (x * bytes_per_pixel_); in WritePixel()
197 int stride_; member in webrtc::DifferTest
Ddesktop_frame.h34 int stride() const { return stride_; } in stride()
80 const int stride_; variable
Ddesktop_frame.cc23 stride_(stride), in DesktopFrame()
/external/webp/src/utils/
Dquant_levels_dec_utils.c47 int stride_; // stride in bytes member
103 p->src_ += p->stride_; in VFilter()
153 p->dst_ += p->stride_; // advance output pointer in ApplyFilter()
195 data += p->stride_; in CountLevels()
240 p->stride_ = stride; in InitParams()
/external/gemmlowp/test/
Dtest.h56 using Map::stride_;
80 stride_ = kOrder == MapOrder::ColMajor ? rows : cols; in Resize()
89 ConstMap const_map() const { return ConstMap(data_, rows_, cols_, stride_); } in const_map()
/external/deqp/framework/referencerenderer/
DrrVertexAttrib.hpp127 …VertexAttrib (VertexAttribType type_, int size_, int stride_, int instanceDivisor_, const void* po… in VertexAttrib()
130 , stride (stride_) in VertexAttrib()
/external/deqp/framework/opengl/
DgluDrawUtil.hpp122 …xComponentConversion convert_, int numComponents_, int numElements_, int stride_, const void* data… in VertexArrayPointer()
127 , stride (stride_) in VertexArrayPointer()
DgluDrawUtil.cpp56 int stride_, in VertexAttributeDescriptor()
63 , stride (stride_) in VertexAttributeDescriptor()
/external/harfbuzz_ng/util/
Dansi-print.cc100 unsigned int stride_) : in image_t()
105 stride (stride_) {} in image_t()
/external/deqp/modules/glshared/
DglsVertexArrayTests.cpp1918 …age storage_, Array::Usage usage_, int componentCount_, int offset_, int stride_, bool normalize_,… in ArraySpec() argument
1925 , stride (stride_) in ArraySpec()
/external/vulkan-validation-layers/include/vulkan/
Dvulkan.hpp4964 …VertexInputBindingDescription( uint32_t binding_ = 0, uint32_t stride_ = 0, VertexInputRate inputR… in VertexInputBindingDescription()
4966 , stride( stride_ ) in VertexInputBindingDescription()
4988 VertexInputBindingDescription& setStride( uint32_t stride_ ) in setStride()
4990 stride = stride_; in setStride()