Lines Matching defs:ij
181 int ij = i + j;
183 if(r->deblock_coefs[mb_pos] & (1 << ij))
185 else if(!i && r->deblock_coefs[mb_pos - 1] & (1 << (ij + 3)))
187 else if( i && r->deblock_coefs[mb_pos] & (1 << (ij - 1)))
201 int ij = i + (j >> 1);
203 if (cur_cbp & (1 << ij))
205 else if(!i && left_cbp & (1 << (ij + 1)))
207 else if( i && cur_cbp & (1 << (ij - 1)))
223 int ij = i + j;
225 if(r->deblock_coefs[mb_pos] & (1 << ij))
227 else if(!j && r->deblock_coefs[mb_pos - s->mb_stride] & (1 << (ij + 12)))
229 else if( j && r->deblock_coefs[mb_pos] & (1 << (ij - 4)))
243 int ij = i + (j >> 1);
245 if (r->cbp_chroma[mb_pos] & (1 << ij))
247 else if(!j && top_cbp & (1 << (ij + 2)))
249 else if( j && cur_cbp & (1 << (ij - 2)))