Lines Matching refs:nz
189 #define BIT(nz, n) (!!((nz) & (1 << (n)))) argument
225 uint32_t nz = 0; in VP8IteratorBytesToNz() local
229 nz |= (top_nz[0] << 12) | (top_nz[1] << 13); in VP8IteratorBytesToNz()
230 nz |= (top_nz[2] << 14) | (top_nz[3] << 15); in VP8IteratorBytesToNz()
231 nz |= (top_nz[4] << 18) | (top_nz[5] << 19); in VP8IteratorBytesToNz()
232 nz |= (top_nz[6] << 22) | (top_nz[7] << 23); in VP8IteratorBytesToNz()
233 nz |= (top_nz[8] << 24); // we propagate the _top_ bit, esp. for intra4 in VP8IteratorBytesToNz()
235 nz |= (left_nz[0] << 3) | (left_nz[1] << 7); in VP8IteratorBytesToNz()
236 nz |= (left_nz[2] << 11); in VP8IteratorBytesToNz()
237 nz |= (left_nz[4] << 17) | (left_nz[6] << 21); in VP8IteratorBytesToNz()
239 *it->nz_ = nz; in VP8IteratorBytesToNz()