Searched defs:ct (Results 1 - 14 of 14) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
H A Dvp9_prob.c50 const unsigned int ct[2] = { left_count, right_count }; local
51 probs[i >> 1] = merge_probs(pre_probs[i >> 1], ct,
H A Dvp9_prob.h73 const unsigned int ct[2],
76 const vp9_prob prob = get_binary_prob(ct[0], ct[1]);
77 const unsigned int count = MIN(ct[0] + ct[1], count_sat);
72 merge_probs(vp9_prob pre_prob, const unsigned int ct[2], unsigned int count_sat, unsigned int max_update_factor) argument
H A Dvp9_entropymode.c340 static int adapt_prob(vp9_prob pre_prob, const unsigned int ct[2]) { argument
341 return merge_probs(pre_prob, ct, COUNT_SAT, MAX_UPDATE_FACTOR);
H A Dvp9_entropymv.c186 static vp9_prob adapt_prob(vp9_prob prep, const unsigned int ct[2]) { argument
187 return merge_probs(prep, ct, MV_COUNT_SAT, MV_MAX_UPDATE_FACTOR);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_cost.h29 static INLINE unsigned int cost_branch256(const unsigned int ct[2], argument
31 return ct[0] * vp9_cost_zero(p) + ct[1] * vp9_cost_one(p);
H A Dvp9_subexp.c120 int vp9_prob_diff_update_savings_search(const unsigned int *ct, argument
123 const int old_b = cost_branch256(ct, oldp);
129 const int new_b = cost_branch256(ct, newp);
141 int vp9_prob_diff_update_savings_search_model(const unsigned int *ct, argument
151 old_b += cost_branch256(ct + 2 * i, oldplist[i]);
152 old_b += cost_branch256(ct + 2 * PIVOT_NODE, oldplist[PIVOT_NODE]);
165 new_b += cost_branch256(ct + 2 * i, newplist[i]);
166 new_b += cost_branch256(ct + 2 * PIVOT_NODE, newplist[PIVOT_NODE]);
180 const unsigned int ct[2]) {
182 vp9_prob newp = get_binary_prob(ct[
179 vp9_cond_prob_diff_update(vp9_writer *w, vp9_prob *oldp, const unsigned int ct[2]) argument
[all...]
H A Dvp9_encodemv.c136 static int update_mv(vp9_writer *w, const unsigned int ct[2], vp9_prob *cur_p, argument
138 const vp9_prob new_p = get_binary_prob(ct[0], ct[1]) | 1;
139 const int update = cost_branch256(ct, *cur_p) + vp9_cost_zero(upd_p) >
140 cost_branch256(ct, new_p) + vp9_cost_one(upd_p) + 7 * 256;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
H A Dtreecoder.c83 const unsigned int ct = num_events[t]; local
95 branch_ct [j] [b] += ct;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
H A Dtreewriter.h49 static unsigned int vp8_cost_branch(const unsigned int ct[2], vp8_prob p) argument
53 return ((ct[0] * vp8_cost_zero(p))
54 + (ct[1] * vp8_cost_one(p))) >> 8;
H A Dencodemv.c187 static void calc_prob(vp8_prob *p, const unsigned int ct[2]) argument
189 const unsigned int tot = ct[0] + ct[1];
193 const vp8_prob x = ((ct[0] * 255) / tot) & -2;
200 const unsigned int ct[2],
207 const int cur_b = vp8_cost_branch(ct, *cur_p);
208 const int new_b = vp8_cost_branch(ct, new_p);
302 vp8_prob p [mvnum_short - 1]; /* actually only need branch ct */
198 update( vp8_writer *const w, const unsigned int ct[2], vp8_prob *const cur_p, const vp8_prob new_p, const vp8_prob update_p, int *updated ) argument
H A Dbitstream.c629 int ct[4]; local
631 vp8_find_near_mvs(xd, m, &n1, &n2, &best_mv, ct, rf, cpi->common.ref_frame_sign_bias);
634 vp8_mv_ref_probs(mv_ref_p, ct);
637 accum_mv_refs(mode, ct);
840 static int prob_update_savings(const unsigned int *ct, argument
844 const int old_b = vp8_cost_branch(ct, oldp);
845 const int new_b = vp8_cost_branch(ct, newp);
895 const unsigned int *ct = cpi->frame_branch_ct [i][j][k][t]; local
899 const int s = prob_update_savings(ct, oldp, newp, upd);
956 const unsigned int *ct local
1102 const unsigned int *ct = cpi->frame_branch_ct [i][j] local
[all...]
H A Dmcomp.c1982 void accum_mv_refs(MB_PREDICTION_MODE m, const int ct[4]) argument
1986 ++mv_ref_ct [ct[0]] [0] [0];
1991 ++mv_ref_ct [ct[0]] [0] [1];
1996 ++mv_ref_ct [ct[1]] [1] [0];
2001 ++mv_ref_ct [ct[1]] [1] [1];
2006 ++mv_ref_ct [ct[2]] [2] [0];
2011 ++mv_ref_ct [ct[2]] [2] [1];
2016 ++mv_ref_ct [ct[3]] [3] [0];
2021 ++mv_ref_ct [ct[3]] [3] [1];
/hardware/intel/bootstub/
H A Dbootstub.c117 int strncmp(const char *cs, const char *ct, size_t count) argument
123 c2 = *ct++;
/hardware/ril/reference-ril/
H A Dreference-ril.c2832 int ct; local
2845 err = at_tok_nextint(&p, &ct);
2850 if (current) *current = ct;

Completed in 420 milliseconds