Searched refs:last_q (Results 1 - 20 of 20) sorted by relevance

/external/blktrace/btt/
H A Dtrace_queue.c30 update_lq(&last_q, &all_avgs.q2q_dm, q_iop->t.time);
33 update_lq(&last_q, &all_avgs.q2q, q_iop->t.time);
H A Dinlines.h117 static inline void update_lq(__u64 *last_q, struct avg_info *avg, __u64 time) argument
119 if (*last_q != ((__u64)-1))
120 avg_update(avg, (time > *last_q) ? time - *last_q : 1);
121 *last_q = time;
127 update_lq(&dip->last_q, &dip->avgs.q2q_dm, iop->t.time);
129 update_lq(&dip->last_q, &dip->avgs.q2q, iop->t.time);
H A Dproc.c215 pip->last_q = (__u64)-1;
226 update_lq(&iop->pip->last_q, &iop->pip->avgs.q2q_dm,
229 update_lq(&iop->pip->last_q, &iop->pip->avgs.q2q,
H A Dglobals.h113 __u64 last_q; member in struct:p_info
141 __u64 last_q, n_qs, n_ds; member in struct:d_info
182 extern __u64 last_q;
H A Dbt_timeline.c50 __u64 last_q = (__u64)-1; variable
H A Ddevs.c137 dip->last_q = (__u64)-1;
/external/libvpx/libvpx/vp9/common/
H A Dvp9_postproc.h26 int last_q; member in struct:postproc_state
H A Dvp9_postproc.c586 state->last_q = q;
725 if (ppstate->last_q != q ||
/external/libvpx/libvpx/vp8/common/
H A Dpostproc.h18 int last_q; member in struct:postproc_state
H A Dpostproc.c489 state->last_q = q;
825 if (oci->postproc_state.last_q != q
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_ratectrl.h82 int last_q[FRAME_TYPES]; // Separate values for Intra/Inter member in struct:__anon11544
H A Dvp9_ratectrl.c326 rc->last_q[KEY_FRAME] = oxcf->best_allowed_q;
327 rc->last_q[INTER_FRAME] = oxcf->worst_allowed_q;
617 : rc->last_q[KEY_FRAME] * 2;
621 active_worst_quality = curr_frame == 1 ? rc->last_q[KEY_FRAME] * 5 / 4
622 : rc->last_q[INTER_FRAME];
624 active_worst_quality = curr_frame == 1 ? rc->last_q[KEY_FRAME] * 2
625 : rc->last_q[INTER_FRAME] * 2;
1295 rc->last_q[KEY_FRAME] = qindex;
1306 lrc->last_q[KEY_FRAME] = rc->last_q[KEY_FRAM
[all...]
H A Dvp9_svc_layercontext.c80 lrc->last_q[INTER_FRAME] = oxcf->worst_allowed_q;
85 lrc->last_q[KEY_FRAME] = oxcf->best_allowed_q;
86 lrc->last_q[INTER_FRAME] = oxcf->best_allowed_q;
H A Dvp9_firstpass.c2663 rc->last_q[INTER_FRAME] = tmp_q;
2666 rc->last_q[KEY_FRAME] = (tmp_q + cpi->oxcf.best_allowed_q) / 2;
2667 rc->avg_frame_qindex[KEY_FRAME] = rc->last_q[KEY_FRAME];
H A Dvp9_encoder.c3448 int last_q = q; local
3493 loop = q != last_q;
3499 int last_q = q; local
3583 loop = (q != last_q);
/external/webp/src/enc/
H A Dframe.c37 float q, last_q; member in struct:__anon21113
50 s->q = s->last_q = enc->config_->quality;
70 dq = (float)(slope * (s->last_q - s->q));
76 s->last_q = s->q;
610 num_pass_left, stats.last_value, stats.value, stats.last_q, stats.q);
813 printf("#%2d metric:%.1lf -> %.1lf last_q=%.2lf q=%.2lf dq=%.2lf\n",
815 stats.last_q, stats.q, stats.dq);
/external/libvpx/libvpx/vp8/encoder/
H A Donyx_int.h368 int last_q[2]; /* Separate values for Intra/Inter */ member in struct:VP8_COMP
H A Dratectrl.c444 int Q = (cpi->oxcf.fixed_q < 0) ? cpi->last_q[INTER_FRAME] : cpi->oxcf.fixed_q;
981 int Q = (cpi->oxcf.fixed_q < 0) ? cpi->last_q[INTER_FRAME] : cpi->oxcf.fixed_q;
H A Donyx_if.c1775 cpi->last_q[0] = cpi->oxcf.fixed_q;
1776 cpi->last_q[1] = cpi->oxcf.fixed_q;
4462 int last_q = Q; local
4491 Loop = Q != last_q;
4501 int last_q = Q; local
4639 Loop = Q != last_q;
4865 cpi->last_q[cm->frame_type] = cm->base_qindex;
H A Dfirstpass.c1961 ? cpi->last_q[INTER_FRAME] : cpi->oxcf.fixed_q;
2155 int Q = (cpi->oxcf.fixed_q < 0) ? cpi->last_q[INTER_FRAME] : cpi->oxcf.fixed_q;

Completed in 300 milliseconds