Home | History | Annotate | Download | only in decoder

Lines Matching defs:u4_sig_coeff_map

253         UWORD32 u4_sig_coeff_map;
268 u4_sig_coeff_map = ps_tu_sblk_coeff_data->u2_sig_coeff_map;
269 //for(sblk_scan_idx = (31 - CLZ(u4_sig_coeff_map)); sblk_scan_idx >= 0; sblk_scan_idx--)
273 WORD32 clz = CLZ(u4_sig_coeff_map);
276 /* when clz is 31, u4_sig_coeff_map << (clz+1) might result in unknown behaviour in some cases */
278 u4_sig_coeff_map = u4_sig_coeff_map << clz;
325 u4_sig_coeff_map <<= 1;
327 }while(u4_sig_coeff_map);