HomeSort by relevance Sort by last modified time
    Searched refs:last_q (Results 1 - 25 of 33) sorted by null

1 2

  /external/blktrace/btt/
trace_queue.c 30 update_lq(&last_q, &all_avgs.q2q_dm, q_iop->t.time);
33 update_lq(&last_q, &all_avgs.q2q, q_iop->t.time);
inlines.h 117 static inline void update_lq(__u64 *last_q, struct avg_info *avg, __u64 time)
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);
proc.c 215 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,
globals.h 113 __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;
bt_timeline.c 50 __u64 last_q = (__u64)-1; variable
devs.c 137 dip->last_q = (__u64)-1;
  /external/libvpx/libvpx/vp9/common/
vp9_postproc.h 26 int last_q; member in struct:postproc_state
vp9_postproc.c 586 state->last_q = q;
725 if (ppstate->last_q != q ||
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_postproc.h 24 int last_q; member in struct:postproc_state
vp9_postproc.c 424 state->last_q = q;
636 if (ppstate->last_q != q ||
  /external/libvpx/libvpx/vp8/common/
postproc.h 18 int last_q; member in struct:postproc_state
postproc.c 489 state->last_q = q;
825 if (oci->postproc_state.last_q != q
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
postproc.h 18 int last_q; member in struct:postproc_state
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_ratectrl.h 30 int last_q[3]; // Separate values for Intra/Inter/ARF-GF member in struct:__anon30259
vp9_svc_layercontext.c 49 lrc->last_q[INTER_FRAME] = q_trans[oxcf->worst_allowed_q];
52 lrc->last_q[0] = q_trans[oxcf->best_allowed_q];
53 lrc->last_q[1] = q_trans[oxcf->best_allowed_q];
54 lrc->last_q[2] = q_trans[oxcf->best_allowed_q];
vp9_ratectrl.c 423 : rc->last_q[KEY_FRAME] * 2;
427 active_worst_quality = curr_frame == 1 ? rc->last_q[KEY_FRAME] * 5 / 4
428 : rc->last_q[INTER_FRAME];
430 active_worst_quality = curr_frame == 1 ? rc->last_q[KEY_FRAME] * 2
431 : rc->last_q[INTER_FRAME] * 2;
    [all...]
vp9_onyx_if.c 771 rc->last_q[0] = oxcf->best_allowed_q;
772 rc->last_q[1] = oxcf->best_allowed_q;
773 rc->last_q[2] = oxcf->best_allowed_q;
2357 int last_q = q; local
2398 int last_q = q; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_ratectrl.h 82 int last_q[FRAME_TYPES]; // Separate values for Intra/Inter member in struct:__anon16626
vp9_ratectrl.c 326 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;
    [all...]
vp9_svc_layercontext.c 80 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;
  /external/webp/src/enc/
frame.c 37 float q, last_q; member in struct:__anon26148
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/
onyx_int.h 368 int last_q[2]; /* Separate values for Intra/Inter */ member in struct:VP8_COMP
ratectrl.c 444 int Q = (cpi->oxcf.fixed_q < 0) ? cpi->last_q[INTER_FRAME] : cpi->oxcf.fixed_q;
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
onyx_int.h 371 int last_q[2]; /* Separate values for Intra/Inter */ member in struct:VP8_COMP
ratectrl.c 442 int Q = (cpi->oxcf.fixed_q < 0) ? cpi->last_q[INTER_FRAME] : cpi->oxcf.fixed_q;
    [all...]

Completed in 1156 milliseconds

1 2