Lines Matching refs:nnz
1475 int nnz_pred, nnz, nnz_total = 0; in decode_mb_coeffs() local
1483 nnz = decode_block_coeffs(c, td->block_dc, s->prob->token[1], 0, in decode_mb_coeffs()
1486 l_nnz[8] = t_nnz[8] = !!nnz; in decode_mb_coeffs()
1489 nnz |= inter_predict_dc(td->block_dc, in decode_mb_coeffs()
1493 if (nnz) { in decode_mb_coeffs()
1494 nnz_total += nnz; in decode_mb_coeffs()
1496 if (nnz == 1) in decode_mb_coeffs()
1509 nnz = decode_block_coeffs(c, td->block[y][x], in decode_mb_coeffs()
1516 td->non_zero_count_cache[y][x] = nnz + block_dc; in decode_mb_coeffs()
1517 t_nnz[x] = l_nnz[y] = !!nnz; in decode_mb_coeffs()
1518 nnz_total += nnz; in decode_mb_coeffs()
1528 nnz = decode_block_coeffs(c, td->block[i][(y << 1) + x], in decode_mb_coeffs()
1532 td->non_zero_count_cache[i][(y << 1) + x] = nnz; in decode_mb_coeffs()
1533 t_nnz[i + 2 * x] = l_nnz[i + 2 * y] = !!nnz; in decode_mb_coeffs()
1534 nnz_total += nnz; in decode_mb_coeffs()
1674 int x, y, mode, nnz; in intra_predict() local
1757 nnz = td->non_zero_count_cache[y][x]; in intra_predict()
1758 if (nnz) { in intra_predict()
1759 if (nnz == 1) in intra_predict()