/linux/arch/powerpc/kernel/ |
H A D | smp-tbsync.c | 80 int i, score=0; in start_contest() local 107 score += tbsync->race_result; in start_contest() 110 return score; in start_contest() 115 int i, score, score2, old, min=0, max=5000, offset=1000; in smp_generic_give_timebase() local 131 score = start_contest(kSetAndTest, offset, NUM_ITER); in smp_generic_give_timebase() 133 pr_debug("score %d, offset %d\n", score, offset ); in smp_generic_give_timebase() 135 if( score > 0 ) in smp_generic_give_timebase() 141 score = start_contest(kSetAndTest, min, NUM_ITER); in smp_generic_give_timebase() 145 min, score, max, score2); in smp_generic_give_timebase() 146 score = abs(score); in smp_generic_give_timebase() [all …]
|
/linux/drivers/gpu/drm/nouveau/nvkm/subdev/bios/ |
H A D | shadow.c | 35 int score; member 56 int score = 1; in shadow_image() local 91 score += 1; in shadow_image() 92 score += 1; in shadow_image() 96 score += 3; in shadow_image() 100 score += 3; in shadow_image() 105 score += shadow_image(bios, idx + 1, offset + image.size, mthd); in shadow_image() 106 return score; in shadow_image() 123 mthd->score = shadow_image(bios, 0, 0, mthd); in shadow_method() 126 nvkm_debug(subdev, "scored %d\n", mthd->score); in shadow_method() [all …]
|
/linux/drivers/acpi/ |
H A D | glue.c | 131 int score; member 139 int score; in check_one_child() local 162 if (!wd->score) { in check_one_child() 163 score = find_child_checks(wd->adev, wd->check_children); in check_one_child() 164 if (score == FIND_CHILD_MAX_SCORE) in check_one_child() 167 wd->score = score; in check_one_child() 174 score = find_child_checks(adev, wd->check_children); in check_one_child() 175 if (score > wd->score) { in check_one_child() 177 if (score == FIND_CHILD_MAX_SCORE) in check_one_child() 180 wd->score = score; in check_one_child() [all …]
|
/linux/net/ipv6/ |
H A D | inet6_hashtables.c | 97 int score = -1; in compute_score() local 107 score = sk->sk_bound_dev_if ? 2 : 1; in compute_score() 109 score++; in compute_score() 111 return score; in compute_score() 159 int score, hiscore = 0; in inet6_lhash2_lookup() local 162 score = compute_score(sk, net, hnum, daddr, dif, sdif); in inet6_lhash2_lookup() 163 if (score > hiscore) { in inet6_lhash2_lookup() 170 hiscore = score; in inet6_lhash2_lookup()
|
H A D | ip6_gre.c | 129 int score, cand_score = 4; in ip6gre_tunnel_lookup() local 143 score = 0; in ip6gre_tunnel_lookup() 145 score |= 1; in ip6gre_tunnel_lookup() 147 score |= 2; in ip6gre_tunnel_lookup() 148 if (score == 0) in ip6gre_tunnel_lookup() 151 if (score < cand_score) { in ip6gre_tunnel_lookup() 153 cand_score = score; in ip6gre_tunnel_lookup() 167 score = 0; in ip6gre_tunnel_lookup() 169 score |= 1; in ip6gre_tunnel_lookup() 171 score |= 2; in ip6gre_tunnel_lookup() [all …]
|
H A D | addrconf.c | 1580 struct ipv6_saddr_score *score, in ipv6_get_saddr_eval() argument 1586 if (i <= score->rule) { in ipv6_get_saddr_eval() 1589 ret = score->scopedist; in ipv6_get_saddr_eval() 1592 ret = score->matchlen; in ipv6_get_saddr_eval() 1595 ret = !!test_bit(i, score->scorebits); in ipv6_get_saddr_eval() 1603 ret = !!score->ifa; in ipv6_get_saddr_eval() 1607 ret = ipv6_addr_equal(&score->ifa->addr, dst->addr); in ipv6_get_saddr_eval() 1631 ret = __ipv6_addr_src_scope(score->addr_type); in ipv6_get_saddr_eval() 1636 score->scopedist = ret; in ipv6_get_saddr_eval() 1643 if (!ipv6_use_optimistic_addr(net, score->ifa->idev)) in ipv6_get_saddr_eval() [all …]
|
H A D | udp.c | 133 int bound_dev_if, score; in compute_score() local 145 score = 0; in compute_score() 151 score++; in compute_score() 157 score++; in compute_score() 165 score++; in compute_score() 168 score++; in compute_score() 170 return score; in compute_score() 181 int score, badness; in udp6_lib_lookup2() local 189 score = compute_score(need_rescore ? result : sk, net, saddr, in udp6_lib_lookup2() 191 if (score > badness) { in udp6_lib_lookup2() [all …]
|
/linux/sound/usb/ |
H A D | implicit.c | 409 int i, score; in match_endpoint_audioformats() local 429 score = 1; in match_endpoint_audioformats() 431 score++; in match_endpoint_audioformats() 433 return score; in match_endpoint_audioformats() 464 int score, high_score; in snd_usb_find_implicit_fb_sync_format() local 478 score = match_endpoint_audioformats(subs, fp, in snd_usb_find_implicit_fb_sync_format() 482 if (score > high_score) { in snd_usb_find_implicit_fb_sync_format() 484 high_score = score; in snd_usb_find_implicit_fb_sync_format()
|
/linux/drivers/of/ |
H A D | fdt.c | 638 unsigned long l, score = 0; in of_fdt_is_compatible() local 644 score++; in of_fdt_is_compatible() 646 return score; in of_fdt_is_compatible() 670 unsigned int tmp, score = 0; in of_flat_dt_match() local 677 if (tmp && (score == 0 || (tmp < score))) in of_flat_dt_match() 678 score = tmp; in of_flat_dt_match() 682 return score; in of_flat_dt_match() 720 unsigned int best_score = ~1, score = 0; in of_flat_dt_match_machine() local 724 score = of_flat_dt_match(dt_root, compat); in of_flat_dt_match_machine() 725 if (score > 0 && score < best_score) { in of_flat_dt_match_machine() [all …]
|
H A D | base.c | 343 int index = 0, score = 0; in __of_device_is_compatible() local 351 score = INT_MAX/2 - (index << 2); in __of_device_is_compatible() 355 if (!score) in __of_device_is_compatible() 363 score += 2; in __of_device_is_compatible() 370 score++; in __of_device_is_compatible() 373 return score; in __of_device_is_compatible() 399 unsigned int tmp, score = 0; in of_device_compatible_match() local 406 if (tmp > score) in of_device_compatible_match() 407 score = tmp; in of_device_compatible_match() 411 return score; in of_device_compatible_match() [all …]
|
/linux/sound/soc/codecs/ |
H A D | tlv320aic23.c | 266 int score; in find_rate() local 271 score = get_score(adc, adc_l, adc_h, need_adc, in find_rate() 273 if (best_score > score) { in find_rate() 274 best_score = score; in find_rate() 279 score = get_score((adc >> 1), adc_l, adc_h, need_adc, in find_rate() 282 if ((score != UINT_MAX) && (best_score >= score)) { in find_rate() 283 best_score = score; in find_rate()
|
/linux/mm/damon/ |
H A D | core.c | 1456 unsigned long score) in damon_feed_loop_next_input() argument 1462 bool over_achieving = score > goal; in damon_feed_loop_next_input() 1464 if (score == goal) in damon_feed_loop_next_input() 1466 if (score >= goal * 2) in damon_feed_loop_next_input() 1470 score_goal_diff = score - goal; in damon_feed_loop_next_input() 1472 score_goal_diff = goal - score; in damon_feed_loop_next_input() 1553 unsigned long score = damos_quota_score(quota); in damos_set_effective_quota() local 1557 score); in damos_set_effective_quota() 1585 unsigned int score, max_score = 0; in damos_adjust_quota() local 1612 score = c->ops.get_scheme_score(c, t, r, s); in damos_adjust_quota() [all …]
|
/linux/drivers/gpu/drm/xe/ |
H A D | xe_gpu_scheduler.c | 63 atomic_t *score, const char *name, in xe_sched_init() argument 71 hang_limit, timeout, timeout_wq, score, name, in xe_sched_init()
|
H A D | xe_gpu_scheduler.h | 18 atomic_t *score, const char *name,
|
/linux/drivers/gpu/drm/scheduler/ |
H A D | sched_main.c | 226 atomic_inc(rq->sched->score); in drm_sched_rq_add_entity() 248 atomic_dec(rq->sched->score); in drm_sched_rq_remove_entity() 414 atomic_dec(sched->score); in drm_sched_job_done() 1147 num_score = atomic_read(sched->score); in drm_sched_pick_best() 1263 atomic_t *score, const char *name, struct device *dev) in drm_sched_init() argument 1273 sched->score = score ? score : &sched->_score; in drm_sched_init()
|
/linux/net/ipv4/ |
H A D | inet_hashtables.c | 317 int score = -1; in compute_score() local 326 score = sk->sk_bound_dev_if ? 2 : 1; in compute_score() 329 score++; in compute_score() 331 score++; in compute_score() 333 return score; in compute_score() 386 int score, hiscore = 0; in inet_lhash2_lookup() local 389 score = compute_score(sk, net, hnum, daddr, dif, sdif); in inet_lhash2_lookup() 390 if (score > hiscore) { in inet_lhash2_lookup() 397 hiscore = score; in inet_lhash2_lookup()
|
/linux/include/drm/ |
H A D | gpu_scheduler.h | 547 atomic_t *score; member 561 atomic_t *score, const char *name, struct device *dev);
|
/linux/mm/ |
H A D | compaction.c | 2217 unsigned long score; in fragmentation_score_zone_weighted() local 2219 score = zone->present_pages * fragmentation_score_zone(zone); in fragmentation_score_zone_weighted() 2220 return div64_ul(score, zone->zone_pgdat->node_present_pages + 1); in fragmentation_score_zone_weighted() 2232 unsigned int score = 0; in fragmentation_score_node() local 2241 score += fragmentation_score_zone_weighted(zone); in fragmentation_score_node() 2244 return score; in fragmentation_score_node() 2298 int score, wmark_low; in __compact_finished() local 2305 score = fragmentation_score_zone(cc->zone); in __compact_finished() 2308 if (score > wmark_low) in __compact_finished() 3205 unsigned int prev_score, score; in kcompactd() local [all …]
|
/linux/Documentation/driver-api/cxl/ |
H A D | maturity-map.rst | 19 responsibilities along with a maturity score. The expectation is that 26 Note that this score can regress from one kernel release to the next 38 a '0' score in this document, there is a good chance that no one in
|
/linux/drivers/gpu/drm/i915/gt/ |
H A D | intel_reset.c | 43 unsigned int score; in client_mark_guilty() local 48 score = 0; in client_mark_guilty() 50 score = I915_CLIENT_SCORE_CONTEXT_BAN; in client_mark_guilty() 54 score += I915_CLIENT_SCORE_HANG_FAST; in client_mark_guilty() 56 if (score) { in client_mark_guilty() 57 atomic_add(score, &file_priv->ban_score); in client_mark_guilty() 61 ctx->name, score, in client_mark_guilty()
|
/linux/drivers/mtd/ |
H A D | rfd_ftl.c | 409 int block, best_block, score, old_sector_block; in reclaim_block() local 415 score = 0x7fffffff; /* MAX_INT */ in reclaim_block() 449 if (this_score < score) { in reclaim_block() 451 score = this_score; in reclaim_block()
|
/linux/tools/testing/selftests/cgroup/ |
H A D | cgroup_util.h | 56 extern int set_oom_adj_score(int pid, int score);
|
/linux/net/ipv6/ila/ |
H A D | ila_xlat.c | 76 int score = 0; in ila_order() local 79 score += 1 << 1; in ila_order() 81 return score; in ila_order()
|
/linux/drivers/gpu/drm/radeon/ |
H A D | radeon_uvd.c | 968 unsigned vclk_div, dclk_div, score; in radeon_uvd_calc_upll_dividers() local 991 score = vclk - (vco_freq / vclk_div) + dclk - (vco_freq / dclk_div); in radeon_uvd_calc_upll_dividers() 994 if (score < optimal_score) { in radeon_uvd_calc_upll_dividers() 998 optimal_score = score; in radeon_uvd_calc_upll_dividers()
|
/linux/drivers/video/fbdev/core/ |
H A D | modedb.c | 787 int score = abs(db[i].refresh - refresh); in fb_find_mode() local 790 score += abs(db_interlace - interlace); in fb_find_mode() 798 if (score < diff) { in fb_find_mode() 799 diff = score; in fb_find_mode()
|