Searched refs:load (Results 101 - 125 of 391) sorted by relevance

1234567891011>>

/linux-master/tools/power/x86/amd_pstate_tracer/
H A Damd_pstate_trace.py97 """ Plot per cpu load """
106 g_plot('set ylabel "CPU load (percent)"')
107 g_plot('set title "{} : cpu load : CPU {:0>3} : {:%F %H:%M}"'.format(test_name, cpu_index, datetime.now()))
141 """ Plot all cpu load """
147 g_plot('set ylabel "CPU load (percent)"')
148 g_plot('set title "{} : cpu load : {:%F %H:%M}"'.format(test_name, datetime.now()))
155 def store_csv(cpu_int, time_pre_dec, time_post_dec, min_perf, des_perf, max_perf, freq_ghz, mperf, aperf, tsc, common_comm, load, duration_ms, sample_num, elapsed_time, cpu_mask):
165 string_buffer = "CPU_%03u, %05u, %06u, %u, %u, %u, %.4f, %u, %u, %u, %.2f, %.3f, %u, %.3f, %s\n" % (cpu_int, int(time_pre_dec), int(time_post_dec), int(min_perf), int(des_perf), int(max_perf), freq_ghz, int(mperf), int(aperf), int(tsc), load, duration_ms, sample_num, elapsed_time, common_comm)
181 f_handle.write('common_cpu, common_secs, common_usecs, min_perf, des_perf, max_perf, freq, mperf, aperf, tsc, load, duration_ms, sample_num, elapsed_time, common_comm')
232 load
[all...]
/linux-master/scripts/clang-tools/
H A Drun-clang-tools.py89 datastore = json.load(f)
/linux-master/arch/sparc/kernel/
H A Dunaligned_32.c3 * unaligned.c: Unaligned load/store trap handling with special
26 load, /* ld, ldd, ldh, ldsh */ enumerator in enum:direction
39 return load;
246 printk("Unsupported unaligned load/store trap for kernel at <%08lx>.\n",
248 unaligned_panic("Wheee. Kernel does fpu/atomic unaligned load/store.");
255 case load:
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/acr/
H A Dgp102.c220 .load = gm200_flcn_fw_load,
245 .load = gp102_acr_load_fwif,
262 hsfwif = nvkm_firmware_load(subdev, fwif->func->load, "AcrLoad",
263 acr, "acr/bl", "acr/ucode_load", "load");
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/
H A Dgk20a.c68 int *state, int load)
77 if (load > data->p_load_max) {
80 level += ((load - data->p_load_target) * 10 /
67 gk20a_pmu_dvfs_get_target_state(struct gk20a_pmu *pmu, int *state, int load) argument
/linux-master/tools/testing/selftests/rseq/
H A Drseq.h256 * Compare @v against @expectnot. When it does _not_ match, load @v
257 * into @load, and store the content of *@v + voffp into @v.
261 intptr_t *v, intptr_t expectnot, long voffp, intptr_t *load,
268 return rseq_cmpnev_storeoffp_load_relaxed_cpu_id(v, expectnot, voffp, load, cpu);
270 return rseq_cmpnev_storeoffp_load_relaxed_mm_cid(v, expectnot, voffp, load, cpu);
260 rseq_cmpnev_storeoffp_load(enum rseq_mo rseq_mo, enum rseq_percpu_mode percpu_mode, intptr_t *v, intptr_t expectnot, long voffp, intptr_t *load, int cpu) argument
H A Dbasic_percpu_ops_test.c206 intptr_t *targetptr, expectnot, *load; local
214 load = (intptr_t *)&head;
217 offset, load, cpu);
H A Drseq-x86-bits.h77 * Compare @v against @expectnot. When it does _not_ match, load @v
78 * into @load, and store the content of *@v + voffp into @v.
82 long voffp, intptr_t *load, int cpu)
107 "movq %%rbx, %[load]\n\t"
122 [load] "m" (*load)
589 * Compare @v against @expectnot. When it does _not_ match, load @v
590 * into @load, and store the content of *@v + voffp into @v.
594 long voffp, intptr_t *load, int cpu)
619 "movl %%ebx, %[load]\
81 rseq_cmpnev_storeoffp_load(intptr_t *v, intptr_t expectnot, long voffp, intptr_t *load, int cpu) argument
593 rseq_cmpnev_storeoffp_load(intptr_t *v, intptr_t expectnot, long voffp, intptr_t *load, int cpu) argument
[all...]
/linux-master/drivers/cpufreq/
H A Dcpufreq_conservative.c65 unsigned int load = dbs_update(policy); local
103 if (load > dbs_data->up_threshold) {
126 if (load < cs_tuners->down_threshold) {
/linux-master/drivers/net/wireless/intel/iwlwifi/mvm/
H A Dutils.c830 u8 load = iwl_mvm_tcm_load_percentage(airtime, elapsed); local
832 if (load > IWL_MVM_TCM_LOAD_HIGH_THRESH)
834 if (load > IWL_MVM_TCM_LOAD_MEDIUM_THRESH)
858 /* this sends traffic load and updates quota as well */
999 enum iwl_mvm_traffic_load load, band_load; local
1022 load = iwl_mvm_tcm_load(mvm, airtime, elapsed);
1023 mvm->tcm.result.change[mac] = load != mvm->tcm.result.load[mac];
1024 mvm->tcm.result.load[mac] = load;
[all...]
/linux-master/drivers/usb/host/
H A Duhci-q.c279 qh->load = usb_calc_bus_time(udev->speed,
608 * Find the highest existing bandwidth load for a given phase and period.
612 int highest_load = uhci->load[phase];
615 highest_load = max_t(int, highest_load, uhci->load[phase]);
628 * its load value. */
632 int phase, load; local
638 load = uhci_highest_load(uhci, phase, qh->period);
639 if (load < minimax_load) {
640 minimax_load = load;
647 if (minimax_load + qh->load > 90
662 int load = qh->load; local
686 qh->period, qh->phase, load); local
695 int load = qh->load; local
719 qh->period, qh->phase, load); local
[all...]
H A Disp116x-hcd.c332 isp116x->load[i] -= ep->load;
336 ep->load / ep->period;
484 u16 load = 0; local
504 load = isp116x->load[index];
505 if (load) {
530 len = (MAX_LOAD_LIMIT - load) / byte_time;
551 load += len * byte_time;
552 if (load > MAX_LOAD_LIMI
652 balance(struct isp116x *isp116x, u16 period, u16 load) argument
[all...]
/linux-master/arch/alpha/lib/
H A Dstxcpy.S109 ldq_u t1, 0(a1) # e0 : load first src word
110 and a0, 7, t0 # .. e1 : take care not to load a word ...
184 ldq_u t2, 0(a1) # .. e1 : load high word for next time
219 and t12, 0x80, t6 # e0 : avoid dest word load if we can
236 ldq_u t1, 0(a1) # e0 : load first source word
241 /* Conditionally load the first destination word and a bytemask
H A Dev6-stxcpy.S71 /* Nops here to separate store quads from load quads */
129 ldq_u t1, 0(a1) # L : load first src word
130 and a0, 7, t0 # E : take care not to load a word ...
209 ldq_u t2, 0(a1) # L : Latency=3 load high word for next time
245 and t12, 0x80, t6 # E : avoid dest word load if we can (stall)
267 ldq_u t1, 0(a1) # L : load first source word
270 /* Conditionally load the first destination word and a bytemask
H A Dev6-stxncpy.S86 * separate store quads from load quads
167 ldq_u t1, 0(a1) # L : load first src word
197 ldq_u t2, 8(a1) # L : Latency=3 load second src word
257 ldq_u t2, 8(a1) # U : Latency=3 load high word for next time
298 and t12, 0x80, t6 # E : avoid dest word load if we can (stall)
318 and a1, 7, t6 # E : avoid final load if possible
323 ldq_u t2, 8(a1) # L : load final src word
339 ldq_u t1, 0(a1) # L : load first source word
342 /* Conditionally load the first destination word and a bytemask
H A Dstxncpy.S135 ldq_u t1, 0(a1) # e0 : load first src word
158 ldq_u t2, 8(a1) # e0 : load second src word
214 ldq_u t2, 8(a1) # e0 : load high word for next time
255 and t12, 0x80, t6 # e0 : avoid dest word load if we can
277 ldq_u t2, 8(a1) # e0 : load final src word
293 ldq_u t1, 0(a1) # e0 : load first source word
298 /* Conditionally load the first destination word and a bytemask
/linux-master/drivers/rtc/
H A Drtc-pcf8523.c57 u32 load, value = 0; local
59 load = 12500;
60 of_property_read_u32(node, "quartz-load-femtofarads", &load);
62 switch (load) {
64 dev_warn(&pcf8523->rtc->dev, "Unknown quartz-load-femtofarads value: %d. Assuming 12500",
65 load);
444 dev_warn(&client->dev, "failed to set xtal load capacitance: %d",
/linux-master/arch/m68k/fpsp040/
H A Dx_snan.S165 movel #4,%d0 |load byte count
177 movel %a0,%a1 |load dest addr into a1
178 movel %a7,%a0 |load src addr of snan into a0
187 movel #2,%d0 |load byte count
199 movel %a0,%a1 |load dest addr into a1
209 movel #1,%d0 |load byte count
220 movel %a0,%a1 |load dest addr into a1
/linux-master/arch/mips/
H A DMakefile284 load-y = $(CONFIG_PHYSICAL_START)
293 # the elf format according to the load address.
299 ifeq ($(shell expr $(load-y) \< 0xffffffff80000000), 0)
314 # 32-bit load address that has been sign-extended to 64 bits. Simply
318 load-ld = $(load-y)
320 load-ld = $(subst 0xffffffff,0x,$(load-y))
325 KBUILD_CPPFLAGS += -DVMLINUX_LOAD_ADDRESS=$(load-y) -DLINKER_LOAD_ADDRESS=$(load
[all...]
/linux-master/kernel/sched/
H A Dfair.c298 if (unlikely(se->load.weight != NICE_0_LOAD))
299 delta = __calc_delta(delta, NICE_0_LOAD, &se->load);
630 unsigned long weight = scale_load_down(se->load.weight);
640 unsigned long weight = scale_load_down(se->load.weight);
664 long load = cfs_rq->avg_load; local
667 unsigned long weight = scale_load_down(curr->load.weight);
670 load += weight;
673 if (load) {
676 avg -= (load - 1);
677 avg = div_s64(avg, load);
737 long load = cfs_rq->avg_load; local
1962 unsigned long load; member in struct:numa_stats
2179 long load; local
2393 long src_load, dst_load, load; local
3848 struct load_weight *load = &se->load; local
3934 long tg_weight, tg_shares, load, shares; local
5188 unsigned long load; local
6920 unsigned int load; local
7121 unsigned long load, min_load = ULONG_MAX; local
9062 unsigned long util, load; local
9371 unsigned long load; local
9904 unsigned long load = cpu_load(rq); local
10987 unsigned long capacity, load, util; local
[all...]
/linux-master/arch/sparc/lib/
H A DM7memcpy.S48 * load words, shift half words, store words; branch to finish_up
50 * load words, shift 3 bytes, store words; branch to finish_up
52 * load words, shift 1 byte, store words; branch to finish_up
209 EX_LD(LOAD(ldub, %o4, %o4), memcpy_retl_o2_plus_o5) ! load one byte
236 EX_LD(LOAD(ldx, %o1, %o4), memcpy_retl_o2_plus_63) ! load
245 EX_LD(LOAD(ldx, %o1+32, %o4), memcpy_retl_o2_plus_63_32)! load and store
260 EX_LD(LOAD(ldx, %o1, %o4), memcpy_retl_o2_plus_31) ! load
288 EX_LD(LOAD(ldx, %o1, %o4), memcpy_retl_o2) ! load 8 bytes
371 EX_LD(LOAD(ld, %o1, %o4), memcpy_retl_o2) ! load 4 bytes
375 EX_LD(LOAD(ld, %o1-4, %o3), memcpy_retl_o2_plus_4) ! load
[all...]
/linux-master/drivers/crypto/marvell/cesa/
H A Dcesa.h442 * @load: engine load counter, useful for load balancing
465 atomic_t load; member in struct:mv_cesa_engine
745 u32 load = atomic_read(&engine->load); local
747 if (load < min_load) {
748 min_load = load;
753 atomic_add(weight, &selected->load);
/linux-master/arch/arm/mach-omap2/
H A Dvc.c606 u8 load; member in struct:i2c_init_data
616 .load = 50,
625 .load = 25,
634 .load = 12,
643 .load = 0,
686 while (i2c_data->load > capacitance)
/linux-master/arch/xtensa/kernel/
H A Dalign.S4 * Handle unalignment and load/store exceptions.
133 #define OP0_L32I_N 0x8 /* load immediate narrow */
135 #define OP0_LSAI 0x2 /* load/store */
169 /* Analyze the instruction (load or store?). */
231 /* Analyze the instruction (load or store?). */
420 l32i a5, a4, 0 # load lower address word
506 rsr a8, excvaddr # load unaligned memory address
508 /* Now, identify one of the following load/store instructions.
525 rsr a7, epc1 # load exception address
529 l32i a4, a3, 0 # load
[all...]
/linux-master/arch/powerpc/perf/
H A Dpower10-pmu.c133 CACHE_EVENT_ATTR(L1-dcache-load-misses, PM_LD_MISS_L1);
137 CACHE_EVENT_ATTR(L1-icache-load-misses, PM_L1_ICACHE_MISS);
140 CACHE_EVENT_ATTR(LLC-load-misses, PM_DATA_FROM_L3MISS);
145 CACHE_EVENT_ATTR(branch-load-misses, PM_BR_MPRED_CMPL);
147 CACHE_EVENT_ATTR(dTLB-load-misses, PM_DTLB_MISS);
148 CACHE_EVENT_ATTR(iTLB-load-misses, PM_ITLB_MISS);

Completed in 817 milliseconds

1234567891011>>