Searched defs:top_index (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/tools/gn/
H A Dfilesystem_utils.cc447 // top_index is the first character we can modify in the path. Anything
449 size_t top_index = 0; local
456 top_index = 2;
459 top_index = 1;
463 size_t dest_i = top_index;
464 for (size_t src_i = top_index; src_i < path->size(); /* nothing */) {
481 if (dest_i > top_index) {
486 if (dest_i == top_index) {
499 top_index = dest_i;
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_ratectrl.c487 int *top_index) {
563 *top_index = active_worst_quality;
570 *top_index = (active_worst_quality + active_best_quality * 3) / 4;
579 if (q > *top_index) {
582 *top_index = q;
584 q = *top_index;
587 assert(*top_index <= rc->worst_quality &&
588 *top_index >= rc->best_quality);
597 int *top_index) {
724 *top_index
485 rc_pick_q_and_bounds_one_pass_cbr(const VP9_COMP *cpi, int *bottom_index, int *top_index) argument
595 rc_pick_q_and_bounds_one_pass_vbr(const VP9_COMP *cpi, int *bottom_index, int *top_index) argument
778 rc_pick_q_and_bounds_two_pass(const VP9_COMP *cpi, int *bottom_index, int *top_index) argument
961 vp9_rc_pick_q_and_bounds(const VP9_COMP *cpi, int *bottom_index, int *top_index) argument
[all...]
H A Dvp9_onyx_if.c2205 int top_index) {
2212 int q_low = bottom_index, q_high = top_index;
2319 q, MAX(q_high, top_index), bottom_index)) {
2347 bottom_index, MAX(q_high, top_index));
2352 bottom_index, MAX(q_high, top_index));
2368 bottom_index, top_index);
2381 bottom_index, top_index);
2468 int top_index; local
2621 q = vp9_rc_pick_q_and_bounds(cpi, &bottom_index, &top_index);
2632 encode_with_recode_loop(cpi, size, dest, q, bottom_index, top_index);
2200 encode_with_recode_loop(VP9_COMP *cpi, size_t *size, uint8_t *dest, int q, int bottom_index, int top_index) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_ratectrl.c602 int *top_index) {
678 *top_index = active_worst_quality;
691 *top_index = active_worst_quality + qdelta;
692 *top_index = (*top_index > *bottom_index) ? *top_index : *bottom_index;
702 if (q > *top_index) {
705 *top_index = q;
707 q = *top_index;
710 assert(*top_index <
600 rc_pick_q_and_bounds_one_pass_cbr(const VP9_COMP *cpi, int *bottom_index, int *top_index) argument
732 rc_pick_q_and_bounds_one_pass_vbr(const VP9_COMP *cpi, int *bottom_index, int *top_index) argument
884 rc_pick_q_and_bounds_two_pass(const VP9_COMP *cpi, int *bottom_index, int *top_index) argument
1056 vp9_rc_pick_q_and_bounds(const VP9_COMP *cpi, int *bottom_index, int *top_index) argument
[all...]
H A Dvp9_encoder.c1764 int top_index) {
1771 int q_low = bottom_index, q_high = top_index;
1864 q, MAX(q_high, top_index), bottom_index)) {
1892 bottom_index, MAX(q_high, top_index));
1897 bottom_index, MAX(q_high, top_index));
1913 bottom_index, top_index);
1926 bottom_index, top_index);
2104 int top_index; local
2264 q = vp9_rc_pick_q_and_bounds(cpi, &bottom_index, &top_index);
2275 encode_with_recode_loop(cpi, size, dest, q, bottom_index, top_index);
1759 encode_with_recode_loop(VP9_COMP *cpi, size_t *size, uint8_t *dest, int q, int bottom_index, int top_index) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Donyx_if.c3483 int top_index; local
4015 top_index = cpi->active_worst_quality;
4260 top_index = cpi->active_worst_quality;
4293 top_index = cpi->active_worst_quality;
4344 Q, top_index, bottom_index ) )
/external/libvpx/libvpx/vp8/encoder/
H A Donyx_if.c3336 int top_index; local
3834 top_index = cpi->active_worst_quality;
4065 top_index = cpi->active_worst_quality;
4098 top_index = cpi->active_worst_quality;
4149 Q, top_index, bottom_index ) )

Completed in 610 milliseconds