Searched refs:load (Results 1 - 25 of 391) sorted by relevance

1234567891011>>

/linux-master/tools/perf/scripts/python/bin/
H A Dmem-phys-addr-record4 # Profiling physical memory by all retired load instructions/uops event
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
13 echo "There is no event to count all retired load instructions/uops."
17 arg=$(echo $load | tr -d ' ')
/linux-master/tools/testing/selftests/powerpc/ptrace/
H A Dptrace-vsx.h11 * unsigned long load[128]
13 int validate_vsx(unsigned long *vsx, unsigned long *load) argument
18 if (vsx[i] != load[2 * i + 1]) {
19 printf("vsx[%d]: %lx load[%d] %lx\n",
20 i, vsx[i], 2 * i + 1, load[2 * i + 1]);
29 * unsigned long load[128]
31 int validate_vmx(unsigned long vmx[][2], unsigned long *load) argument
37 if ((vmx[i][0] != load[64 + 2 * i]) ||
38 (vmx[i][1] != load[65 + 2 * i])) {
39 printf("vmx[%d][0]: %lx load[
70 compare_vsx_vmx(unsigned long *store, unsigned long *load) argument
108 load_vsx_vmx(unsigned long *load, unsigned long *vsx, unsigned long vmx[][2]) argument
[all...]
/linux-master/include/linux/sched/
H A Dloadavg.h6 * These are the constant used to fake the fixed-point load-average
9 * a load-average precision of 10 bits integer + 11 bits fractional
10 * - if you want to count load-averages more often, you need more
29 calc_load(unsigned long load, unsigned long exp, unsigned long active) argument
33 newload = load * exp + active * (FIXED_1 - exp);
34 if (active >= load)
40 extern unsigned long calc_load_n(unsigned long load, unsigned long exp,
/linux-master/drivers/platform/x86/intel/ifs/
H A DMakefile3 intel_ifs-objs := core.o load.o runtest.o sysfs.o
/linux-master/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-master/tools/power/cpupower/bench/
H A Dparse.h11 long load; /* load time in ��s */ member in struct:config
15 * load time after every round in ��s */
16 unsigned int cycles; /* calculation cycles with the same sleep/load time */
17 unsigned int rounds; /* calculation rounds with iterated sleep/load time */
/linux-master/arch/arm/include/debug/
H A D8250.S21 .macro load, rd, rx:vararg
30 .macro load, rd, rx:vararg
42 1002: load \rd, [\rx, #UART_LSR << UART_SHIFT]
52 1001: load \rd, [\rx, #UART_MSR << UART_SHIFT]
/linux-master/drivers/net/can/softing/
H A Dsofting_platform.h32 } boot, load, app; member in struct:softing_platform_data
/linux-master/drivers/gpu/drm/nouveau/nvkm/engine/nvenc/
H A Dpriv.h12 int (*load)(struct nvkm_nvenc *, int ver, member in struct:nvkm_nvenc_fwif
/linux-master/tools/testing/selftests/kexec/
H A Dtest_kexec_load.sh32 kexec --load $KERNEL_IMAGE > /dev/null 2>&1
/linux-master/drivers/clocksource/
H A Dtimer-sp.h35 int load; member in struct:sp804_timer
51 void __iomem *load; member in struct:sp804_clkevt
/linux-master/arch/mips/generic/
H A Dvmlinux.its.S16 load = /bits/ ADDR_BITS <VMLINUX_LOAD_ADDRESS>; define
/linux-master/arch/mips/kernel/
H A Dcmpxchg.c36 * includes our byte of interest, and load its value.
53 u32 mask, old32, new32, load32, load; local
78 * includes our byte of interest, and load its value.
88 load = (load32 & mask) >> shift;
89 if (load != old)
90 return load;
/linux-master/drivers/gpu/drm/nouveau/nvkm/engine/nvdec/
H A Dpriv.h14 int (*load)(struct nvkm_nvdec *, int ver, member in struct:nvkm_nvdec_fwif
/linux-master/arch/mips/mobileye/
H A Dvmlinux.its.S16 load = /bits/ ADDR_BITS <VMLINUX_LOAD_ADDRESS>; define
/linux-master/drivers/gpu/drm/nouveau/dispnv50/
H A Dlut.c33 void (*load)(struct drm_color_lut *, int, void __iomem *))
48 load(in, 1024, mem);
52 load(in, drm_color_lut_size(blob), mem);
/linux-master/tools/testing/selftests/powerpc/security/
H A Dflush_utils.c21 static inline __u64 load(void *addr) function
35 load(p + j);
47 load(p + j);
/linux-master/drivers/watchdog/
H A Dsp805_wdt.c66 * @load_val: load value to be set for current timeout
92 /* This routine finds load value that will reset system in required timeout */
96 u64 load, rate; local
104 * load is half of what should be required.
106 load = div_u64(rate, 2) * timeout - 1;
108 load = (load > LOAD_MAX) ? LOAD_MAX : load;
109 load = (load < LOAD_MI
124 u64 load; local
[all...]
/linux-master/kernel/sched/
H A Dpelt.c103 unsigned long load, unsigned long runnable, int running)
124 if (load) {
128 * if (!load)
141 if (load)
142 sa->load_sum += load * contrib;
164 * following representation of historical load:
170 * This means that the contribution to load ~32ms ago (u_32) will be weighted
171 * approximately half as much as the contribution to load within the last ms
181 unsigned long load, unsigned long runnable, int running)
216 if (!load)
102 accumulate_sum(u64 delta, struct sched_avg *sa, unsigned long load, unsigned long runnable, int running) argument
180 ___update_load_sum(u64 now, struct sched_avg *sa, unsigned long load, unsigned long runnable, int running) argument
257 ___update_load_avg(struct sched_avg *sa, unsigned long load) argument
[all...]
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/acr/
H A Dgp108.c54 .load = gm200_flcn_fw_load,
73 .load = gm200_flcn_fw_load,
89 .load = gp108_acr_load_fwif,
H A Dgp10b.c37 .load = gp10b_acr_load_fwif,
H A Dgv100.c44 .load = gv100_acr_load_fwif,
/linux-master/drivers/gpu/drm/nouveau/include/nvkm/core/
H A Dfirmware.h56 for (_next = _list; !_fwif && _next->load; _next++) { \
67 for (_next = _fwif ? _fwif : _list; _next->load; _next++) { \
69 _ret = _next->load(p, _fwv, _next); \
/linux-master/arch/x86/realmode/rm/
H A Dtrampoline_32.S19 * and IP is zero. Thus, we load CS to the physical segment
46 * lgdt will not be able to load the address as in real mode default
50 lidtl tr_idt # load idt with 0, 0
51 lgdtl tr_gdt # load gdt with whatever is appropriate
/linux-master/arch/alpha/boot/
H A Dbootp.c111 load(unsigned long dst, unsigned long src, unsigned long count) function
201 load(initrd_start, KERNEL_ORIGIN+KERNEL_SIZE, INITRD_IMAGE_SIZE);
203 load(START_ADDR+(4*KERNEL_SIZE), KERNEL_ORIGIN, KERNEL_SIZE);
204 load(START_ADDR, START_ADDR+(4*KERNEL_SIZE), KERNEL_SIZE);

Completed in 284 milliseconds

1234567891011>>