/Linux-v4.19/tools/testing/selftests/powerpc/ptrace/ |
D | ptrace-vsx.h | 17 int validate_vsx(unsigned long *vsx, unsigned long *load) in validate_vsx() argument 22 if (vsx[i] != load[2 * i + 1]) { in validate_vsx() 24 i, vsx[i], 2 * i + 1, load[2 * i + 1]); in validate_vsx() 35 int validate_vmx(unsigned long vmx[][2], unsigned long *load) in validate_vmx() argument 41 if ((vmx[i][0] != load[64 + 2 * i]) || in validate_vmx() 42 (vmx[i][1] != load[65 + 2 * i])) { in validate_vmx() 45 load[64 + 2 * i]); in validate_vmx() 48 load[65 + 2 * i]); in validate_vmx() 55 if ((vmx[i][0] != load[65 + 2 * i]) || in validate_vmx() 56 (vmx[i][1] != load[64 + 2 * i])) { in validate_vmx() [all …]
|
/Linux-v4.19/arch/nds32/mm/ |
D | alignment.c | 198 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-v4.19/tools/power/cpupower/bench/ |
D | README-BENCH | 9 - 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 …]
|
D | benchmark.c | 45 unsigned int calculate_timespace(long load, struct config *config) in calculate_timespace() argument 54 printf("calibrating load of %lius, please wait...\n", load); in calculate_timespace() 66 rounds = (unsigned int)(load * estimated / timed); in calculate_timespace() 101 load_time = config->load; in start_benchmark() 105 total_time += _round * (config->sleep + config->load); in start_benchmark()
|
/Linux-v4.19/arch/mips/sibyte/ |
D | Platform | 37 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-v4.19/tools/perf/scripts/python/bin/ |
D | mem-phys-addr-record | 8 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-v4.19/drivers/watchdog/ |
D | sp805_wdt.c | 94 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-v4.19/drivers/misc/genwqe/ |
D | card_dev.c | 505 struct genwqe_bitstream *load) in do_flash_update() argument 520 if ((load->size & 0x3) != 0) in do_flash_update() 523 if (((unsigned long)(load->data_addr) & ~PAGE_MASK) != 0) in do_flash_update() 527 switch ((char)load->partition) { in do_flash_update() 541 buf = (u8 __user *)load->data_addr; in do_flash_update() 546 blocks_to_flash = load->size / FLASH_BLOCK; in do_flash_update() 547 while (load->size) { in do_flash_update() 554 tocopy = min_t(size_t, load->size, FLASH_BLOCK); in do_flash_update() 584 req->__asiv[24] = load->uid; in do_flash_update() 588 *(__be64 *)&req->__asiv[88] = cpu_to_be64(load->slu_id); in do_flash_update() [all …]
|
/Linux-v4.19/kernel/sched/ |
D | pelt.c | 110 unsigned long load, unsigned long runnable, int running) in accumulate_sum() argument 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 214 if (!load) in ___update_load_sum() 224 if (!accumulate_sum(delta, cpu, sa, load, runnable, running)) in ___update_load_sum() 231 ___update_load_avg(struct sched_avg *sa, unsigned long load, unsigned long runnable) in ___update_load_avg() argument 238 sa->load_avg = div_u64(load * sa->load_sum, divider); in ___update_load_avg() 273 se->runnable_weight = se->load.weight; in __update_load_avg_blocked_se() 286 se->runnable_weight = se->load.weight; in __update_load_avg_se() [all …]
|
/Linux-v4.19/arch/mips/vr41xx/ |
D | Platform | 11 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-v4.19/include/trace/events/ |
D | thermal.h | 96 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-v4.19/arch/sh/boot/romimage/ |
D | Makefile | 9 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-v4.19/include/linux/sched/ |
D | loadavg.h | 25 #define CALC_LOAD(load,exp,n) \ argument 26 load *= exp; \ 27 load += n*(FIXED_1-exp); \ 28 load >>= FSHIFT;
|
/Linux-v4.19/arch/mips/ralink/ |
D | Platform | 10 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-v4.19/tools/perf/util/ |
D | jitdump.c | 327 jr->load.pid = bswap_32(jr->load.pid); in jit_get_next_entry() 328 jr->load.tid = bswap_32(jr->load.tid); in jit_get_next_entry() 329 jr->load.vma = bswap_64(jr->load.vma); in jit_get_next_entry() 330 jr->load.code_addr = bswap_64(jr->load.code_addr); in jit_get_next_entry() 331 jr->load.code_size = bswap_64(jr->load.code_size); in jit_get_next_entry() 332 jr->load.code_index= bswap_64(jr->load.code_index); in jit_get_next_entry() 405 pid = jr->load.pid; in jit_repipe_code_load() 406 tid = jr->load.tid; in jit_repipe_code_load() 407 csize = jr->load.code_size; in jit_repipe_code_load() 409 addr = jr->load.code_addr; in jit_repipe_code_load() [all …]
|
/Linux-v4.19/Documentation/isdn/ |
D | README.avmb1 | 24 You need at least /dev/capi20 to load the firmware. 41 if you configure as modules load the modules this way: 49 if you have an B1-PCI card load the module b1pci.o 51 and load the firmware with 52 avmcapictrl load /lib/isdn/b1.t4 1 54 if you have an B1-ISA card load the module b1isa.o 57 and load the firmware by calling 58 avmcapictrl load /lib/isdn/b1.t4 1 60 if you have an T1-ISA card load the module t1isa.o 63 and load the firmware by calling [all …]
|
/Linux-v4.19/arch/m68k/fpsp040/ |
D | do_func.S | 98 | 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-v4.19/drivers/net/can/softing/ |
D | softing_cs.c | 47 .load = {0x0120, 0x00f600, fw_dir "ldcard.bin",}, 59 .load = {0x0120, 0x00f600, fw_dir "ldcard.bin",}, 71 .load = {0x0120, 0x00f600, fw_dir "ldcard.bin",}, 83 .load = {0x0120, 0x00f600, fw_dir "ldcard2.bin",}, 95 .load = {0x0120, 0x00f600, fw_dir "ldcard.bin",}, 107 .load = {0x0120, 0x00f600, fw_dir "ldcard.bin",}, 119 .load = {0x0120, 0x00f600, fw_dir "ldcard2.bin",}, 131 .load = {0x0120, 0x00f600, fw_dir "ldcard.bin",}, 143 .load = {0x0120, 0x00f600, fw_dir "ldcard2.bin",},
|
/Linux-v4.19/arch/arm/include/debug/ |
D | 8250.S | 24 .macro load, rd, rx:vararg macro 33 .macro load, rd, rx:vararg macro 45 1002: load \rd, [\rx, #UART_LSR << UART_SHIFT] 53 1001: load \rd, [\rx, #UART_MSR << UART_SHIFT]
|
/Linux-v4.19/arch/mips/sgi-ip22/ |
D | Platform | 4 # 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-v4.19/arch/mips/alchemy/ |
D | Platform | 13 load-$(CONFIG_MIPS_DB1XXX) += 0xffffffff80100000 19 load-$(CONFIG_MIPS_MTX1) += 0xffffffff80100000 25 load-$(CONFIG_MIPS_XXS1500) += 0xffffffff80100000 31 load-$(CONFIG_MIPS_GPR) += 0xffffffff80100000
|
/Linux-v4.19/arch/mips/kernel/ |
D | cmpxchg.c | 60 u8 load; in __cmpxchg_small() local 93 load = (load32 & mask) >> shift; in __cmpxchg_small() 94 if (load != old) in __cmpxchg_small() 95 return load; in __cmpxchg_small()
|
/Linux-v4.19/Documentation/devicetree/bindings/gpio/ |
D | gpio-pisosr.txt | 15 - 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-v4.19/Documentation/livepatch/ |
D | callbacks.txt | 69 - Refuse to load a livepatch, if the livepatch is loaded after 74 - Refuse to load a module, if the livepatch was already successfully 135 patches a function in the first module. (Un)load the target module 138 - load target module 139 - load livepatch 144 First load a target module: 188 This test is similar to the previous test, but (un)load the livepatch 192 - load livepatch 193 - load target module 245 - load target module [all …]
|
/Linux-v4.19/arch/alpha/boot/ |
D | bootp.c | 112 load(unsigned long dst, unsigned long src, unsigned long count) in load() function 202 load(initrd_start, KERNEL_ORIGIN+KERNEL_SIZE, INITRD_IMAGE_SIZE); in start_kernel() 204 load(START_ADDR+(4*KERNEL_SIZE), KERNEL_ORIGIN, KERNEL_SIZE); in start_kernel() 205 load(START_ADDR, START_ADDR+(4*KERNEL_SIZE), KERNEL_SIZE); in start_kernel()
|