HomeSort by relevance Sort by last modified time
    Searched refs:nz_ (Results 1 - 12 of 12) sorted by null

  /external/opencv3/3rdparty/libwebp/enc/
iterator.c 40 memset(enc->nz_, 0, enc->mb_w_ * sizeof(*enc->nz_));
51 it->nz_ = enc->nz_;
192 const int tnz = it->nz_[0], lnz = it->nz_[-1];
239 *it->nz_ = nz;
276 it->nz_++;
283 it->nz_ = enc->nz_;
    [all...]
vp8enci.h 284 uint32_t* nz_; // non-zero pattern member in struct:__anon20464
437 uint32_t* nz_; // non-zero bit context: mb_w+1 member in struct:VP8Encoder
webpenc.c 95 enc->nz_[-1] = 0; // constant
248 enc->nz_ = 1 + (uint32_t*)mem;
frame.c 859 *it->nz_ = 0; // reset all predictors
862 *it->nz_ &= (1 << 24); // preserve the dc_nz bit
  /external/webp/src/dec/
vp8.c 484 tnz = mb->nz_ & 0x0f;
485 lnz = left_mb->nz_ & 0x0f;
506 tnz = mb->nz_ >> (4 + ch);
507 lnz = left_mb->nz_ >> (4 + ch);
526 mb->nz_ = out_t_nz;
527 left_mb->nz_ = out_l_nz;
552 left->nz_ = mb->nz_ = 0;
572 left->nz_ = 0;
vp8i.h 132 uint8_t nz_; // non-zero AC/DC coeffs (4bit for luma + 4bit for chroma) member in struct:__anon26117
  /external/webp/src/enc/
iterator.c 35 memset(enc->nz_, 0, enc->mb_w_ * sizeof(*enc->nz_));
44 it->nz_ = enc->nz_;
231 const int tnz = it->nz_[0], lnz = it->nz_[-1];
278 *it->nz_ = nz;
314 it->nz_ += 1;
webpenc.c 67 enc->nz_[-1] = 0; // constant
151 const size_t nz_size = (mb_w + 1) * sizeof(*enc->nz_) + WEBP_ALIGN_CST;
208 enc->nz_ = 1 + (uint32_t*)WEBP_ALIGN(mem);
vp8enci.h 232 uint32_t* nz_; // non-zero pattern member in struct:__anon26165
405 uint32_t* nz_; // non-zero bit context: mb_w+1 member in struct:VP8Encoder
frame.c 690 *it->nz_ = 0; // reset all predictors
693 *it->nz_ &= (1 << 24); // preserve the dc_nz bit
  /external/opencv3/3rdparty/libwebp/dec/
vp8.c 581 tnz = kUnpackTab[mb->nz_ & 0xf];
582 lnz = kUnpackTab[left_mb->nz_ & 0xf];
601 tnz = kUnpackTab[mb->nz_ >> 4];
602 lnz = kUnpackTab[left_mb->nz_ >> 4];
623 mb->nz_ = out_t_nz;
624 left_mb->nz_ = out_l_nz;
658 left->nz_ = info->nz_ = 0;
677 left->nz_ = 0;
vp8i.h 162 unsigned int nz_:24; // non-zero AC/DC coeffs (24bit) member in struct:__anon20429

Completed in 93 milliseconds