Home
last modified time | relevance | path

Searched refs:score (Results 1 – 80 of 80) sorted by relevance

/linux-4.4.14/arch/powerpc/kernel/
Dsmp-tbsync.c79 int i, score=0; in start_contest() local
106 score += tbsync->race_result; in start_contest()
109 return score; in start_contest()
114 int i, score, score2, old, min=0, max=5000, offset=1000; in smp_generic_give_timebase() local
130 score = start_contest(kSetAndTest, offset, NUM_ITER); in smp_generic_give_timebase()
132 pr_debug("score %d, offset %d\n", score, offset ); in smp_generic_give_timebase()
134 if( score > 0 ) in smp_generic_give_timebase()
140 score = start_contest(kSetAndTest, min, NUM_ITER); in smp_generic_give_timebase()
144 min, score, max, score2); in smp_generic_give_timebase()
145 score = abs(score); in smp_generic_give_timebase()
[all …]
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/bios/
Dshadow.c35 int score; member
56 int score = 1; in shadow_image() local
90 score += 1; in shadow_image()
91 score += 1; in shadow_image()
93 score += 3; in shadow_image()
97 score += 3; in shadow_image()
102 score += shadow_image(bios, idx + 1, offset + image.size, mthd); in shadow_image()
103 return score; in shadow_image()
120 mthd->score = shadow_image(bios, 0, 0, mthd); in shadow_method()
123 nvkm_debug(subdev, "scored %d\n", mthd->score); in shadow_method()
[all …]
/linux-4.4.14/arch/score/
DMakefile10 CROSS_COMPILE := score-linux-
28 head-y := arch/score/kernel/head.o
29 libs-y += arch/score/lib/
30 core-y += arch/score/kernel/ arch/score/mm/
32 boot := arch/score/boot
DKconfig.debug25 include/asm-score/debug.h for debugging macros.
DKconfig97 source "arch/score/Kconfig.debug"
/linux-4.4.14/net/ipv6/
Dinet6_hashtables.c101 int score = -1; in compute_score() local
106 score = 1; in compute_score()
110 score++; in compute_score()
115 score++; in compute_score()
118 score++; in compute_score()
120 return score; in compute_score()
131 int score, hiscore, matches = 0, reuseport = 0; in inet6_lookup_listener() local
141 score = compute_score(sk, net, hnum, daddr, dif); in inet6_lookup_listener()
142 if (score > hiscore) { in inet6_lookup_listener()
143 hiscore = score; in inet6_lookup_listener()
[all …]
Dudp.c150 int score; in compute_score() local
158 score = 0; in compute_score()
164 score++; in compute_score()
170 score++; in compute_score()
176 score++; in compute_score()
182 score++; in compute_score()
186 score++; in compute_score()
188 return score; in compute_score()
196 int score; in compute_score2() local
207 score = 0; in compute_score2()
[all …]
Dip6_gre.c126 int score, cand_score = 4; in ip6gre_tunnel_lookup() local
139 score = 0; in ip6gre_tunnel_lookup()
141 score |= 1; in ip6gre_tunnel_lookup()
143 score |= 2; in ip6gre_tunnel_lookup()
144 if (score == 0) in ip6gre_tunnel_lookup()
147 if (score < cand_score) { in ip6gre_tunnel_lookup()
149 cand_score = score; in ip6gre_tunnel_lookup()
163 score = 0; in ip6gre_tunnel_lookup()
165 score |= 1; in ip6gre_tunnel_lookup()
167 score |= 2; in ip6gre_tunnel_lookup()
[all …]
Daddrconf.c1308 struct ipv6_saddr_score *score, in ipv6_get_saddr_eval() argument
1314 if (i <= score->rule) { in ipv6_get_saddr_eval()
1317 ret = score->scopedist; in ipv6_get_saddr_eval()
1320 ret = score->matchlen; in ipv6_get_saddr_eval()
1323 ret = !!test_bit(i, score->scorebits); in ipv6_get_saddr_eval()
1331 ret = !!score->ifa; in ipv6_get_saddr_eval()
1335 ret = ipv6_addr_equal(&score->ifa->addr, dst->addr); in ipv6_get_saddr_eval()
1359 ret = __ipv6_addr_src_scope(score->addr_type); in ipv6_get_saddr_eval()
1364 score->scopedist = ret; in ipv6_get_saddr_eval()
1371 if (!ipv6_use_optimistic_addr(score->ifa->idev)) in ipv6_get_saddr_eval()
[all …]
/linux-4.4.14/net/ipv4/
Dinet_hashtables.c175 int score = -1; in compute_score() local
181 score = sk->sk_family == PF_INET ? 2 : 1; in compute_score()
185 score += 4; in compute_score()
190 score += 4; in compute_score()
193 score++; in compute_score()
195 return score; in compute_score()
216 int score, hiscore, matches = 0, reuseport = 0; in __inet_lookup_listener() local
224 score = compute_score(sk, net, hnum, daddr, dif); in __inet_lookup_listener()
225 if (score > hiscore) { in __inet_lookup_listener()
227 hiscore = score; in __inet_lookup_listener()
[all …]
Dudp.c343 int score; in compute_score() local
351 score = (sk->sk_family == PF_INET) ? 2 : 1; in compute_score()
357 score += 4; in compute_score()
363 score += 4; in compute_score()
369 score += 4; in compute_score()
375 score += 4; in compute_score()
378 score++; in compute_score()
379 return score; in compute_score()
389 int score; in compute_score2() local
402 score = (sk->sk_family == PF_INET) ? 2 : 1; in compute_score2()
[all …]
/linux-4.4.14/drivers/of/
Dfdt.c95 unsigned long l, score = 0; in of_fdt_is_compatible() local
101 score++; in of_fdt_is_compatible()
103 return score; in of_fdt_is_compatible()
137 unsigned int tmp, score = 0; in of_fdt_match() local
144 if (tmp && (score == 0 || (tmp < score))) in of_fdt_match()
145 score = tmp; in of_fdt_match()
149 return score; in of_fdt_match()
729 unsigned int best_score = ~1, score = 0; in of_flat_dt_match_machine() local
733 score = of_flat_dt_match(dt_root, compat); in of_flat_dt_match_machine()
734 if (score > 0 && score < best_score) { in of_flat_dt_match_machine()
[all …]
Dbase.c446 int index = 0, score = 0; in __of_device_is_compatible() local
454 score = INT_MAX/2 - (index << 2); in __of_device_is_compatible()
458 if (!score) in __of_device_is_compatible()
466 score += 2; in __of_device_is_compatible()
473 score++; in __of_device_is_compatible()
476 return score; in __of_device_is_compatible()
952 int score, best_score = 0; in __of_match_node() local
958 score = __of_device_is_compatible(node, matches->compatible, in __of_match_node()
960 if (score > best_score) { in __of_match_node()
962 best_score = score; in __of_match_node()
/linux-4.4.14/sound/soc/codecs/
Dtlv320aic23.c272 int score; in find_rate() local
277 score = get_score(adc, adc_l, adc_h, need_adc, in find_rate()
279 if (best_score > score) { in find_rate()
280 best_score = score; in find_rate()
285 score = get_score((adc >> 1), adc_l, adc_h, need_adc, in find_rate()
288 if ((score != UINT_MAX) && (best_score >= score)) { in find_rate()
289 best_score = score; in find_rate()
/linux-4.4.14/drivers/acpi/
Dglue.c116 int score; in acpi_find_child_device() local
143 score = find_child_checks(adev, check_children); in acpi_find_child_device()
144 if (score == FIND_CHILD_MAX_SCORE) { in acpi_find_child_device()
146 } else if (score > ret_score) { in acpi_find_child_device()
148 ret_score = score; in acpi_find_child_device()
/linux-4.4.14/arch/score/mm/
DMakefile6 tlb-miss.o tlb-score.o pgtable.o
/linux-4.4.14/arch/score/kernel/
Dvmlinux.lds.S30 OUTPUT_ARCH(score)
/linux-4.4.14/Documentation/features/sched/numa-balancing/
Darch-support.txt32 | score: | .. |
/linux-4.4.14/Documentation/features/vm/numa-memblock/
Darch-support.txt32 | score: | ok |
/linux-4.4.14/Documentation/features/vm/THP/
Darch-support.txt32 | score: | .. |
/linux-4.4.14/Documentation/features/time/irq-time-acct/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/drivers/gpu/drm/omapdrm/
Dtcm-sita.h72 struct score { struct
Dtcm-sita.c62 struct score *best);
280 struct score best = {{0}, {0}, {0}, 0}; in scan_r2l_t2b()
354 struct score best = {{0}, {0}, {0}, 0}; in scan_l2r_t2b()
604 struct score *best) in update_candidate()
606 struct score me; /* score for area */ in update_candidate()
/linux-4.4.14/Documentation/features/seccomp/seccomp-filter/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/locking/queued-spinlocks/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/vm/ioremap_prot/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/vm/TLB/
Darch-support.txt32 | score: | .. |
/linux-4.4.14/Documentation/features/debug/optprobes/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/time/clockevents/
Darch-support.txt32 | score: | ok |
/linux-4.4.14/Documentation/features/time/arch-tick-broadcast/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/locking/queued-rwlocks/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/time/context-tracking/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/core/BPF-JIT/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/perf/kprobes-event/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/io/dma_map_attrs/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/locking/rwsem-optimized/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/vm/pmdp_splitting_flush/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/locking/lockdep/
Darch-support.txt32 | score: | ok |
/linux-4.4.14/Documentation/features/io/sg-chain/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/vm/PG_uncached/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/debug/uprobes/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/lib/strncasecmp/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/debug/kgdb/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/debug/stackprotector/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/debug/kretprobes/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/time/virt-cpuacct/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/debug/kprobes/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/io/dma-contiguous/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/debug/KASAN/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/io/dma-api-debug/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/core/tracehook/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/vm/pte_special/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/perf/perf-regs/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/perf/perf-stackdump/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/vm/huge-vmap/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/time/modern-timekeeping/
Darch-support.txt32 | score: | ok |
/linux-4.4.14/Documentation/features/core/jump-labels/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/locking/cmpxchg-local/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/debug/kprobes-on-ftrace/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/debug/user-ret-profiler/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/debug/gcov-profile-all/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/core/generic-idle-thread/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/Documentation/features/vm/ELF-ASLR/
Darch-support.txt32 | score: | TODO |
/linux-4.4.14/sound/usb/
Dpcm.c570 int score = 0; in match_endpoint_audioformats() local
587 score++; in match_endpoint_audioformats()
591 if (!score) { in match_endpoint_audioformats()
599 score++; in match_endpoint_audioformats()
602 "%s: (fmt @%p) score %d\n", __func__, fp, score); in match_endpoint_audioformats()
604 return score; in match_endpoint_audioformats()
633 int score = match_endpoint_audioformats(subs, in configure_sync_endpoint() local
637 if (score > cur_score) { in configure_sync_endpoint()
639 cur_score = score; in configure_sync_endpoint()
/linux-4.4.14/drivers/gpu/drm/radeon/
Dradeon_uvd.c930 unsigned vclk_div, dclk_div, score; in radeon_uvd_calc_upll_dividers() local
953 score = vclk - (vco_freq / vclk_div) + dclk - (vco_freq / dclk_div); in radeon_uvd_calc_upll_dividers()
956 if (score < optimal_score) { in radeon_uvd_calc_upll_dividers()
960 optimal_score = score; in radeon_uvd_calc_upll_dividers()
/linux-4.4.14/drivers/mtd/
Drfd_ftl.c447 int block, best_block, score, old_sector_block; in reclaim_block() local
453 score = 0x7fffffff; /* MAX_INT */ in reclaim_block()
487 if (this_score < score) { in reclaim_block()
489 score = this_score; in reclaim_block()
/linux-4.4.14/Documentation/usb/
Diuu_phoenix.txt55 the speed to a score 10 to 20% better than the simple clockmode=3 !!!
/linux-4.4.14/drivers/gpu/drm/i915/
Dintel_ringbuffer.h93 int score; member
Di915_irq.c2994 ring->hangcheck.score += BUSY; in i915_hangcheck_elapsed()
3022 ring->hangcheck.score += BUSY; in i915_hangcheck_elapsed()
3025 ring->hangcheck.score += KICK; in i915_hangcheck_elapsed()
3028 ring->hangcheck.score += HUNG; in i915_hangcheck_elapsed()
3039 if (ring->hangcheck.score > 0) in i915_hangcheck_elapsed()
3040 ring->hangcheck.score--; in i915_hangcheck_elapsed()
3051 if (ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG) { in i915_hangcheck_elapsed()
Di915_gpu_error.c930 ering->hangcheck_score = ring->hangcheck.score; in i915_record_ring_state()
Di915_gem.c2789 ring_hung = ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG; in i915_gem_reset_ring_status()
Di915_debugfs.c1364 seq_printf(m, "\tscore = %d\n", ring->hangcheck.score); in i915_hangcheck_info()
/linux-4.4.14/drivers/gpu/drm/
Ddrm_edid.c1035 int i, score = 0; in drm_edid_header_is_valid() local
1039 score++; in drm_edid_header_is_valid()
1041 return score; in drm_edid_header_is_valid()
1096 int score = drm_edid_header_is_valid(raw_edid); in drm_edid_block_valid() local
1097 if (score == 8) { in drm_edid_block_valid()
1100 } else if (score >= edid_fixup) { in drm_edid_block_valid()
Ddrm_fb_helper.c1905 int my_score, best_score, score; in drm_pick_crtcs() local
1961 score = my_score + drm_pick_crtcs(fb_helper, crtcs, modes, n + 1, in drm_pick_crtcs()
1963 if (score > best_score) { in drm_pick_crtcs()
1964 best_score = score; in drm_pick_crtcs()
/linux-4.4.14/drivers/net/wireless/cw1200/
Dwsm.c1589 unsigned score, best = -1; in cw1200_get_prio_queue() local
1602 score = ((edca->aifns + edca->cwmin) << 16) + in cw1200_get_prio_queue()
1605 if (score < best && (winner < 0 || i != 3)) { in cw1200_get_prio_queue()
1606 best = score; in cw1200_get_prio_queue()
/linux-4.4.14/Documentation/filesystems/
Dproc.txt37 score
38 3.2 /proc/<pid>/oom_score - Display current oom-killer score
1437 3.1 /proc/<pid>/oom_adj & /proc/<pid>/oom_score_adj- Adjust the oom-killer score
1447 For example, if a task is using all allowed memory, its badness score will be
1448 1000. If it is using half of its allowed memory, its score will be 500.
1450 There is an additional factor included in the badness score: the current memory
1462 The value of /proc/<pid>/oom_score_adj is added to the badness score before it
1468 report a badness score of 0.
1479 be used to tune the badness score. Its acceptable values range from -16
1494 3.2 /proc/<pid>/oom_score - Display current oom-killer score
[all …]
/linux-4.4.14/drivers/net/irda/
Ddonauboe.c659 toshoboe_dumprx (struct toshoboe_cb *self, int score) in toshoboe_dumprx() argument
662 PROBE_DEBUG(" %d\nRX:",score); in toshoboe_dumprx()
/linux-4.4.14/kernel/sched/
Dfair.c949 unsigned long score = 0; in score_nearby_nodes() local
1004 score += faults; in score_nearby_nodes()
1007 return score; in score_nearby_nodes()
1742 unsigned long score, max_score = 0; in preferred_group_nid() local
1748 score = group_weight(p, node, dist); in preferred_group_nid()
1749 if (score > max_score) { in preferred_group_nid()
1750 max_score = score; in preferred_group_nid()
/linux-4.4.14/Documentation/sysctl/
Dvm.txt338 These protections are added to score to judge whether this zone should be used
572 score, and name. This is helpful to determine why the OOM killer was
/linux-4.4.14/
DMAINTAINERS9406 F: arch/score/