/linux-4.4.14/arch/powerpc/kernel/ |
D | smp-tbsync.c | 79 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/ |
D | shadow.c | 35 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/ |
D | Makefile | 10 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
|
D | Kconfig.debug | 25 include/asm-score/debug.h for debugging macros.
|
D | Kconfig | 97 source "arch/score/Kconfig.debug"
|
/linux-4.4.14/net/ipv6/ |
D | inet6_hashtables.c | 101 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 …]
|
D | udp.c | 150 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 …]
|
D | ip6_gre.c | 126 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 …]
|
D | addrconf.c | 1308 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/ |
D | inet_hashtables.c | 175 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 …]
|
D | udp.c | 343 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/ |
D | fdt.c | 95 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 …]
|
D | base.c | 446 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/ |
D | tlv320aic23.c | 272 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/ |
D | glue.c | 116 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/ |
D | Makefile | 6 tlb-miss.o tlb-score.o pgtable.o
|
/linux-4.4.14/arch/score/kernel/ |
D | vmlinux.lds.S | 30 OUTPUT_ARCH(score)
|
/linux-4.4.14/Documentation/features/sched/numa-balancing/ |
D | arch-support.txt | 32 | score: | .. |
|
/linux-4.4.14/Documentation/features/vm/numa-memblock/ |
D | arch-support.txt | 32 | score: | ok |
|
/linux-4.4.14/Documentation/features/vm/THP/ |
D | arch-support.txt | 32 | score: | .. |
|
/linux-4.4.14/Documentation/features/time/irq-time-acct/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/drivers/gpu/drm/omapdrm/ |
D | tcm-sita.h | 72 struct score { struct
|
D | tcm-sita.c | 62 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/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/locking/queued-spinlocks/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/vm/ioremap_prot/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/vm/TLB/ |
D | arch-support.txt | 32 | score: | .. |
|
/linux-4.4.14/Documentation/features/debug/optprobes/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/time/clockevents/ |
D | arch-support.txt | 32 | score: | ok |
|
/linux-4.4.14/Documentation/features/time/arch-tick-broadcast/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/locking/queued-rwlocks/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/time/context-tracking/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/core/BPF-JIT/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/perf/kprobes-event/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/io/dma_map_attrs/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/locking/rwsem-optimized/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/vm/pmdp_splitting_flush/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/locking/lockdep/ |
D | arch-support.txt | 32 | score: | ok |
|
/linux-4.4.14/Documentation/features/io/sg-chain/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/vm/PG_uncached/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/debug/uprobes/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/lib/strncasecmp/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/debug/kgdb/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/debug/stackprotector/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/debug/kretprobes/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/time/virt-cpuacct/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/debug/kprobes/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/io/dma-contiguous/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/debug/KASAN/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/io/dma-api-debug/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/core/tracehook/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/vm/pte_special/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/perf/perf-regs/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/perf/perf-stackdump/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/vm/huge-vmap/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/time/modern-timekeeping/ |
D | arch-support.txt | 32 | score: | ok |
|
/linux-4.4.14/Documentation/features/core/jump-labels/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/locking/cmpxchg-local/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/debug/kprobes-on-ftrace/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/debug/user-ret-profiler/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/debug/gcov-profile-all/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/core/generic-idle-thread/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/Documentation/features/vm/ELF-ASLR/ |
D | arch-support.txt | 32 | score: | TODO |
|
/linux-4.4.14/sound/usb/ |
D | pcm.c | 570 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/ |
D | radeon_uvd.c | 930 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/ |
D | rfd_ftl.c | 447 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/ |
D | iuu_phoenix.txt | 55 the speed to a score 10 to 20% better than the simple clockmode=3 !!!
|
/linux-4.4.14/drivers/gpu/drm/i915/ |
D | intel_ringbuffer.h | 93 int score; member
|
D | i915_irq.c | 2994 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()
|
D | i915_gpu_error.c | 930 ering->hangcheck_score = ring->hangcheck.score; in i915_record_ring_state()
|
D | i915_gem.c | 2789 ring_hung = ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG; in i915_gem_reset_ring_status()
|
D | i915_debugfs.c | 1364 seq_printf(m, "\tscore = %d\n", ring->hangcheck.score); in i915_hangcheck_info()
|
/linux-4.4.14/drivers/gpu/drm/ |
D | drm_edid.c | 1035 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()
|
D | drm_fb_helper.c | 1905 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/ |
D | wsm.c | 1589 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/ |
D | proc.txt | 37 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/ |
D | donauboe.c | 659 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/ |
D | fair.c | 949 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/ |
D | vm.txt | 338 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/ |
D | MAINTAINERS | 9406 F: arch/score/
|