Home
last modified time | relevance | path

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

12345678910>>...35

/Linux-v5.4/tools/testing/selftests/powerpc/ptrace/
Dptrace-vsx.h13 int validate_vsx(unsigned long *vsx, unsigned long *load) in validate_vsx() argument
18 if (vsx[i] != load[2 * i + 1]) { in validate_vsx()
20 i, vsx[i], 2 * i + 1, load[2 * i + 1]); in validate_vsx()
31 int validate_vmx(unsigned long vmx[][2], unsigned long *load) in validate_vmx() argument
37 if ((vmx[i][0] != load[64 + 2 * i]) || in validate_vmx()
38 (vmx[i][1] != load[65 + 2 * i])) { in validate_vmx()
41 load[64 + 2 * i]); in validate_vmx()
44 load[65 + 2 * i]); in validate_vmx()
51 if ((vmx[i][0] != load[65 + 2 * i]) || in validate_vmx()
52 (vmx[i][1] != load[64 + 2 * i])) { in validate_vmx()
[all …]
/Linux-v5.4/arch/nds32/mm/
Dalignment.c198 int imm, regular, load, len, addr_mode, idx_mode; in do_16() local
206 load = 1; in do_16()
214 load = 1; in do_16()
222 load = 1; in do_16()
230 load = 1; in do_16()
238 load = 0; in do_16()
246 load = 0; in do_16()
254 load = 0; in do_16()
262 load = 0; in do_16()
291 if (load) { in do_16()
[all …]
/Linux-v5.4/tools/power/cpupower/bench/
DREADME-BENCH9 - Identify average reaction time of a governor to CPU load changes
34 You can specify load (100% CPU load) and sleep (0% CPU load) times in us which
38 load=25000
41 This part of the configuration file will create 25ms load/sleep turns,
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
76 In round 1, ondemand should have rather static 50% load and probably
[all …]
Dbenchmark.c32 unsigned int calculate_timespace(long load, struct config *config) in calculate_timespace() argument
41 printf("calibrating load of %lius, please wait...\n", load); in calculate_timespace()
53 rounds = (unsigned int)(load * estimated / timed); in calculate_timespace()
88 load_time = config->load; in start_benchmark()
92 total_time += _round * (config->sleep + config->load); in start_benchmark()
/Linux-v5.4/arch/mips/sibyte/
DPlatform37 load-$(CONFIG_SIBYTE_CARMEL) := 0xffffffff80100000
38 load-$(CONFIG_SIBYTE_CRHINE) := 0xffffffff80100000
39 load-$(CONFIG_SIBYTE_CRHONE) := 0xffffffff80100000
40 load-$(CONFIG_SIBYTE_RHONE) := 0xffffffff80100000
41 load-$(CONFIG_SIBYTE_SENTOSA) := 0xffffffff80100000
42 load-$(CONFIG_SIBYTE_SWARM) := 0xffffffff80100000
43 load-$(CONFIG_SIBYTE_BIGSUR) := 0xffffffff80100000
44 load-$(CONFIG_SIBYTE_LITTLESUR) := 0xffffffff80100000
/Linux-v5.4/tools/perf/scripts/python/bin/
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-v5.4/drivers/watchdog/
Dsp805_wdt.c94 u64 load, rate; in wdt_setload() local
104 load = div_u64(rate, 2) * timeout - 1; in wdt_setload()
106 load = (load > LOAD_MAX) ? LOAD_MAX : load; in wdt_setload()
107 load = (load < LOAD_MIN) ? LOAD_MIN : load; in wdt_setload()
110 wdt->load_val = load; in wdt_setload()
112 wdd->timeout = div_u64((load + 1) * 2 + (rate / 2), rate); in wdt_setload()
122 u64 load; in wdt_timeleft() local
125 load = readl_relaxed(wdt->base + WDTVALUE); in wdt_timeleft()
129 load += wdt->load_val + 1; in wdt_timeleft()
132 return div_u64(load, wdt->rate); in wdt_timeleft()
/Linux-v5.4/drivers/misc/genwqe/
Dcard_dev.c498 struct genwqe_bitstream *load) in do_flash_update() argument
513 if ((load->size & 0x3) != 0) in do_flash_update()
516 if (((unsigned long)(load->data_addr) & ~PAGE_MASK) != 0) in do_flash_update()
520 switch ((char)load->partition) { in do_flash_update()
534 buf = (u8 __user *)load->data_addr; in do_flash_update()
539 blocks_to_flash = load->size / FLASH_BLOCK; in do_flash_update()
540 while (load->size) { in do_flash_update()
547 tocopy = min_t(size_t, load->size, FLASH_BLOCK); in do_flash_update()
577 req->__asiv[24] = load->uid; in do_flash_update()
581 *(__be64 *)&req->__asiv[88] = cpu_to_be64(load->slu_id); in do_flash_update()
[all …]
/Linux-v5.4/arch/mips/vr41xx/
DPlatform11 load-$(CONFIG_CASIO_E55) += 0xffffffff80004000
17 load-$(CONFIG_IBM_WORKPAD) += 0xffffffff80004000
22 load-$(CONFIG_TANBAC_TB022X) += 0xffffffff80000000
27 load-$(CONFIG_VICTOR_MPC30X) += 0xffffffff80001000
32 load-$(CONFIG_ZAO_CAPCELLA) += 0xffffffff80000000
/Linux-v5.4/kernel/sched/
Dpelt.c111 unsigned long load, unsigned long runnable, int running) in accumulate_sum() argument
137 if (load) in accumulate_sum()
138 sa->load_sum += load * contrib; in accumulate_sum()
177 unsigned long load, unsigned long runnable, int running) in ___update_load_sum() argument
210 if (!load) in ___update_load_sum()
220 if (!accumulate_sum(delta, sa, load, runnable, running)) in ___update_load_sum()
227 ___update_load_avg(struct sched_avg *sa, unsigned long load, unsigned long runnable) in ___update_load_avg() argument
234 sa->load_avg = div_u64(load * sa->load_sum, divider); in ___update_load_avg()
294 scale_load_down(cfs_rq->load.weight), in __update_load_avg_cfs_rq()
/Linux-v5.4/include/trace/events/
Dthermal.h96 TP_PROTO(const struct cpumask *cpus, unsigned long freq, u32 *load,
99 TP_ARGS(cpus, freq, load, load_len, dynamic_power),
104 __dynamic_array(u32, load, load_len)
113 memcpy(__get_dynamic_array(load), load,
114 load_len * sizeof(*load));
121 __print_array(__get_dynamic_array(load), __entry->load_len, 4),
163 __field(u32, load )
172 __entry->load = (100 * status->busy_time) / status->total_time;
180 __entry->load, __entry->dynamic_power, __entry->static_power,
/Linux-v5.4/arch/sh/boot/romimage/
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-v5.4/arch/mips/ralink/
DPlatform10 load-$(CONFIG_SOC_RT288X) += 0xffffffff88000000
16 load-$(CONFIG_SOC_RT305X) += 0xffffffff80000000
22 load-$(CONFIG_SOC_RT3883) += 0xffffffff80000000
28 load-$(CONFIG_SOC_MT7620) += 0xffffffff80000000
33 load-$(CONFIG_SOC_MT7621) += 0xffffffff80001000
/Linux-v5.4/include/linux/sched/
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-v5.4/tools/perf/util/
Djitdump.c328 jr->load.pid = bswap_32(jr->load.pid); in jit_get_next_entry()
329 jr->load.tid = bswap_32(jr->load.tid); in jit_get_next_entry()
330 jr->load.vma = bswap_64(jr->load.vma); in jit_get_next_entry()
331 jr->load.code_addr = bswap_64(jr->load.code_addr); in jit_get_next_entry()
332 jr->load.code_size = bswap_64(jr->load.code_size); in jit_get_next_entry()
333 jr->load.code_index= bswap_64(jr->load.code_index); in jit_get_next_entry()
406 pid = jr->load.pid; in jit_repipe_code_load()
407 tid = jr->load.tid; in jit_repipe_code_load()
408 csize = jr->load.code_size; in jit_repipe_code_load()
410 addr = jr->load.code_addr; in jit_repipe_code_load()
[all …]
/Linux-v5.4/Documentation/isdn/
Davmb1.rst27 You need at least /dev/capi20 to load the firmware.
46 if you configure as modules load the modules this way::
54 if you have an B1-PCI card load the module b1pci.o::
58 and load the firmware with::
60 avmcapictrl load /lib/isdn/b1.t4 1
62 if you have an B1-ISA card load the module b1isa.o
67 and load the firmware by calling::
69 avmcapictrl load /lib/isdn/b1.t4 1
71 if you have an T1-ISA card load the module t1isa.o
76 and load the firmware by calling::
[all …]
/Linux-v5.4/arch/m68k/fpsp040/
Ddo_func.S98 | These routines load forced values into fp0. They are called
110 bsr ld_mzero |if neg, load neg zero, return here
118 bne ld_mzero |if neg, load neg zero
119 bra ld_pzero |load positive zero
310 beq ld_pzero |if pos then load +0
311 bra ld_mzero |else neg load -0
448 leal pscalet,%a1 |load start of jump table
449 movel (%a1,%d1.w*4),%a1 |load a1 with label depending on tag
460 beq ld_pzero |if pos then load +0
461 bra ld_mzero |if neg then load -0
[all …]
/Linux-v5.4/drivers/net/can/softing/
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-v5.4/arch/arm/include/debug/
D8250.S21 .macro load, rd, rx:vararg macro
30 .macro load, rd, rx:vararg macro
42 1002: load \rd, [\rx, #UART_LSR << UART_SHIFT]
50 1001: load \rd, [\rx, #UART_MSR << UART_SHIFT]
/Linux-v5.4/arch/mips/sgi-ip22/
DPlatform4 # Set the load address to >= 0xffffffff88069000 if you want to leave space for
13 load-$(CONFIG_SGI_IP22) += 0xffffffff88002000
16 load-$(CONFIG_SGI_IP22) += 0xffffffff88004000
22 # Set the load address to >= 0xa800000020080000 if you want to leave space for
34 load-$(CONFIG_SGI_IP28) += 0xa800000020004000
/Linux-v5.4/arch/mips/kernel/
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-v5.4/arch/mips/alchemy/
DPlatform13 load-$(CONFIG_MIPS_DB1XXX) += 0xffffffff80100000
19 load-$(CONFIG_MIPS_MTX1) += 0xffffffff80100000
25 load-$(CONFIG_MIPS_XXS1500) += 0xffffffff80100000
31 load-$(CONFIG_MIPS_GPR) += 0xffffffff80100000
/Linux-v5.4/Documentation/devicetree/bindings/gpio/
Dgpio-pisosr.txt15 - load-gpios : GPIO pin specifier attached to load enable, this
17 load input pin values into the the device.
29 load-gpios = <&gpio2 23 GPIO_ACTIVE_LOW>;
/Linux-v5.4/Documentation/devicetree/bindings/rtc/
Dnxp,pcf8523.txt8 - quartz-load-femtofarads: The capacitive load of the quartz(x-tal),
17 quartz-load-femtofarads = <7000>;
Dnxp,pcf85063.txt12 - quartz-load-femtofarads: The capacitive load of the quartz(x-tal),
21 quartz-load-femtofarads = <12500>;

12345678910>>...35