Searched refs:high (Results 76 - 100 of 545) sorted by path

1234567891011>>

/linux-master/arch/csky/kernel/
H A Dperf_callchain.c16 unsigned long high = low + THREAD_SIZE; local
18 if (unlikely(frame->fp < low || frame->fp > high))
H A Dstacktrace.c38 unsigned long low, high; local
46 high = ALIGN(sp, THREAD_SIZE);
47 if (unlikely(fp < low || fp > high || fp & 0x3))
/linux-master/arch/hexagon/kernel/
H A Dstacktrace.c24 unsigned long low, high; local
30 high = low + THREAD_SIZE;
33 while (fp >= low && fp <= (high - sizeof(*frame))) {
H A Dtraps.c84 unsigned long low, high; local
116 high = low + THREAD_SIZE - 8;
124 if (((unsigned long) fp < low) || (high < (unsigned long) fp))
/linux-master/arch/loongarch/include/asm/
H A Dirq.h33 unsigned long high = low + IRQ_STACK_SIZE; local
35 return (low <= sp && sp <= high);
/linux-master/arch/loongarch/kernel/
H A Dsetup.c262 bool high = false; local
268 &crash_size, &crash_base, &low_size, &high);
272 reserve_crashkernel_generic(cmdline, crash_size, crash_base, low_size, high);
/linux-master/arch/m68k/lib/
H A Dmuldi3.c66 umul_ppmm (__w.s.high, __w.s.low, u, v); \
74 struct DIstruct {SItype high, low;}; member in struct:DIstruct
92 w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high
93 + (USItype) uu.s.high * (USItype) vv.s.low);
/linux-master/arch/mips/include/asm/
H A Ddiv64.h20 #define do_div64_32(res, high, low, base) ({ \
53 : "Jr" (base), "0" (high), "1" (low)); \
H A Dirq.h41 unsigned long high = low + IRQ_STACK_SIZE; local
43 return (low <= sp && sp <= high);
/linux-master/arch/mips/include/asm/mach-loongson64/
H A Dloongson_hwmon.h24 u8 high; member in struct:temp_range
/linux-master/arch/mips/kernel/
H A Dprocess.c549 unsigned long low, high, irq_stack_high; local
564 high = stack_page + IRQ_STACK_START;
565 irq_stack_high = high;
567 high = stack_page + THREAD_SIZE - 32;
615 if (*sp < low || *sp + info.frame_size > high)
/linux-master/arch/parisc/kernel/
H A Dsys_parisc.c210 unsigned int high, unsigned int low)
212 return ksys_truncate(path, (long)high << 32 | low);
216 unsigned int high, unsigned int low)
218 return ksys_ftruncate(fd, (long)high << 32 | low);
238 unsigned int high, unsigned int low)
240 return ksys_truncate(path, (loff_t)high << 32 | low);
244 unsigned int high, unsigned int low)
246 return sys_ftruncate64(fd, (loff_t)high << 32 | low);
251 unsigned int high, unsigned int low)
253 return ksys_pread64(fd, buf, count, (loff_t)high << 3
209 parisc_truncate64(const char __user * path, unsigned int high, unsigned int low) argument
215 parisc_ftruncate64(unsigned int fd, unsigned int high, unsigned int low) argument
237 parisc_truncate64(const char __user * path, unsigned int high, unsigned int low) argument
243 parisc_ftruncate64(unsigned int fd, unsigned int high, unsigned int low) argument
250 parisc_pread64(unsigned int fd, char __user *buf, size_t count, unsigned int high, unsigned int low) argument
256 parisc_pwrite64(unsigned int fd, const char __user *buf, size_t count, unsigned int high, unsigned int low) argument
262 parisc_readahead(int fd, unsigned int high, unsigned int low, size_t count) argument
[all...]
/linux-master/arch/parisc/lib/
H A Ducmpdi2.c8 unsigned int high; member in struct:ull_union::__anon9
18 if (au.ui.high < bu.ui.high)
20 else if (au.ui.high > bu.ui.high)
/linux-master/arch/powerpc/
H A DMakefile169 asinstr := $(call as-instr,lis 9$(comma)foo@high,-DHAVE_AS_ATHIGH=1)
/linux-master/arch/powerpc/include/asm/
H A Dppc_asm.h169 #define HMT_MEDIUM_HIGH or 5,5,5 # medium high priority
331 #define __AS_ATHIGH high
H A Dsyscalls.h33 #define merge_64(low, high) (((u64)high << 32) | low)
35 #define merge_64(high, low) (((u64)high << 32) | low)
/linux-master/arch/powerpc/kernel/
H A Dtau_6xx.c39 unsigned char high; member in struct:tau_temp
63 mtspr(SPRN_THRM2, THRM1_THRES(tau[cpu].high) | THRM1_V | maybe_tie);
79 tau[cpu].high -= (step_size - window_expand);
88 if (tau[cpu].high <= 127 - step_size) {
90 tau[cpu].high += step_size;
93 pr_debug("%s: high threshold crossed\n", __func__);
127 size = tau[cpu].high - tau[cpu].low;
133 tau[cpu].high -= shrink;
137 if ((tau[cpu].high - tau[cpu].low) != min_window){
184 tau[cpu].high
[all...]
/linux-master/arch/powerpc/kexec/
H A Dcore_64.c40 unsigned long low, high; /* limits of blocked memory range */
62 high = low + (*sizep);
68 if ((begin < high) && (end > low)) {
38 unsigned long low, high; /* limits of blocked memory range */ local
/linux-master/arch/powerpc/platforms/powermac/
H A Dnvram.c242 u32 low, high; local
246 high = 0;
249 high %= 65521UL;
250 high %= 65521UL;
253 high += low;
256 high %= 65521UL;
258 return (high << 16) | low;
/linux-master/arch/powerpc/platforms/pseries/
H A Dvio.c87 * @high: high water mark for IO data usage
100 size_t high; member in struct:vio_cmo
165 if (vio_cmo.curr > vio_cmo.high)
166 vio_cmo.high = vio_cmo.curr;
1023 return sprintf(buf, "%lu\n", vio_cmo.high);
1032 vio_cmo.high = vio_cmo.curr;
/linux-master/arch/riscv/kernel/
H A Dstacktrace.c44 unsigned long low, high; local
52 high = ALIGN(sp, THREAD_SIZE);
53 if (unlikely(fp < low || fp > high || fp & 0x7))
/linux-master/arch/riscv/mm/
H A Dinit.c1362 bool high = false;
1370 &low_size, &high);
1375 low_size, high);
1361 bool high = false; local
/linux-master/arch/s390/boot/
H A Dhead.S243 0: lmh %r0,%r15,0(%r13) # clear high-order half of gprs
/linux-master/arch/s390/include/asm/
H A Dctlreg.h91 #define __local_ctl_load(low, high, array) do { \
95 int _high = high; \
106 [_low] "i" (low), [_high] "i" (high) \
110 #define __local_ctl_store(low, high, array) do { \
114 int _high = high; \
124 : [_low] "i" (low), [_high] "i" (high)); \
H A Dfpu.h151 freg_t *fprs = (freg_t *)&vxrs[0].high;
158 freg_t *fprs = (freg_t *)&vxrs[0].high;
271 fprs[i].ui = vxrs[i].high;
279 vxrs[i].high = fprs[i].ui;

Completed in 368 milliseconds

1234567891011>>