Home
last modified time | relevance | path

Searched refs:next_score (Results 1 – 3 of 3) sorted by relevance

/third_party/gstreamer/gstplugins_bad/gst/ivtc/
Dgstivtc.c568 int prev_score, next_score; in gst_ivtc_construct_frame() local
581 next_score = similarity (ivtc, anchor_index, anchor_index + 1); in gst_ivtc_construct_frame()
588 if (forward_ok && next_score < prev_score) { in gst_ivtc_construct_frame()
593 GST_INFO ("borderline prev (%d, %d)", prev_score, next_score); in gst_ivtc_construct_frame()
598 } else if (next_score < THRESHOLD) { in gst_ivtc_construct_frame()
599 if (next_score >= THRESHOLD / 2) { in gst_ivtc_construct_frame()
600 GST_INFO ("borderline prev (%d, %d)", prev_score, next_score); in gst_ivtc_construct_frame()
609 if (prev_score < THRESHOLD * 2 || next_score < THRESHOLD * 2) { in gst_ivtc_construct_frame()
610 GST_INFO ("borderline single (%d, %d)", prev_score, next_score); in gst_ivtc_construct_frame()
/third_party/mesa3d/src/gallium/drivers/vc4/
Dvc4_qpu_schedule.c523 uint32_t next_score = 0; in get_instruction_priority() local
529 return next_score; in get_instruction_priority()
530 next_score++; in get_instruction_priority()
534 return next_score; in get_instruction_priority()
535 next_score++; in get_instruction_priority()
538 baseline_score = next_score; in get_instruction_priority()
539 next_score++; in get_instruction_priority()
543 return next_score; in get_instruction_priority()
544 next_score++; in get_instruction_priority()
/third_party/mesa3d/src/broadcom/compiler/
Dqpu_schedule.c639 uint32_t next_score = 0; in get_instruction_priority() local
645 return next_score; in get_instruction_priority()
646 next_score++; in get_instruction_priority()
660 return next_score; in get_instruction_priority()
661 next_score++; in get_instruction_priority()
665 baseline_score = next_score; in get_instruction_priority()
666 next_score++; in get_instruction_priority()
671 return next_score; in get_instruction_priority()
672 next_score++; in get_instruction_priority()
676 assert(next_score < MAX_SCHEDULE_PRIORITY); in get_instruction_priority()