HomeSort by relevance Sort by last modified time
    Searched defs:tnz (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/libwebp/enc/
iterator.c 231 const int tnz = it->nz_[0], lnz = it->nz_[-1]; local
236 top_nz[0] = BIT(tnz, 12);
237 top_nz[1] = BIT(tnz, 13);
238 top_nz[2] = BIT(tnz, 14);
239 top_nz[3] = BIT(tnz, 15);
241 top_nz[4] = BIT(tnz, 18);
242 top_nz[5] = BIT(tnz, 19);
244 top_nz[6] = BIT(tnz, 22);
245 top_nz[7] = BIT(tnz, 23);
247 top_nz[8] = BIT(tnz, 24)
    [all...]
  /external/chromium_org/third_party/libwebp/dec/
vp8.c 464 uint8_t tnz, lnz; local
491 tnz = mb->nz_ & 0x0f;
497 const int ctx = l + (tnz & 1);
500 tnz = (tnz >> 1) | (l << 7);
504 tnz >>= 4;
508 out_t_nz = tnz;
513 tnz = mb->nz_ >> (4 + ch);
518 const int ctx = l + (tnz & 1);
521 tnz = (tnz >> 1) | (l << 3)
    [all...]

Completed in 32 milliseconds