Searched refs:height_ (Results 1 - 25 of 181) sorted by last modified time

12345678

/external/webp/src/dec/
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 Dalphai.h29 int height_; member in struct:ALPHDecoder
H A Dframe.c553 (uint64_t)dec->pic_hdr_.width_ * dec->pic_hdr_.height_ : 0ULL;
H A Dvp8.c300 pic_hdr->height_ = ((buf[6] << 8) | buf[5]) & 0x3fff;
306 dec->mb_h_ = (pic_hdr->height_ + 15) >> 4;
309 io->height = pic_hdr->height_;
H A Dvp8i.h117 uint16_t height_; member in struct:__anon33334
H A Dvp8l.c707 assert(dec->last_row_ <= dec->height_);
1088 dec->height_ = height;
1192 const uint64_t num_pixels = (uint64_t)dec->width_ * dec->height_;
1213 const uint64_t total_num_pixels = (uint64_t)dec->width_ * dec->height_;
1257 dec->height_ = alph_dec->height_;
1265 io->height = alph_dec->height_;
1271 if (!DecodeImageStream(alph_dec->width_, alph_dec->height_, 1, dec, NULL)) {
1304 assert(last_row <= dec->height_);
1306 if (dec->last_pixel_ == dec->width_ * dec->height_) {
[all...]
H A Dvp8li.h71 int height_; member in struct:VP8LDecoder
/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/webp/src/utils/
H A Dquant_levels_dec.c46 int width_, height_; // dimension member in struct:__anon33398
101 if (p->row_ >= 0 && p->row_ < p->height_ - 1) {
235 p->height_ = height;
266 for (; p.row_ < p.height_; ++p.row_) {
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dminimize.h327 for (size_t i = height_.size(); i <= (size_t)s; ++i)
328 height_.push_back(-1);
346 if (height_[arc.nextstate] + 1 > height_[s])
347 height_[s] = height_[arc.nextstate] + 1;
353 if (height_[s] == -1) height_[s] = 0;
354 StateId h = height_[s] + 1;
356 if (h > height_[paren
371 vector<StateId> height_; member in class:fst::AcyclicMinimizer::HeightVisitor
[all...]
/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/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/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/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 Dsad_test.cc52 SADTestBase(int width, int height) : width_(width), height_(height) {}
94 for (int h = 0; h < height_; ++h) {
107 for (int h = 0; h < height_; ++h) {
115 for (int h = 0; h < height_; ++h) {
122 int width_, height_; member in class:__anon24792::SADTestBase
H A Dsixtap_predict_test.cc68 height_ = GET_PARAM(1);
76 int height_; member in class:__anon24794::SixtapPredictTest
149 for (int i = 0; i < height_; ++i)
176 for (int i = 0; i < height_; ++i)
H A Dvariance_test.cc88 height_ = 1 << log2height_;
92 block_size_ = width_ * height_;
114 int height_, log2height_; member in class:__anon24800::VarianceTest
204 height_ = 1 << log2height_;
208 block_size_ = width_ * height_;
211 ref_ = new uint8_t[block_size_ + width_ + height_ + 1];
232 int height_, log2height_; member in class:__anon24800::SubpelVarianceTest
244 for (int j = 0; j < block_size_ + width_ + height_ + 1; j++) {
267 for (int j = 0; j < block_size_ + width_ + height_ + 1; j++) {
H A Dvideo_source.h87 DummyVideoSource() : img_(NULL), limit_(100), width_(0), height_(0) {
122 if (width != width_ || height != height_) {
127 height_ = height;
139 unsigned int height_; member in class:libvpx_test::DummyVideoSource
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvmuxer.cpp807 height_(0),
861 if (!WriteEbmlElement(writer, kMkvPixelHeight, height_))
891 size += EbmlElementSize(kMkvPixelHeight, height_);
H A Dmkvmuxer.hpp428 void set_height(uint64 height) { height_ = height; }
429 uint64 height() const { return height_; }
443 uint64 height_; member in class:mkvmuxer::VideoTrack
/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
/external/deqp/modules/gles3/functional/
H A Des3fShaderTextureFunctionTests.cpp200 int height_,
207 , height (height_)
197 TextureSpec(TextureType type_, deUint32 format_, int width_, int height_, int depth_, int numLevels_, const tcu::Sampler& sampler_) argument
/external/deqp/modules/gles31/functional/
H A Des31fFboNoAttachmentTests.cpp319 FboSpec(int width_, int height_, int samples_) : width(width_), height(height_), samples(samples_){} argument
H A Des31fSeparateShaderTests.cpp957 Rectangle (int x_, int y_, int width_, int height_)
961 , height (height_) {}

Completed in 6861 milliseconds

12345678