Searched refs:low (Results 176 - 200 of 589) sorted by relevance

1234567891011>>

/linux-master/drivers/thermal/qcom/
H A Dqcom-spmi-adc-tm5.c170 int (*configure)(struct adc_tm5_channel *channel, int low, int high);
264 dev_err(chip->dev, "read status low failed: %d\n", ret);
325 dev_err(chip->dev, "clear status low failed with %d\n", ret);
510 static int adc_tm5_configure(struct adc_tm5_channel *channel, int low, int high) argument
525 /* High temperature corresponds to low voltage threshold */
537 if (low != -INT_MAX) {
539 chip->data->full_scale_code_volt, low);
566 static int adc_tm5_gen2_configure(struct adc_tm5_channel *channel, int low, int high) argument
603 /* High temperature corresponds to low voltage threshold */
613 if (low !
642 adc_tm5_set_trips(struct thermal_zone_device *tz, int low, int high) argument
[all...]
/linux-master/fs/xfs/libxfs/
H A Dxfs_dir2_block.c371 int low; /* low index for binary srch */ local
372 int lowstale; /* low stale index */
454 for (low = 0, high = be32_to_cpu(btp->count) - 1; low <= high; ) {
455 mid = (low + high) >> 1;
459 low = mid + 1;
525 * Move entries toward the low-numbered stale entry.
692 int low; /* binary search low inde local
[all...]
/linux-master/arch/sh/kernel/cpu/sh2a/
H A Dfpu.c131 unsigned long long high, low; local
137 low = sub3;
140 if (low > sub3)
142 low = sub3;
144 if (low > sub3)
146 low = sub3;
149 *lowp = low;
/linux-master/drivers/i2c/busses/
H A Di2c-sprd.c67 #define I2C_ADDR_DVD0_CALC(high, low) \
68 ((((high) & GENMASK(15, 0)) << 16) | ((low) & GENMASK(15, 0)))
69 #define I2C_ADDR_DVD1_CALC(high, low) \
70 (((high) & GENMASK(31, 16)) | (((low) & GENMASK(31, 16)) >> 16))
331 * 40% (2/5), and the low period of SCL clock is recommended as 60%
334 * low = (prescale * 2 * 3) / 5
337 u32 low = ((i2c_dvd << 1) * 3) / 5; local
338 u32 div0 = I2C_ADDR_DVD0_CALC(high, low);
339 u32 div1 = I2C_ADDR_DVD1_CALC(high, low);
/linux-master/lib/zstd/compress/
H A Dhuf_compress.c482 HINT_INLINE void HUF_insertionSort(nodeElt huffNode[], int const low, int const high) { argument
484 int const size = high-low+1;
485 huffNode += low;
498 static int HUF_quickSortPartition(nodeElt arr[], int const low, int const high) { argument
503 int i = low - 1;
504 int j = low;
518 static void HUF_simpleQuickSort(nodeElt arr[], int low, int high) { argument
520 if (high - low < kInsertionSortThreshold) {
521 HUF_insertionSort(arr, low, high);
524 while (low < hig
[all...]
/linux-master/drivers/gpu/drm/radeon/
H A Dradeon_asic.h428 u32 rv6xx_dpm_get_sclk(struct radeon_device *rdev, bool low);
429 u32 rv6xx_dpm_get_mclk(struct radeon_device *rdev, bool low);
446 u32 rs780_dpm_get_sclk(struct radeon_device *rdev, bool low);
447 u32 rs780_dpm_get_mclk(struct radeon_device *rdev, bool low);
487 u32 rv770_dpm_get_sclk(struct radeon_device *rdev, bool low);
488 u32 rv770_dpm_get_mclk(struct radeon_device *rdev, bool low);
570 u32 btc_dpm_get_sclk(struct radeon_device *rdev, bool low);
571 u32 btc_dpm_get_mclk(struct radeon_device *rdev, bool low);
587 u32 sumo_dpm_get_sclk(struct radeon_device *rdev, bool low);
588 u32 sumo_dpm_get_mclk(struct radeon_device *rdev, bool low);
[all...]
/linux-master/arch/s390/kernel/
H A Dsetup.c618 phys_addr_t low, high; local
635 low = crash_base ?: oldmem_data.start;
636 high = low + crash_size;
637 if (low >= oldmem_data.start && high <= oldmem_data.start + oldmem_data.size) {
639 crash_base = low;
642 low = max_t(unsigned long, crash_size, sclp.hsa_size);
645 if (crash_base && crash_base < low) {
647 "crash_base too low");
650 low = crash_base ?: low;
[all...]
/linux-master/arch/powerpc/platforms/powermac/
H A Dnvram.c242 u32 low, high; local
245 low = 1;
252 low += buffer[cnt];
253 high += low;
255 low %= 65521UL;
258 return (high << 16) | low;
/linux-master/drivers/clk/
H A Dclk-axi-clkgen.c182 unsigned int low; member in struct:axi_clkgen_div_params
207 params->low = divider - params->high;
214 params->low = params->high;
222 params->low--;
325 (params->high << 6) | params->low, 0xefff);
370 (params.high << 6) | params.low, 0x3fff);
/linux-master/fs/isofs/
H A Drock.c393 int high, low; local
395 low = isonum_733(rr->u.PN.dev_low);
400 * stored in the low field. Some writers may
404 * stored in the low field, and use that.
406 if ((low & ~0xff) && high == 0) {
408 MKDEV(low >> 8, low & 0xff);
411 MKDEV(high, low);
/linux-master/arch/x86/include/asm/
H A Dparavirt.h196 unsigned low, unsigned high)
198 PVOP_VCALL3(cpu.write_msr, msr, low, high);
207 unsigned low, unsigned high)
209 return PVOP_CALL3(int, cpu.write_msr_safe, msr, low, high);
259 #define rdpmc(counter, low, high) \
262 low = (u32)_l; \
195 paravirt_write_msr(unsigned msr, unsigned low, unsigned high) argument
206 paravirt_write_msr_safe(unsigned msr, unsigned low, unsigned high) argument
/linux-master/tools/perf/jvmti/
H A Djvmti_agent.c94 unsigned int low, high; local
96 asm volatile("rdtsc" : "=a" (low), "=d" (high));
98 return low | ((uint64_t)high) << 32;
/linux-master/sound/synth/emux/
H A Dsoundfont.c438 zp->v.low == map.map_key &&
464 zp->v.low = map.map_key;
794 int s, low, bit; local
801 low = (amount >> 16) & 0xff;
803 v = (log_tbl[s + 1] * low + log_tbl[s] * (0x100 - low)) >> 8;
1035 zone->v.low = (freq_to_note(patch.low_note) + 99) / 100;
1043 zone->v.root, zone->v.tune, zone->v.low, zone->v.high);
1176 zone = search_first_zone(sflist, cur->bank, cur->instr, cur->v.low);
1192 index = get_index(cur->bank, cur->instr, cur->v.low);
[all...]
/linux-master/arch/x86/kernel/cpu/
H A Dvmware.c226 uint32_t initial_high, low, high; local
232 low = READ_ONCE(steal->clock_low);
233 /* Keep low reading in between */
238 clock = ((uint64_t)high << 32) | low;
/linux-master/include/linux/mfd/
H A Ddbx500-prcmu.h335 static inline int prcmu_config_hotmon(u8 low, u8 high) argument
337 return db8500_prcmu_config_hotmon(low, high);
517 static inline int prcmu_config_hotmon(u8 low, u8 high) argument
/linux-master/drivers/thermal/tegra/
H A Dtegra-bpmp-thermal.c72 static int tegra_bpmp_thermal_set_trips(struct thermal_zone_device *tz, int low, int high) argument
83 req.set_trip.low = low;
/linux-master/sound/soc/amd/acp/
H A Dacp-platform.c161 u32 low, high, val; local
167 /* Load the low address of page int ACP SRAM through SRBM */
168 low = lower_32_bits(addr);
170 writel(low, adata->acp_base + rsrc->scratch_reg_offset + val);
/linux-master/fs/adfs/
H A Dinode.c177 unsigned int high, low; local
187 low = ADFS_I(inode)->execaddr; /* bottom 32 bits of timestamp */
192 nsec = (((s64) high << 32) | (s64) low) * 10000000; /* cs to ns */
/linux-master/drivers/accel/qaic/
H A Dqaic_timesync.c105 u64 low, high; local
107 low = readl(addr);
109 return low | (high << 32);
/linux-master/fs/
H A Dfs_parser.c330 * @low: The lowest permissible value.
335 int low, int high, int special)
365 (tbl[i].value < low || tbl[i].value > high)) {
367 i, tbl[i].name, tbl[i].value, low, high);
334 validate_constant_table(const struct constant_table *tbl, size_t tbl_size, int low, int high, int special) argument
/linux-master/sound/soc/sof/amd/
H A Dacp-loader.c121 unsigned int low, high; local
151 low = lower_32_bits(addr);
153 snd_sof_dsp_write(sdev, ACP_DSP_BAR, ACP_SCRATCH_REG_0 + offset, low);
/linux-master/drivers/scsi/isci/
H A Dprobe_roms.h315 uint32_t low; member in struct:sci_oem_params::sci_phy_oem_params::__anon9507
/linux-master/arch/x86/xen/
H A Dpmu.c332 bool pmu_msr_write(unsigned int msr, uint32_t low, uint32_t high, int *err) argument
334 uint64_t val = ((uint64_t)high << 32) | low;
342 *err = native_write_msr_safe(msr, low, high);
344 native_write_msr(msr, low, high);
/linux-master/arch/arm/include/uapi/asm/
H A Dsetup.h90 __u32 low; member in struct:tag_serialnr
/linux-master/sound/soc/amd/renoir/
H A Dacp3x-pdm-dma.c179 u32 low, high, val; local
192 /* Load the low address of page int ACP SRAM through SRBM */
193 low = lower_32_bits(addr);
196 rn_writel(low, rtd->acp_base + ACP_SCRATCH_REG_0 + val);
267 byte_count.bcount.low =

Completed in 261 milliseconds

1234567891011>>