HomeSort by relevance Sort by last modified time
    Searched refs:height_ (Results 1 - 25 of 173) sorted by null

1 2 3 4 5 6 7

  /external/libmojo/mojo/public/cpp/bindings/tests/
rect_chromium.h 22 height_(other.height_) {}
24 x_(x), y_(y), width_(width), height_(height) {
26 DCHECK_GE(height_, 0);
34 height_ = other.height_;
50 int height() const { return height_; }
53 height_ = height;
56 int GetArea() const { return width_ * height_; }
62 int height_ = 0 member in class:mojo::test::RectChromium
    [all...]
rect_blink.h 20 x_(x), y_(y), width_(width), height_(height) {
24 DCHECK_GE(height_, 0);
46 int height() const { return height_; }
49 height_ = height;
52 int computeArea() const { return width_ * height_; }
58 int height_ = 0; member in class:mojo::test::RectBlink
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
h264_sps_parser.h 26 uint16_t height() { return height_; }
33 uint16_t height_; member in class:webrtc::H264SpsParser
  /external/v4l2_codec2/vda/
size.h 18 Size() : width_(0), height_(0) {}
20 : width_(width < 0 ? 0 : width), height_(height < 0 ? 0 : height) {}
23 constexpr int height() const { return height_; }
26 void set_height(int height) { height_ = height < 0 ? 0 : height; }
47 int height_;
  /external/webrtc/webrtc/tools/converter/
converter.h 34 int height_; // Height of the video (respectively of the RGBA frames). member in class:webrtc::test::Converter
38 return width_*height_;
43 return ((width_+1)/2)*((height_)/2);
48 return ((width_+1)/2)*((height_)/2);
73 return width_*height_*4;
  /external/webrtc/webrtc/common_video/libyuv/
scaler_unittest.cc 42 const int height_; member in class:webrtc::TestScaler
53 height_(288),
54 half_height_(height_ / 2),
55 size_y_(width_ * height_),
57 frame_length_(CalcBufferSize(kI420, width_, height_)) {
66 test_frame_.CreateEmptyFrame(width_, height_,
96 EXPECT_EQ(0, test_scaler_.Set(width_, height_,
106 width_, height_,
109 EXPECT_GT(width_ * height_, test_frame2.allocated_size(kYPlane));
130 width_, height_,
    [all...]
libyuv_unittest.cc 88 const int height_; member in class:webrtc::TestLibYuv
98 height_(288),
99 size_y_(width_ * height_),
100 size_uv_(((width_ + 1) / 2) * ((height_ + 1) / 2)),
118 width_, height_,
145 EXPECT_EQ(0, res_i420_frame.CreateEmptyFrame(width_, height_, width_,
153 height_, 0, kVideoRotation_0, &res_i420_frame));
163 rtc::scoped_ptr<uint8_t[]> res_rgb_buffer2(new uint8_t[width_ * height_ * 3]);
168 res_i420_frame.CreateEmptyFrame(width_, height_, stride_y,
173 height_, 0, kVideoRotation_0, &res_i420_frame))
    [all...]
  /external/libvpx/libvpx/test/
buffer.h 30 : width_(width), height_(height), top_padding_(top_padding),
37 : width_(width), height_(height), top_padding_(padding),
81 ASSERT_GT(height_, 0);
87 raw_size_ = stride_ * (top_padding_ + height_ + bottom_padding_);
96 const int height_; member in class:libvpx_test::Buffer
115 for (int height = 0; height < height_; ++height) {
126 for (int height = 0; height < height_; ++height) {
142 for (int height = 0; height < height_; ++height) {
153 for (int height = 0; height < height_ + top_padding_ + bottom_padding_;
177 for (int height = 0; height < height_; ++height)
    [all...]
decode_svc_test.cc 39 ASSERT_EQ(img.d_h, height_);
45 unsigned int height_; member in class:__anon24569::DecodeSvcTest
63 height_ = 180;
80 height_ = 360;
97 height_ = 720;
115 height_ = 720;
  /hardware/qcom/display/msm8996/libgralloc1/
gr_buf_descriptor.h 42 height_(h),
51 height_(h),
63 height_ = h;
76 int GetHeight() const { return height_; }
86 int height_ = -1; member in class:gralloc1::BufferDescriptor
  /hardware/qcom/display/msm8998/libgralloc1/
gr_buf_descriptor.h 42 height_(h),
51 height_(h),
63 height_ = h;
76 int GetHeight() const { return height_; }
86 int height_ = -1; member in class:gralloc1::BufferDescriptor
  /hardware/qcom/display/sdm845/libgralloc1/
gr_buf_descriptor.h 43 height_(h),
52 height_(h),
64 height_ = h;
77 int GetHeight() const { return height_; }
87 int height_ = -1; member in class:gralloc1::BufferDescriptor
  /external/webrtc/webrtc/modules/video_processing/test/
content_metrics_test.cc 28 ca__c.Initialize(width_, height_);
29 ca__sse.Initialize(width_, height_);
35 EXPECT_EQ(0, ConvertToI420(kI420, video_buffer.get(), 0, 0, width_, height_,
  /external/webrtc/webrtc/test/
fake_texture_frame.h 42 new rtc::RefCountedObject<I420Buffer>(width_, height_));
43 int half_height = (height_ + 1) / 2;
45 memset(buffer->MutableData(kYPlane), 0, height_ * width_);
  /external/autotest/client/deps/glbench/src/
textureupdatetest.cc 33 glTexImage2D(GL_TEXTURE_2D, 0, texel_gl_format_, width_, height_,
38 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width_, height_,
textureuploadtest.cc 30 glTexImage2D(GL_TEXTURE_2D, 0, texel_gl_format_, width_, height_,
35 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width_, height_,
texturetest.cc 95 width_ = height_ = sizes[j];
96 const unsigned int buffer_size = width_ * height_ * texel_size;
103 glTexImage2D(GL_TEXTURE_2D, 0, texel_gl_format_, width_, height_, 0,
107 width_, height_, texel_size);
109 if (IS_NOT_POWER_OF_2(width_) || IS_NOT_POWER_OF_2(height_)) {
118 error, width_, height_, texel_size);
texturereusetest.cc 35 glTexImage2D(GL_TEXTURE_2D, 0, texel_gl_format_, width_, height_,
40 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width_, height_,
texturetest.h 37 GLuint height_; member in class:glbench::TextureTest
  /external/webrtc/webrtc/modules/desktop_capture/
differ.h 35 int height() { return height_; }
67 int height_; member in class:webrtc::Differ
desktop_geometry.h 53 DesktopSize() : width_(0), height_(0) {}
55 : width_(width), height_(height) {
59 int32_t height() const { return height_; }
61 bool is_empty() const { return width_ <= 0 || height_ <= 0; }
64 return width_ == other.width_ && height_ == other.height_;
69 height_ = height;
74 int32_t height_; member in class:webrtc::DesktopSize
  /external/webp/src/dec/
alphai_dec.h 29 int height_; member in struct:ALPHDecoder
  /external/webrtc/webrtc/modules/video_processing/
video_denoiser.h 31 int height_; member in class:webrtc::VideoDenoiser
  /hardware/libhardware/modules/camera/3_4/
stream_format.cpp 32 height_(height),
41 height_(format.fmt.pix.height),
50 format->fmt.pix.height = height_;
73 width_ == other.width_ && height_ == other.height_);
  /frameworks/base/media/mca/filterfw/native/core/
gl_frame.cpp 41 height_(0),
58 if (width_ == 0 && height_ == 0) {
83 height_ = 0;
89 height_ = height;
197 target->Init(width_, height_);
205 } else if (frame && frame->width_ == width_ && frame->height_ == height_) {
215 return width_ * height_ * 4;
311 height_,
353 height_,
    [all...]

Completed in 942 milliseconds

1 2 3 4 5 6 7