Lines Matching refs:nz
228 #define BIT(nz, n) (!!((nz) & (1 << (n)))) argument
264 uint32_t nz = 0; in VP8IteratorBytesToNz() local
268 nz |= (top_nz[0] << 12) | (top_nz[1] << 13); in VP8IteratorBytesToNz()
269 nz |= (top_nz[2] << 14) | (top_nz[3] << 15); in VP8IteratorBytesToNz()
270 nz |= (top_nz[4] << 18) | (top_nz[5] << 19); in VP8IteratorBytesToNz()
271 nz |= (top_nz[6] << 22) | (top_nz[7] << 23); in VP8IteratorBytesToNz()
272 nz |= (top_nz[8] << 24); // we propagate the _top_ bit, esp. for intra4 in VP8IteratorBytesToNz()
274 nz |= (left_nz[0] << 3) | (left_nz[1] << 7); in VP8IteratorBytesToNz()
275 nz |= (left_nz[2] << 11); in VP8IteratorBytesToNz()
276 nz |= (left_nz[4] << 17) | (left_nz[6] << 21); in VP8IteratorBytesToNz()
278 *it->nz_ = nz; in VP8IteratorBytesToNz()