/external/libavc/decoder/ |
D | ih264d_process_pslice.c | 829 WORD32 i_temp; in ih264d_parse_pred_weight_table() local 865 i_temp = ih264d_sev(pu4_bitstrm_ofst, in ih264d_parse_pred_weight_table() 867 if((i_temp + 128) & MASK_PRED_WEIGHT_OFFSET) in ih264d_parse_pred_weight_table() 869 c_weight = i_temp; in ih264d_parse_pred_weight_table() 872 i_temp = ih264d_sev(pu4_bitstrm_ofst, in ih264d_parse_pred_weight_table() 874 if((i_temp + 128) & MASK_PRED_WEIGHT_OFFSET) in ih264d_parse_pred_weight_table() 876 c_offset = i_temp; in ih264d_parse_pred_weight_table() 895 i_temp = ih264d_sev(pu4_bitstrm_ofst, in ih264d_parse_pred_weight_table() 897 if((i_temp + 128) & MASK_PRED_WEIGHT_OFFSET) in ih264d_parse_pred_weight_table() 899 c_weightCb = i_temp; in ih264d_parse_pred_weight_table() [all …]
|
D | ih264d_parse_headers.c | 202 WORD32 i_temp; in ih264d_parse_pps() local 289 i_temp = 26 + ih264d_sev(pu4_bitstrm_ofst, pu4_bitstrm_buf); in ih264d_parse_pps() 291 if((i_temp < 0) || (i_temp > 51)) in ih264d_parse_pps() 294 ps_pps->u1_pic_init_qp = i_temp; in ih264d_parse_pps() 297 i_temp = 26 + ih264d_sev(pu4_bitstrm_ofst, pu4_bitstrm_buf); in ih264d_parse_pps() 299 if((i_temp < 0) || (i_temp > 51)) in ih264d_parse_pps() 302 ps_pps->u1_pic_init_qs = i_temp; in ih264d_parse_pps() 305 i_temp = ih264d_sev(pu4_bitstrm_ofst, pu4_bitstrm_buf); in ih264d_parse_pps() 306 if((i_temp < -12) || (i_temp > 12)) in ih264d_parse_pps() 308 ps_pps->i1_chroma_qp_index_offset = i_temp; in ih264d_parse_pps() [all …]
|
D | ih264d_parse_bslice.c | 830 WORD32 i_temp; in ih264d_parse_bmb_cavlc() local 854 i_temp = (-(WORD32)u4_abs_val); in ih264d_parse_bmb_cavlc() 856 i_temp = (u4_abs_val); in ih264d_parse_bmb_cavlc() 858 if(i_temp < -26 || i_temp > 25) in ih264d_parse_bmb_cavlc() 861 COPYTHECONTEXT("mb_qp_delta", i_temp); in ih264d_parse_bmb_cavlc() 862 if(i_temp) in ih264d_parse_bmb_cavlc() 864 ret = ih264d_update_qp(ps_dec, (WORD8)i_temp); in ih264d_parse_bmb_cavlc() 1358 WORD32 i_temp; in ih264d_parse_bslice() local 1579 i_temp = ih264d_read_mmco_commands(ps_dec); in ih264d_parse_bslice() 1580 if (i_temp < 0) in ih264d_parse_bslice() [all …]
|
D | ih264d_parse_islice.c | 1377 WORD32 i_temp; in ih264d_parse_islice() local 1389 i_temp = ih264d_read_mmco_commands(ps_dec); in ih264d_parse_islice() 1390 if (i_temp < 0) in ih264d_parse_islice() 1394 ps_dec->u4_bitoffset = i_temp; in ih264d_parse_islice() 1402 i_temp = ps_pps->u1_pic_init_qp in ih264d_parse_islice() 1404 if((i_temp < 0) || (i_temp > 51)) in ih264d_parse_islice() 1406 ps_slice->u1_slice_qp = i_temp; in ih264d_parse_islice() 1422 i_temp = ih264d_sev(pu4_bitstrm_ofst, pu4_bitstrm_buf) in ih264d_parse_islice() 1424 if((MIN_DBLK_FIL_OFF > i_temp) || (i_temp > MAX_DBLK_FIL_OFF)) in ih264d_parse_islice() 1428 ps_slice->i1_slice_alpha_c0_offset = i_temp; in ih264d_parse_islice() [all …]
|
D | ih264d_parse_pslice.c | 361 WORD32 i_temp; in ih264d_parse_pmb_cavlc() local 385 i_temp = (-(WORD32)u4_abs_val); in ih264d_parse_pmb_cavlc() 387 i_temp = (u4_abs_val); in ih264d_parse_pmb_cavlc() 389 if((i_temp < -26) || (i_temp > 25)) in ih264d_parse_pmb_cavlc() 393 COPYTHECONTEXT("mb_qp_delta", i_temp); in ih264d_parse_pmb_cavlc() 394 if(i_temp) in ih264d_parse_pmb_cavlc() 396 ret = ih264d_update_qp(ps_dec, (WORD8)i_temp); in ih264d_parse_pmb_cavlc() 1926 WORD32 i_temp; in ih264d_parse_pslice() local 2103 i_temp = ih264d_read_mmco_commands(ps_dec); in ih264d_parse_pslice() 2104 if (i_temp < 0) in ih264d_parse_pslice() [all …]
|
D | ih264d_dpb_mgr.c | 726 WORD32 i_temp; in ih264d_ref_idx_reordering() local 758 i_temp = (WORD32)u2_pred_frame_num - (WORD32)ui_nextUev; in ih264d_ref_idx_reordering() 759 if(i_temp < 0) in ih264d_ref_idx_reordering() 760 i_temp += ui_max_frame_num; in ih264d_ref_idx_reordering() 765 i_temp = (WORD32)u2_pred_frame_num + (WORD32)ui_nextUev; in ih264d_ref_idx_reordering() 766 if(i_temp >= ui_max_frame_num) in ih264d_ref_idx_reordering() 767 i_temp -= ui_max_frame_num; in ih264d_ref_idx_reordering() 771 if(i_temp > u4_cur_pic_num) in ih264d_ref_idx_reordering() 772 i_temp = i_temp - ui_max_frame_num; in ih264d_ref_idx_reordering() 776 if(ps_dpb_mgr->ps_init_dpb[uc_lx][i]->i4_pic_num == i_temp) in ih264d_ref_idx_reordering() [all …]
|
D | ih264d_utils.c | 1471 WORD32 i_temp; in ih264d_update_qp() local 1472 i_temp = (ps_dec->u1_qp + i1_qp + 52) % 52; in ih264d_update_qp() 1474 if((i_temp < 0) || (i_temp > 51) || (i1_qp < -26) || (i1_qp > 25)) in ih264d_update_qp() 1477 ps_dec->u1_qp = i_temp; in ih264d_update_qp() 1480 i_temp = CLIP3(0, 51, ps_dec->u1_qp + ps_dec->ps_cur_pps->i1_chroma_qp_index_offset); in ih264d_update_qp() 1481 ps_dec->u1_qp_u_rem6 = MOD(gau1_ih264d_qp_scale_cr[12 + i_temp], 6); in ih264d_update_qp() 1482 ps_dec->u1_qp_u_div6 = DIV(gau1_ih264d_qp_scale_cr[12 + i_temp], 6); in ih264d_update_qp() 1484 i_temp = CLIP3(0, 51, ps_dec->u1_qp + ps_dec->ps_cur_pps->i1_second_chroma_qp_index_offset); in ih264d_update_qp() 1485 ps_dec->u1_qp_v_rem6 = MOD(gau1_ih264d_qp_scale_cr[12 + i_temp], 6); in ih264d_update_qp() 1486 ps_dec->u1_qp_v_div6 = DIV(gau1_ih264d_qp_scale_cr[12 + i_temp], 6); in ih264d_update_qp()
|
D | ih264d_parse_slice.c | 1088 WORD32 i_temp; in ih264d_parse_decode_slice() local 1232 i_temp = ih264d_get_bits_h264( in ih264d_parse_decode_slice() 1235 if(i_temp < 0 || i_temp >= ps_seq->i4_max_pic_order_cntLsb) in ih264d_parse_decode_slice() 1237 s_tmp_poc.i4_pic_order_cnt_lsb = i_temp; in ih264d_parse_decode_slice()
|
/external/clang/test/CodeGen/ |
D | mips-constraint-regs.c | 24 int i_temp = 44; in main() local 29 : "r" (i_temp) in main()
|
/external/icu/icu4c/source/i18n/ |
D | nfrule.cpp | 1042 int32_t i_temp = pp2.getErrorIndex() + sub1Pos + pp.getIndex(); in doParse() local 1043 if (i_temp> parsePosition.getErrorIndex()) { in doParse() 1044 parsePosition.setErrorIndex(i_temp); in doParse() 1051 int32_t i_temp = sub1Pos + pp.getErrorIndex(); in doParse() local 1052 if (i_temp > parsePosition.getErrorIndex()) { in doParse() 1053 parsePosition.setErrorIndex(i_temp); in doParse()
|
/external/webrtc/webrtc/base/ |
D | httpclient.cc | 117 size_t i_temp; in HttpGetCacheState() local 119 && HttpStringToUInt(s_temp, (&i_temp))) { in HttpGetCacheState() 120 u_temp = static_cast<time_t>(i_temp); in HttpGetCacheState()
|
/external/libhevc/encoder/ |
D | ihevce_rc_interface.c | 700 WORD32 i, i_temp, j; in ihevce_rc_init() local 749 i_temp = (WORD16)((float)pow(2, f_temp) + 0.5); in ihevce_rc_init() 751 i_temp = (i_temp << 3); // Q3 format is mantained for accuarate calc at lower qp in ihevce_rc_init() 753 for(i = 0; i <= i_temp; i++) in ihevce_rc_init()
|