Searched refs:height_ (Results 1 - 25 of 40) sorted by relevance

12

/external/webp/src/dec/
H A Dalphai.h29 int height_; member in struct:ALPHDecoder
H A Dalpha.c56 dec->height_ = height;
75 const size_t alpha_decoded_size = dec->width_ * dec->height_;
91 const int height = alph_dec->height_;
111 if (row + num_rows == dec->pic_hdr_.height_) {
123 const int height = dec->pic_hdr_.height_;
H A Dvp8li.h71 int height_; member in struct:VP8LDecoder
H A Dvp8l.c708 assert(dec->last_row_ <= dec->height_);
1091 dec->height_ = height;
1195 const uint64_t num_pixels = (uint64_t)dec->width_ * dec->height_;
1216 const uint64_t total_num_pixels = (uint64_t)dec->width_ * dec->height_;
1260 dec->height_ = alph_dec->height_;
1268 io->height = alph_dec->height_;
1274 if (!DecodeImageStream(alph_dec->width_, alph_dec->height_, 1, dec, NULL)) {
1307 assert(last_row <= dec->height_);
1309 if (dec->last_pixel_ == dec->width_ * dec->height_) {
[all...]
H A Dvp8i.h117 uint16_t height_; member in struct:__anon16921
/external/skia/src/images/
H A Dbmpdecoderhelper.cpp49 height_ = GetInt();
64 height_ = GetShort();
68 if (height_ < 0) {
69 height_ = -height_;
72 if (width_ <= 0 || width_ > kMaxDim || height_ <= 0 || height_ > kMaxDim) {
75 if (width_ * height_ > max_pixels) {
161 if (!rle && (pos_ + (rowLen * height_) > len_ + 1)) {
165 output_ = callback->SetSize(width_, height_);
[all...]
H A Dbmpdecoderhelper.h96 int height_; member in class:image_codec::BmpDecoderHelper
/external/libvpx/libvpx/test/
H A Di420_video_source.h35 height_(0),
38 // This initializes raw_sz_, width_, height_ and allocates an img.
84 if (width != width_ || height != height_) {
89 height_ = height;
111 unsigned int height_; member in class:libvpx_test::I420VideoSource
H A Dsixtap_predict_test.cc68 height_ = GET_PARAM(1);
76 int height_; member in class:__anon9408::SixtapPredictTest
150 for (int i = 0; i < height_; ++i)
177 for (int i = 0; i < height_; ++i)
H A Dvideo_source.h142 DummyVideoSource() : img_(NULL), limit_(100), width_(0), height_(0) {
181 if (width != width_ || height != height_) {
186 height_ = height;
198 unsigned int height_; member in class:libvpx_test::DummyVideoSource
H A Dvpx_scale_test.cc35 height_ = height;
37 ASSERT_EQ(0, vp8_yv12_alloc_frame_buffer(&img_, width_, height_,
48 ASSERT_EQ(0, vp8_yv12_alloc_frame_buffer(&ref_img_, width_, height_,
53 ASSERT_EQ(0, vp8_yv12_alloc_frame_buffer(&cpy_img_, width_, height_,
166 int height_; member in class:__anon9423::VpxScaleBase
H A Dencode_perf_test.cc26 EncodePerfTestVideo(const char *name_, uint32_t width_, uint32_t height_, argument
30 height(height_),
H A Dvariance_test.cc88 height_ = 1 << log2height_;
92 block_size_ = width_ * height_;
114 int height_, log2height_; member in class:__anon9415::VarianceTest
206 height_ = 1 << log2height_;
210 block_size_ = width_ * height_;
213 ref_ = new uint8_t[block_size_ + width_ + height_ + 1];
234 int height_, log2height_; member in class:__anon9415::SubpelVarianceTest
246 for (int j = 0; j < block_size_ + width_ + height_ + 1; j++) {
269 for (int j = 0; j < block_size_ + width_ + height_ + 1; j++) {
H A Dsad_test.cc60 SADTestBase(int width, int height) : width_(width), height_(height) {}
102 for (int h = 0; h < height_; ++h) {
115 for (int h = 0; h < height_; ++h) {
123 for (int h = 0; h < height_; ++h) {
130 int width_, height_; member in class:__anon9406::SADTestBase
/external/ceres-solver/examples/
H A Dpgm_image.h87 int height_, width_; member in class:ceres::examples::PGMImage
95 : height_(height), width_(width), data_(width*height, 0.0) {
101 height_ = 0;
120 return height_;
125 return width_ * height_;
141 CHECK(index < width_ * height_);
149 CHECK(index < width_ * height_);
191 outputfile << width_ << ' ' << height_ << " 255 " << std::endl;
194 int num_pixels = width_*height_;
246 !GetIgnoreComment(&inputfile, height_) ||
[all...]
/external/drm_hwcomposer/
H A Ddrmcrtc.h60 uint32_t height_; member in class:android::DrmCrtc
H A Ddrmcrtc.cpp37 height_(c->height),
/external/deqp/framework/egl/
H A DegluNativeWindow.hpp64 WindowParams (int width_, int height_, Visibility visibility_) : width(width_), height(height_), visibility(visibility_) {} argument
/external/openfst/src/include/fst/
H A Dminimize.h340 for (size_t i = height_.size(); i <= s; ++i)
341 height_.push_back(-1);
359 if (height_[arc.nextstate] + 1 > height_[s])
360 height_[s] = height_[arc.nextstate] + 1;
366 if (height_[s] == -1) height_[s] = 0;
367 StateId h = height_[s] + 1;
369 if (h > height_[paren
384 vector<StateId> height_; member in class:fst::AcyclicMinimizer::HeightVisitor
[all...]
/external/deqp/framework/platform/X11/
H A DtcuX11.cpp213 unsigned width_, height_, borderWidth, depth; local
215 XGetGeometry(m_display.getXDisplay(), m_window, &root, &x, &y, &width_, &height_, &borderWidth, &depth);
219 *height = static_cast<int>(height_);
/external/deqp/framework/referencerenderer/
H A DrrRenderState.hpp217 WindowRectangle (int left_, int bottom_, int width_, int height_) argument
221 , height (height_)
/external/webp/src/utils/
H A Dquant_levels_dec.c46 int width_, height_; // dimension member in struct:__anon16985
101 if (p->row_ >= 0 && p->row_ < p->height_ - 1) {
235 p->height_ = height;
266 for (; p.row_ < p.height_; ++p.row_) {
/external/openfst/src/include/fst/script/
H A Ddraw-impl.h60 title_(title), width_(width), height_(height), portrait_(portrait),
81 Print(height_);
220 float height_; member in class:fst::FstDrawer
/external/webp/src/demux/
H A Ddemux.c45 int width_, height_; member in struct:Frame
254 frame->height_ = features.height;
313 frame->height_ = 1 + ReadLE24s(mem);
319 if (frame->width_ * (uint64_t)frame->height_ >= MAX_IMAGE_AREA) {
447 if (!dmux->is_ext_format_ && frame->width_ > 0 && frame->height_ > 0) {
450 dmux->canvas_height_ = frame->height_;
603 if (frame->width_ <= 0 || frame->height_ <= 0) return 0;
617 if (frame->width_ != canvas_width || frame->height_ != canvas_height) {
623 if (frame->height_ + frame->y_offset_ > canvas_height) return 0;
663 if (f->width_ <= 0 || f->height_ <
[all...]
/external/harfbuzz_ng/util/
H A Dansi-print.cc96 unsigned int height_,
100 height (height_),
105 unsigned int height_) :
107 height (height_),
95 image_t(unsigned int width_, unsigned int height_, const uint32_t *data_, unsigned int stride_) argument
104 image_t(unsigned int width_, unsigned int height_) argument

Completed in 553 milliseconds

12