Searched refs:max (Results 26 - 50 of 3297) sorted by relevance

1234567891011>>

/linux-master/drivers/clk/at91/
H A Dsama5d3.c13 .output = { .min = 0, .max = 166000000 },
22 { .min = 400000000, .max = 1000000000 },
26 .input = { .min = 8000000, .max = 50000000 },
73 { .n = "usart0_clk", .id = 12, .r = { .min = 0, .max = 83000000 }, },
74 { .n = "usart1_clk", .id = 13, .r = { .min = 0, .max = 83000000 }, },
75 { .n = "usart2_clk", .id = 14, .r = { .min = 0, .max = 83000000 }, },
76 { .n = "usart3_clk", .id = 15, .r = { .min = 0, .max = 83000000 }, },
77 { .n = "uart0_clk", .id = 16, .r = { .min = 0, .max = 83000000 }, },
78 { .n = "uart1_clk", .id = 17, .r = { .min = 0, .max = 83000000 }, },
79 { .n = "twi0_clk", .id = 18, .r = { .min = 0, .max
[all...]
H A Dat91sam9260.c38 .output = { .min = 0, .max = 105000000 },
47 { .min = 80000000, .max = 160000000 },
48 { .min = 150000000, .max = 240000000 },
52 .input = { .min = 1000000, .max = 32000000 },
64 { .min = 70000000, .max = 130000000 },
68 .input = { .min = 1000000, .max = 5000000 },
125 .output = { .min = 0, .max = 133000000 },
134 { .min = 745000000, .max = 800000000 },
135 { .min = 695000000, .max = 750000000 },
136 { .min = 645000000, .max
[all...]
/linux-master/init/
H A Dcalibrate.c44 int max = -1; /* index of measured_times with max/min values or not set */ local
108 if (max < 0 || timer_rate_max > measured_times[max])
109 max = i;
130 if ((measured_times[max] - measured_times[min]) < maxdiff)
136 if ((measured_times[max] - estimate) <
142 min = max;
145 "max bogoMips estimate %d = %lu\n",
146 max, measured_time
[all...]
/linux-master/samples/bpf/
H A Dlathist_user.c18 long max; member in struct:cpu_hist
23 static void stars(char *str, long val, long max, int width) argument
27 for (i = 0; i < (width * val / max) - 1 && i < width - 1; i++)
29 if (val > max)
47 if (hist->max == 0)
53 stars(starstr, hist->data[i - 1], hist->max, MAX_STARS);
67 cpu_hist[i].max = 0;
75 if (value > cpu_hist[c].max)
76 cpu_hist[c].max = value;
/linux-master/drivers/net/ipa/data/
H A Dipa_data-v4.5.c50 .max_reads = 0, /* no limit (hardware max) */
185 .min = 1, .max = 11,
188 .min = 1, .max = 63,
193 .min = 14, .max = 14,
196 .min = 3, .max = 3,
201 .min = 18, .max = 18,
204 .min = 8, .max = 8,
209 .min = 0, .max = 63,
212 .min = 0, .max = 63,
215 .min = 0, .max
[all...]
/linux-master/scripts/
H A Dsyscallhdr.sh77 max=0
80 max=$nr
92 echo "#define __NR_${prefix}syscalls $(($max + 1))"
/linux-master/drivers/infiniband/hw/cxgb4/
H A Did_table.c51 obj = find_next_zero_bit(alloc->table, alloc->max, alloc->last);
52 if (obj >= alloc->max)
53 obj = find_first_zero_bit(alloc->table, alloc->max);
55 if (obj < alloc->max) {
60 if (alloc->last >= alloc->max)
91 alloc->max = num;
/linux-master/drivers/gpu/host1x/
H A Dsyncpt.h69 * Check sync point sanity. If max is larger than min, there have too many
76 u32 max; local
79 max = host1x_syncpt_read_max(sp);
80 return (s32)(max - real) >= 0;
90 * Returns true if syncpoint min == max, which means that there are no
95 int min, max; local
98 max = atomic_read(&sp->max_val);
99 return (min == max);
117 /* Indicate future operations by incrementing the sync point max. */
/linux-master/drivers/hid/
H A Dhid-accutouch.c23 unsigned long **bit, int *max)
26 hid_map_usage(hi, usage, bit, max, EV_KEY, BTN_TOUCH);
19 accutouch_input_mapping(struct hid_device *hdev, struct hid_input *hi, struct hid_field *field, struct hid_usage *usage, unsigned long **bit, int *max) argument
H A Dhid-penmount.c20 struct hid_usage *usage, unsigned long **bit, int *max)
24 hid_map_usage(hi, usage, bit, max, EV_KEY, BTN_TOUCH);
18 penmount_input_mapping(struct hid_device *hdev, struct hid_input *hi, struct hid_field *field, struct hid_usage *usage, unsigned long **bit, int *max) argument
/linux-master/drivers/cpufreq/
H A Dcpufreq_performance.c16 pr_debug("setting to %u kHz\n", policy->max);
17 __cpufreq_driver_target(policy, policy->max, CPUFREQ_RELATION_H);
/linux-master/drivers/infiniband/hw/vmw_pvrdma/
H A Dpvrdma_doorbell.c63 tbl->max = num;
92 obj = find_next_zero_bit(tbl->table, tbl->max, tbl->last);
93 if (obj >= tbl->max) {
94 tbl->top = (tbl->top + tbl->max) & tbl->mask;
95 obj = find_first_zero_bit(tbl->table, tbl->max);
98 if (obj >= tbl->max) {
121 obj = uar->index & (tbl->max - 1);
125 tbl->top = (tbl->top + tbl->max) & tbl->mask;
/linux-master/drivers/net/wireless/ath/ath9k/
H A Drng.c69 static int ath9k_rng_read(struct hwrng *rng, void *buf, size_t max, bool wait) argument
76 if (max & ~3UL)
77 bytes_read = ath9k_rng_data_read(sc, buf, max >> 2);
78 if ((max & 3UL) && ath9k_rng_data_read(sc, &word, 1)) {
79 memcpy(buf + bytes_read, &word, max & 3UL);
80 bytes_read += max & 3UL;
83 if (!wait || !max || likely(bytes_read) || fail_stats > 110)
90 if (wait && !bytes_read && max)
/linux-master/include/trace/events/
H A Dregulator.h111 TP_PROTO(const char *name, int min, int max),
113 TP_ARGS(name, min, max),
118 __field( int, max )
124 __entry->max = max;
128 (int)__entry->min, (int)__entry->max)
133 TP_PROTO(const char *name, int min, int max),
135 TP_ARGS(name, min, max)
/linux-master/lib/zlib_inflate/
H A Dinftrees.c28 unsigned min, max; /* minimum and maximum code lengths */ local
100 for (max = MAXBITS; max >= 1; max--)
101 if (count[max] != 0) break;
102 if (root > max) root = max;
103 if (max == 0) { /* no symbols to code at all */
123 if (left > 0 && (type == CODES || max != 1))
162 all codes of length max,
[all...]
/linux-master/sound/soc/
H A Dsoc-ops.c180 int max; local
182 max = uinfo->value.integer.max = mc->max - mc->min;
183 if (mc->platform_max && mc->platform_max < max)
184 max = mc->platform_max;
186 if (max == 1) {
199 uinfo->value.integer.max = max;
213 * of zero but without a sign bit. min is the minimum register value, max i
223 int max; local
263 int max = mc->max; local
323 int max = mc->max; local
405 int max = mc->max; local
443 int max = mc->max; local
540 int max = mc->max; local
613 int max = mc->max; local
651 snd_soc_limit_volume(struct snd_soc_card *card, const char *name, int max) argument
890 long max = mc->max; local
934 long max = mc->max; local
[all...]
/linux-master/drivers/gpu/drm/i915/display/
H A Dintel_dpll.c35 int min, max; member in struct:intel_limit::__anon633
44 .dot = { .min = 25000, .max = 350000 },
45 .vco = { .min = 908000, .max = 1512000 },
46 .n = { .min = 2, .max = 16 },
47 .m = { .min = 96, .max = 140 },
48 .m1 = { .min = 18, .max = 26 },
49 .m2 = { .min = 6, .max = 16 },
50 .p = { .min = 4, .max = 128 },
51 .p1 = { .min = 2, .max = 33 },
57 .dot = { .min = 25000, .max
[all...]
/linux-master/sound/soc/sof/
H A Dipc3-pcm.c259 rate->max = private->dai_config[dai->current_config].ssp.fsync_rate;
261 channels->max = private->dai_config[dai->current_config].ssp.tdm_slots;
263 dev_dbg(component->dev, "rate_min: %d rate_max: %d\n", rate->min, rate->max);
265 channels->min, channels->max);
294 channels->max = private->dai_config->alh.channels;
298 rate->max = private->dai_config->esai.fsync_rate;
300 channels->max = private->dai_config->esai.tdm_slots;
302 dev_dbg(component->dev, "rate_min: %d rate_max: %d\n", rate->min, rate->max);
304 channels->min, channels->max);
308 rate->max
[all...]
/linux-master/lib/zstd/compress/
H A Dzstd_compress_sequences.h24 FSE_repeat* repeatMode, unsigned const* count, unsigned const max,
34 unsigned* count, U32 max,
50 unsigned const max);
53 unsigned const* count, unsigned const max);
/linux-master/include/asm-generic/
H A Dpci_iomap.h13 extern void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long max);
14 extern void __iomem *pci_iomap_wc(struct pci_dev *dev, int bar, unsigned long max);
35 static inline void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long max) argument
40 static inline void __iomem *pci_iomap_wc(struct pci_dev *dev, int bar, unsigned long max) argument
/linux-master/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
H A DUtil.py40 min, max, avg, count = dict[key]
43 if value > max:
44 max = value
46 dict[key] = (min, max, avg, count + 1)
/linux-master/drivers/net/ethernet/intel/ixgbe/
H A Dixgbe_dcb_82599.h77 u16 *max, u8 *bwg_id, u8 *prio_type,
81 u16 *max, u8 *bwg_id, u8 *prio_type);
84 u16 *max, u8 *bwg_id, u8 *prio_type,
88 u16 *max, u8 *bwg_id, u8 *prio_type,
H A Dixgbe_dcb_82598.h53 u16 *max, u8 *prio_type);
56 u16 *max, u8 *bwg_id, u8 *prio_type);
59 u16 *max, u8 *bwg_id, u8 *prio_type);
62 u16 *max, u8 *bwg_id, u8 *prio_type);
/linux-master/arch/x86/include/asm/
H A Dcrash_reserve.h36 return max(swiotlb_size_or_default() + (8UL << 20), 256UL << 20);
/linux-master/arch/loongarch/kernel/
H A Dparavirt.c38 int i, cpu, min = 0, max = 0, old; local
54 min = max = cpu;
55 } else if (cpu < min && cpu > (max - KVM_IPI_CLUSTER_SIZE)) {
61 max = cpu > max ? cpu : max;
69 min = max = cpu;

Completed in 362 milliseconds

1234567891011>>