Home
last modified time | relevance | path

Searched refs:load (Results 1 – 25 of 1099) sorted by relevance

12345678910>>...44

/linux/tools/testing/selftests/powerpc/ptrace/
H A Dptrace-vsx.h18 if (vsx[i] != load[2 * i + 1]) { in validate_vsx()
41 load[64 + 2 * i]); in validate_vmx()
44 load[65 + 2 * i]); in validate_vmx()
55 load[65 + 2 * i]); in validate_vmx()
58 load[64 + 2 * i]); in validate_vmx()
78 1 + 2 * i, load[i]); in compare_vsx_vmx()
85 if (store[i] != load[i]) { in compare_vsx_vmx()
87 i, store[i], i, load[i]); in compare_vsx_vmx()
114 vsx[i] = load[1 + 2 * i]; in load_vsx_vmx()
117 vmx[i][0] = load[64 + 2 * i]; in load_vsx_vmx()
[all …]
/linux/tools/power/cpupower/bench/
H A DREADME-BENCH34 You can specify load (100% CPU load) and sleep (0% CPU load) times in us which
38 load=25000
48 Will increase load and sleep time by 25ms 5 times.
50 25ms load/sleep time repeated 20 times (cycles).
51 50ms load/sleep time repeated 20 times (cycles).
53 100ms load/sleep time repeated 20 times (cycles).
69 100% CPU load (load) | 0 % CPU load (sleep) | round
88 load -----| |-----| |-----| |-----|
109 -l, --load=<long int> initial load time in us
111 -x, --load-step=<long int> time to be added to load time, in us
[all …]
/linux/arch/arm64/boot/dts/qcom/
H A Dmsm8994-msft-lumia-octagon.dtsi587 regulator-allow-set-load;
594 regulator-allow-set-load;
602 regulator-allow-set-load;
624 regulator-allow-set-load;
632 regulator-allow-set-load;
646 regulator-allow-set-load;
671 regulator-allow-set-load;
679 regulator-allow-set-load;
687 regulator-allow-set-load;
695 regulator-allow-set-load;
[all …]
H A Dmsm8994-sony-xperia-kitakami.dtsi240 regulator-allow-set-load;
267 regulator-system-load = <10000>;
268 regulator-allow-set-load;
314 regulator-system-load = <10000>;
315 regulator-allow-set-load;
326 regulator-system-load = <10000>;
327 regulator-allow-set-load;
364 regulator-allow-set-load;
371 regulator-allow-set-load;
413 regulator-allow-set-load;
[all …]
H A Dsm8650-mtp.dts141 regulator-allow-set-load;
151 regulator-allow-set-load;
161 regulator-allow-set-load;
178 regulator-allow-set-load;
188 regulator-allow-set-load;
198 regulator-allow-set-load;
208 regulator-allow-set-load;
218 regulator-allow-set-load;
228 regulator-allow-set-load;
238 regulator-allow-set-load;
[all …]
H A Dsdm660-xiaomi-lavender.dts146 regulator-allow-set-load;
154 regulator-allow-set-load;
161 regulator-allow-set-load;
172 regulator-allow-set-load;
186 regulator-allow-set-load;
255 regulator-allow-set-load;
279 regulator-allow-set-load;
294 regulator-allow-set-load;
301 regulator-allow-set-load;
308 regulator-allow-set-load;
[all …]
/linux/drivers/misc/genwqe/
H A Dcard_dev.c545 while (load->size) { in do_flash_update()
612 load->retc = req->retc; in do_flash_update()
613 load->attn = req->attn; in do_flash_update()
627 load->size -= tocopy; in do_flash_update()
681 while (load->size) { in do_flash_read()
730 load->retc = cmd->retc; in do_flash_read()
756 load->size -= tocopy; in do_flash_read()
1160 sizeof(load))) in genwqe_ioctl()
1165 if (copy_to_user((void __user *)arg, &load, sizeof(load))) in genwqe_ioctl()
1180 if (copy_from_user(&load, (void __user *)arg, sizeof(load))) in genwqe_ioctl()
[all …]
/linux/tools/perf/scripts/python/bin/
H A Dmem-phys-addr-record8 load=`perf list | grep mem_inst_retired.all_loads`
9 if [ -z "$load" ]; then
10 load=`perf list | grep mem_uops_retired.all_loads`
12 if [ -z "$load" ]; then
17 arg=$(echo $load | tr -d ' ')
/linux/drivers/watchdog/
H A Dsp805_wdt.c96 u64 load, rate; in wdt_setload() local
106 load = div_u64(rate, 2) * timeout - 1; in wdt_setload()
108 load = (load > LOAD_MAX) ? LOAD_MAX : load; in wdt_setload()
109 load = (load < LOAD_MIN) ? LOAD_MIN : load; in wdt_setload()
112 wdt->load_val = load; in wdt_setload()
114 wdd->timeout = div_u64((load + 1) * 2 + (rate / 2), rate); in wdt_setload()
124 u64 load; in wdt_timeleft() local
127 load = readl_relaxed(wdt->base + WDTVALUE); in wdt_timeleft()
131 load += wdt->load_val + 1; in wdt_timeleft()
134 return div_u64(load, wdt->rate); in wdt_timeleft()
/linux/arch/mips/sibyte/
H A DPlatform27 load-$(CONFIG_SIBYTE_CRHONE) := 0xffffffff80100000
28 load-$(CONFIG_SIBYTE_RHONE) := 0xffffffff80100000
29 load-$(CONFIG_SIBYTE_SENTOSA) := 0xffffffff80100000
30 load-$(CONFIG_SIBYTE_SWARM) := 0xffffffff80100000
31 load-$(CONFIG_SIBYTE_BIGSUR) := 0xffffffff80100000
32 load-$(CONFIG_SIBYTE_LITTLESUR) := 0xffffffff80100000
/linux/kernel/sched/
H A Dpelt.c103 unsigned long load, unsigned long runnable, int running) in accumulate_sum() argument
124 if (load) { in accumulate_sum()
141 if (load) in accumulate_sum()
142 sa->load_sum += load * contrib; in accumulate_sum()
181 unsigned long load, unsigned long runnable, int running) in ___update_load_sum() argument
216 if (!load) in ___update_load_sum()
226 if (!accumulate_sum(delta, sa, load, runnable, running)) in ___update_load_sum()
257 ___update_load_avg(struct sched_avg *sa, unsigned long load) in ___update_load_avg() argument
264 sa->load_avg = div_u64(load * sa->load_sum, divider); in ___update_load_avg()
323 scale_load_down(cfs_rq->load.weight), in __update_load_avg_cfs_rq()
/linux/arch/powerpc/crypto/
H A Daes-gcm-p10.S526 lxvb16x 32, 0, 8 # load Xi
528 # load Hash - h^4, h^3, h^2, h
592 # load round key to VSR
683 lxvb16x 15, 0, 14 # load block
684 lxvb16x 16, 15, 14 # load block
685 lxvb16x 17, 16, 14 # load block
686 lxvb16x 18, 17, 14 # load block
687 lxvb16x 19, 18, 14 # load block
837 lxvb16x 15, 0, 14 # load block
1133 # load round key to VSR
[all …]
/linux/arch/sh/boot/romimage/
H A DMakefile9 load-y := 0
11 mmcif-load-$(CONFIG_CPU_SUBTYPE_SH7724) := 0xe5200000 # ILRAM
13 load-$(CONFIG_ROMIMAGE_MMCIF) := $(mmcif-load-y)
16 LDFLAGS_vmlinux := --oformat $(ld-bfd) -Ttext $(load-y) -e romstart \
/linux/arch/mips/ralink/
H A DPlatform9 load-$(CONFIG_SOC_RT288X) += 0xffffffff88000000
15 load-$(CONFIG_SOC_RT305X) += 0xffffffff80000000
21 load-$(CONFIG_SOC_RT3883) += 0xffffffff80000000
27 load-$(CONFIG_SOC_MT7620) += 0xffffffff80000000
32 load-$(CONFIG_SOC_MT7621) += 0xffffffff80001000
/linux/include/linux/sched/
H A Dloadavg.h29 calc_load(unsigned long load, unsigned long exp, unsigned long active) in calc_load() argument
33 newload = load * exp + active * (FIXED_1 - exp); in calc_load()
34 if (active >= load) in calc_load()
40 extern unsigned long calc_load_n(unsigned long load, unsigned long exp,
/linux/arch/mips/sgi-ip22/
H A DPlatform4 # Set the load address to >= 0xffffffff88069000 if you want to leave space for
12 load-$(CONFIG_SGI_IP22) += 0xffffffff88002000
15 load-$(CONFIG_SGI_IP22) += 0xffffffff88004000
21 # Set the load address to >= 0xa800000020080000 if you want to leave space for
27 load-$(CONFIG_SGI_IP28) += 0xa800000020004000
/linux/arch/m68k/fpsp040/
H A Ddo_func.S119 bra ld_pzero |load positive zero
311 bra ld_mzero |else neg load -0
485 fmovex QNAN,%fp1 |load NAN
487 fmovex QNAN,%fp0 |load NAN
507 fmovex PPIBY2,%fp0 |load +pi/2
520 fmovex PINF,%fp0 |load +inf
527 fmovex MINF,%fp0 |load -inf
534 fmovex PONE,%fp0 |load +1
540 fmovex MONE,%fp0 |load -1
547 fmovex PZERO,%fp0 |load +0
[all …]
/linux/Documentation/devicetree/bindings/rtc/
H A Dnxp,pcf85063.yaml33 quartz-load-femtofarads:
35 The capacitive load of the quartz(x-tal).
57 quartz-load-femtofarads: false
66 quartz-load-femtofarads:
84 quartz-load-femtofarads = <12500>;
/linux/drivers/net/can/softing/
H A Dsofting_cs.c36 .load = {0x0120, 0x00f600, fw_dir "ldcard.bin",},
48 .load = {0x0120, 0x00f600, fw_dir "ldcard.bin",},
60 .load = {0x0120, 0x00f600, fw_dir "ldcard.bin",},
72 .load = {0x0120, 0x00f600, fw_dir "ldcard2.bin",},
84 .load = {0x0120, 0x00f600, fw_dir "ldcard.bin",},
96 .load = {0x0120, 0x00f600, fw_dir "ldcard.bin",},
108 .load = {0x0120, 0x00f600, fw_dir "ldcard2.bin",},
120 .load = {0x0120, 0x00f600, fw_dir "ldcard.bin",},
132 .load = {0x0120, 0x00f600, fw_dir "ldcard2.bin",},
/linux/tools/perf/util/
H A Djitdump.c337 jr->load.pid = bswap_32(jr->load.pid); in jit_get_next_entry()
338 jr->load.tid = bswap_32(jr->load.tid); in jit_get_next_entry()
339 jr->load.vma = bswap_64(jr->load.vma); in jit_get_next_entry()
340 jr->load.code_addr = bswap_64(jr->load.code_addr); in jit_get_next_entry()
341 jr->load.code_size = bswap_64(jr->load.code_size); in jit_get_next_entry()
342 jr->load.code_index= bswap_64(jr->load.code_index); in jit_get_next_entry()
382 return jr->load.pid; in jr_entry_pid()
389 return jr->load.tid; in jr_entry_tid()
443 nspid = jr->load.pid; in jit_repipe_code_load()
446 csize = jr->load.code_size; in jit_repipe_code_load()
[all …]
/linux/Documentation/leds/
H A Dleds-mt6370-rgb.rst50 * Tr1: First rising time for 0% - 30% load.
51 * Tr2: Second rising time for 31% - 100% load.
52 * Ton: On time for 100% load.
53 * Tf1: First falling time for 100% - 31% load.
54 * Tf2: Second falling time for 30% to 0% load.
55 * Toff: Off time for 0% load.
/linux/arch/arm/include/debug/
H A D8250.S21 .macro load, rd, rx:vararg macro
30 .macro load, rd, rx:vararg macro
42 1002: load \rd, [\rx, #UART_LSR << UART_SHIFT]
52 1001: load \rd, [\rx, #UART_MSR << UART_SHIFT]
/linux/arch/mips/alchemy/
H A DPlatform13 load-$(CONFIG_MIPS_DB1XXX) += 0xffffffff80100000
18 load-$(CONFIG_MIPS_MTX1) += 0xffffffff80100000
23 load-$(CONFIG_MIPS_XXS1500) += 0xffffffff80100000
28 load-$(CONFIG_MIPS_GPR) += 0xffffffff80100000
/linux/arch/mips/kernel/
H A Dcmpxchg.c53 u32 mask, old32, new32, load32, load; in __cmpxchg_small() local
88 load = (load32 & mask) >> shift; in __cmpxchg_small()
89 if (load != old) in __cmpxchg_small()
90 return load; in __cmpxchg_small()
/linux/tools/memory-model/Documentation/
H A Dglossary.txt8 based on the value returned by an earlier load, an "address
9 dependency" extends from that load extending to the later access.
29 a special operation that includes a load and which orders that
30 load before later memory references running on that same CPU.
35 When an acquire load returns the value stored by a release store
36 to that same variable, (in other words, the acquire load "reads
55 of a value computed from a value returned by an earlier load,
56 a "control dependency" extends from that load to that store.
89 on the value returned by an earlier load, a "data dependency"
90 extends from that load to that later store. For example:
[all …]

12345678910>>...44