Searched defs:i_temp (Results 1 - 10 of 10) sorted by relevance

/external/clang/test/CodeGen/
H A Dmips-constraint-regs.c24 int i_temp = 44; local
29 : "r" (i_temp)
/external/libavc/decoder/
H A Dih264d_parse_headers.c202 WORD32 i_temp; local
283 i_temp = 26 + ih264d_sev(pu4_bitstrm_ofst, pu4_bitstrm_buf);
285 if((i_temp < 0) || (i_temp > 51))
288 ps_pps->u1_pic_init_qp = i_temp;
291 i_temp = 26 + ih264d_sev(pu4_bitstrm_ofst, pu4_bitstrm_buf);
293 if((i_temp < 0) || (i_temp > 51))
296 ps_pps->u1_pic_init_qs = i_temp;
299 i_temp
[all...]
H A Dih264d_parse_islice.c1377 WORD32 i_temp; local
1389 i_temp = ih264d_read_mmco_commands(ps_dec);
1390 if (i_temp < 0)
1394 ps_dec->u4_bitoffset = i_temp;
1402 i_temp = ps_pps->u1_pic_init_qp
1404 if((i_temp < 0) || (i_temp > 51))
1406 ps_slice->u1_slice_qp = i_temp;
1422 i_temp = ih264d_sev(pu4_bitstrm_ofst, pu4_bitstrm_buf)
1424 if((MIN_DBLK_FIL_OFF > i_temp) || (i_tem
[all...]
H A Dih264d_dpb_mgr.c727 WORD32 i_temp; local
755 i_temp = u2_pred_frame_num - ui_nextUev;
756 if(i_temp < 0)
757 i_temp += ui_max_frame_num;
762 i_temp = u2_pred_frame_num + ui_nextUev;
763 if(i_temp >= ui_max_frame_num)
764 i_temp -= ui_max_frame_num;
768 if(i_temp > u4_cur_pic_num)
769 i_temp = i_temp
[all...]
H A Dih264d_parse_slice.c1022 WORD32 i_temp; local
1222 i_temp = ih264d_get_bits_h264(
1225 if(i_temp < 0 || i_temp >= ps_seq->i4_max_pic_order_cntLsb)
1227 s_tmp_poc.i4_pic_order_cnt_lsb = i_temp;
H A Dih264d_parse_bslice.c830 WORD32 i_temp; local
854 i_temp = (-(WORD32)u4_abs_val);
856 i_temp = (u4_abs_val);
858 if(i_temp < -26 || i_temp > 25)
861 COPYTHECONTEXT("mb_qp_delta", i_temp);
862 if(i_temp)
864 ret = ih264d_update_qp(ps_dec, (WORD8)i_temp);
1359 WORD32 i_temp; local
1580 i_temp
[all...]
H A Dih264d_parse_pslice.c361 WORD32 i_temp; local
385 i_temp = (-(WORD32)u4_abs_val);
387 i_temp = (u4_abs_val);
389 if((i_temp < -26) || (i_temp > 25))
393 COPYTHECONTEXT("mb_qp_delta", i_temp);
394 if(i_temp)
396 ret = ih264d_update_qp(ps_dec, (WORD8)i_temp);
1926 WORD32 i_temp; local
2103 i_temp
[all...]
H A Dih264d_process_pslice.c829 WORD32 i_temp; local
865 i_temp = ih264d_sev(pu4_bitstrm_ofst,
867 if((i_temp + 128) & MASK_PRED_WEIGHT_OFFSET)
869 c_weight = i_temp;
872 i_temp = ih264d_sev(pu4_bitstrm_ofst,
874 if((i_temp + 128) & MASK_PRED_WEIGHT_OFFSET)
876 c_offset = i_temp;
895 i_temp = ih264d_sev(pu4_bitstrm_ofst,
897 if((i_temp + 128) & MASK_PRED_WEIGHT_OFFSET)
899 c_weightCb = i_temp;
[all...]
H A Dih264d_utils.c1438 WORD32 i_temp; local
1439 i_temp = (ps_dec->u1_qp + i1_qp + 52) % 52;
1441 if((i_temp < 0) || (i_temp > 51) || (i1_qp < -26) || (i1_qp > 25))
1444 ps_dec->u1_qp = i_temp;
1447 i_temp = CLIP3(0, 51, ps_dec->u1_qp + ps_dec->ps_cur_pps->i1_chroma_qp_index_offset);
1448 ps_dec->u1_qp_u_rem6 = MOD(gau1_ih264d_qp_scale_cr[12 + i_temp], 6);
1449 ps_dec->u1_qp_u_div6 = DIV(gau1_ih264d_qp_scale_cr[12 + i_temp], 6);
1451 i_temp = CLIP3(0, 51, ps_dec->u1_qp + ps_dec->ps_cur_pps->i1_second_chroma_qp_index_offset);
1452 ps_dec->u1_qp_v_rem6 = MOD(gau1_ih264d_qp_scale_cr[12 + i_temp],
[all...]
/external/webrtc/webrtc/base/
H A Dhttpclient.cc117 size_t i_temp; local
119 && HttpStringToUInt(s_temp, (&i_temp))) {
120 u_temp = static_cast<time_t>(i_temp);

Completed in 284 milliseconds