Searched refs:low (Results 51 - 75 of 589) sorted by relevance

1234567891011>>

/linux-master/include/linux/
H A Dstackleak.h48 * that region falls between 'low' (inclusive) and 'high' (exclusive).
51 stackleak_find_top_of_poison(const unsigned long low, const unsigned long high) argument
58 while (sp > low && poison_count < depth) {
/linux-master/drivers/thermal/
H A Dloongson2_thermal.c40 int low, int high, bool enable)
45 low = clamp(-40, low, high);
46 high = clamp(125, low, high);
48 low += HECTO;
51 reg_ctrl = low;
86 static int loongson2_thermal_set_trips(struct thermal_zone_device *tz, int low, int high) argument
90 return loongson2_thermal_set(data, low/MILLI, high/MILLI, true);
39 loongson2_thermal_set(struct loongson2_thermal_data *data, int low, int high, bool enable) argument
/linux-master/arch/x86/xen/
H A Dpmu.h18 bool pmu_msr_write(unsigned int msr, uint32_t low, uint32_t high, int *err);
/linux-master/tools/include/linux/
H A Dmath64.h32 u32 high, low; local
34 asm ("mull %[b]" : "=a" (low), "=d" (high)
37 return low | ((u64)high) << 32;
/linux-master/arch/x86/kernel/
H A Dresource.c10 resource_size_t low = 0, high = 0; local
16 low = start - res->start;
22 if (low > high)
64 * the low 1MB unconditionally, as this area is needed for some ISA
/linux-master/tools/perf/arch/x86/util/
H A Dtsc.c13 unsigned int low, high; local
15 asm volatile("rdtsc" : "=a" (low), "=d" (high));
17 return low | ((u64)high) << 32;
/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 << 32 | low);
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/kernel/
H A Dkallsyms.c213 int low, mid, high; local
217 low = 0;
220 while (low <= high) {
221 mid = low + (high - low) / 2;
227 low = mid + 1;
234 if (low > high)
237 low = mid;
238 while (low) {
239 seq = get_symbol_seq(low
326 unsigned long i, low, high, mid; local
[all...]
/linux-master/arch/s390/include/asm/
H A Dctlreg.h91 #define __local_ctl_load(low, high, array) do { \
96 int _low = low; \
106 [_low] "i" (low), [_high] "i" (high) \
110 #define __local_ctl_store(low, high, array) do { \
115 int _low = low; \
124 : [_low] "i" (low), [_high] "i" (high)); \
/linux-master/arch/s390/kernel/
H A Dcompat_linux.c70 COMPAT_SYSCALL_DEFINE3(s390_truncate64, const char __user *, path, u32, high, u32, low)
72 return ksys_truncate(path, (unsigned long)high << 32 | low);
75 COMPAT_SYSCALL_DEFINE3(s390_ftruncate64, unsigned int, fd, u32, high, u32, low)
77 return ksys_ftruncate(fd, (unsigned long)high << 32 | low);
81 compat_size_t, count, u32, high, u32, low)
85 return ksys_pread64(fd, ubuf, count, (unsigned long)high << 32 | low);
89 compat_size_t, count, u32, high, u32, low)
93 return ksys_pwrite64(fd, ubuf, count, (unsigned long)high << 32 | low);
96 COMPAT_SYSCALL_DEFINE4(s390_readahead, int, fd, u32, high, u32, low, s32, count)
98 return ksys_readahead(fd, (unsigned long)high << 32 | low, coun
[all...]
/linux-master/arch/csky/kernel/
H A Dperf_callchain.c15 unsigned long low = (unsigned long)task_stack_page(current); local
16 unsigned long high = low + THREAD_SIZE;
18 if (unlikely(frame->fp < low || frame->fp > high))
/linux-master/arch/x86/include/asm/
H A Ddiv64.h65 u32 high, low; local
67 asm ("mull %[b]" : "=a" (low), "=d" (high)
70 return low | ((u64)high) << 32;
/linux-master/arch/loongarch/include/asm/
H A Dirq.h32 unsigned long low = per_cpu(irq_stack, cpu); local
33 unsigned long high = low + IRQ_STACK_SIZE;
35 return (low <= sp && sp <= high);
/linux-master/include/media/
H A Dcec-pin.h3 * cec-pin.h - low-level CEC pin control
15 * struct cec_pin_ops - low-level CEC pin operations
16 * @read: read the CEC pin. Returns > 0 if high, 0 if low, or an error
18 * @low: drive the CEC pin low.
20 * high, unless someone else is driving the pin low.
26 * @read_hpd: optional. Read the HPD pin. Returns > 0 if high, 0 if low or
28 * @read_5v: optional. Read the 5V pin. Returns > 0 if high, 0 if low or
38 void (*low)(struct cec_adapter *adap); member in struct:cec_pin_ops
55 * @value: when true the pin is high, otherwise it is low
[all...]
/linux-master/arch/mips/include/asm/mach-loongson64/
H A Dloongson_hwmon.h23 u8 low; member in struct:temp_range
/linux-master/tools/tracing/rtla/
H A DMakefile.config19 $(info libtraceevent version is too low, it must be at least $(LIBTRACEEVENT_MIN_VERSION))
35 $(info libtracefs version is too low, it must be at least $(LIBTRACEFS_MIN_VERSION))
/linux-master/tools/verification/rv/
H A DMakefile.config19 $(info libtraceevent version is too low, it must be at least $(LIBTRACEEVENT_MIN_VERSION))
35 $(info libtracefs version is too low, it must be at least $(LIBTRACEFS_MIN_VERSION))
/linux-master/drivers/net/ethernet/engleder/
H A Dtsnep_ptp.c9 u32 low; local
15 low = ioread32(adapter->addr + ECM_SYSTEM_TIME_LOW);
19 *time = (((u64)high) << 32) | ((u64)low);
118 * system time when low dword is written
136 u32 low; local
144 low = ioread32(adapter->addr + ECM_SYSTEM_TIME_LOW);
149 system_time = (((u64)high) << 32) | ((u64)low);
167 * system time when low dword is written
185 u32 low; local
193 low
[all...]
/linux-master/sound/soc/amd/acp/
H A Damd.h247 u64 byte_count = 0, low = 0, high = 0; local
253 low = readl(adata->acp_base + ACP_BT_TX_LINEARPOSITIONCNTR_LOW);
257 low = readl(adata->acp_base + ACP_I2S_TX_LINEARPOSITIONCNTR_LOW);
261 low = readl(adata->acp_base + ACP_HS_TX_LINEARPOSITIONCNTR_LOW);
271 low = readl(adata->acp_base + ACP_BT_RX_LINEARPOSITIONCNTR_LOW);
275 low = readl(adata->acp_base + ACP_I2S_RX_LINEARPOSITIONCNTR_LOW);
279 low = readl(adata->acp_base + ACP_HS_RX_LINEARPOSITIONCNTR_LOW);
283 low = readl(adata->acp_base + ACP_WOV_RX_LINEARPOSITIONCNTR_LOW);
291 byte_count = (high << 32) | low;
/linux-master/drivers/net/wireless/intel/iwlegacy/
H A D3945-rs.c528 u8 low = RATE_INVALID; local
541 low = i;
555 return (high << 8) | low;
558 low = idx;
559 while (low != RATE_INVALID) {
561 low = il3945_rates[low].prev_rs_tgg;
563 low = il3945_rates[low].prev_rs;
564 if (low
609 u8 low = RATE_INVALID; local
[all...]
/linux-master/drivers/net/wireless/purelifi/plfxlc/
H A Dchip.h33 u32 low; member in struct:plfxlc_mc_hash
66 hash->low = 0xffffffff;
/linux-master/arch/x86/kernel/cpu/mce/
H A Damd.c246 u32 low, high; local
252 if (rdmsr_safe(MSR_AMD64_SMCA_MCx_CONFIG(bank), &low, &high))
255 if (!(low & MCI_CONFIG_MCAX))
258 if (rdmsr_safe(MSR_AMD64_SMCA_MCx_MISC(bank), &low, &high))
261 if (low & MASK_BLKPTR_LO)
271 u32 high, low; local
275 if (!rdmsr_safe(smca_config, &low, &high)) {
298 if ((low & BIT(5)) && !((high >> 5) & 0x3))
301 this_cpu_ptr(mce_banks_array)[bank].lsb_in_status = !!(low & BIT(8));
303 wrmsr(smca_config, low, hig
495 u32 low = 0, high = 0; local
531 get_block_address(u32 current_addr, u32 low, u32 high, unsigned int bank, unsigned int block, unsigned int cpu) argument
675 u32 low = 0, high = 0, address = 0; local
894 u32 low = 0, high = 0; local
1125 u32 low, high; local
[all...]
/linux-master/arch/arm/kernel/
H A Dstacktrace.c49 unsigned long high, low; local
63 low = frame->sp;
64 high = ALIGN(low, THREAD_SIZE);
68 if (fp < low + 4 || fp > high - 4)
71 if (fp < low + 12 || fp > high - 4)
/linux-master/sound/soc/amd/vangogh/
H A Dacp5x.h114 u32 low; member in struct:acp_dma_count::__anon5028
163 byte_count.bcount.low =
172 byte_count.bcount.low =
182 byte_count.bcount.low =
191 byte_count.bcount.low =
/linux-master/drivers/gpu/drm/amd/pm/powerplay/hwmgr/
H A Dvega12_thermal.c163 * for high and low alert signals
167 * high and low alert signals
176 int low = VEGA12_THERMAL_MINIMUM_ALERT_TEMP; local
181 if (low < range->min / PP_TEMPERATURE_UNITS_PER_CENTIGRADES)
182 low = range->min / PP_TEMPERATURE_UNITS_PER_CENTIGRADES;
186 if (low > high)
194 val = REG_SET_FIELD(val, THM_THERMAL_INT_CTRL, DIG_THERM_INTL, low);
298 /* We should restrict performance levels to low before we halt the SMC.

Completed in 335 milliseconds

1234567891011>>