Lines Matching refs:temp
116 RK_S32 i = 0, j = 0, temp = 0; in pred_weight_table() local
119 READ_UE(p_bitctx, &temp); //!< log2_weight_denom in pred_weight_table()
121 READ_UE(p_bitctx, &temp); //!< log2_weight_denom in pred_weight_table()
124 READ_ONEBIT(p_bitctx, &temp); //!< luma_weight_flag_l0 in pred_weight_table()
125 if (temp) { in pred_weight_table()
130 READ_ONEBIT(p_bitctx, &temp); //!< chroma_weight_flag_l0 in pred_weight_table()
132 if (temp) { //!< chroma_weight_flag_l0 in pred_weight_table()
142 READ_ONEBIT(p_bitctx, &temp); //!< luma_weight_flag_l1 in pred_weight_table()
143 if (temp) { in pred_weight_table()
148 READ_ONEBIT(p_bitctx, &temp); //!< chroma_weight_flag_l1 in pred_weight_table()
150 if (temp) { // chroma_weight_flag_l1 in pred_weight_table()
464 RK_U32 temp = 0; in process_slice() local
479 READ_UE(p_bitctx, &temp); //!< slice_type in process_slice()
480 p_Vid->slice_type = currSlice->slice_type = temp % 5; in process_slice()