Searched refs:max (Results 151 - 175 of 3298) sorted by relevance

1234567891011>>

/linux-master/drivers/clk/sunxi-ng/
H A Dccu_mult.h14 u8 max; member in struct:ccu_mult_internal
20 .max = _max, \
/linux-master/arch/powerpc/boot/
H A Dtypes.h34 #define max(x,y) ({ \ macro
41 #define max_t(type, a, b) max(((type) a), ((type) b))
/linux-master/drivers/hid/
H A Dhid-cherry.c36 #define ch_map_key_clear(c) hid_map_usage_clear(hi, usage, bit, max, \
40 unsigned long **bit, int *max)
38 ch_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-belkin.c24 #define belkin_map_key_clear(c) hid_map_usage_clear(hi, usage, bit, max, \
28 unsigned long **bit, int *max)
26 belkin_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-monterey.c31 #define mr_map_key_clear(c) hid_map_usage_clear(hi, usage, bit, max, \
35 unsigned long **bit, int *max)
33 mr_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-sunplus.c33 #define sp_map_key_clear(c) hid_map_usage_clear(hi, usage, bit, max, \
37 unsigned long **bit, int *max)
35 sp_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-tivo.c19 #define tivo_map_key_clear(c) hid_map_usage_clear(hi, usage, bit, max, \
24 unsigned long **bit, int *max)
22 tivo_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/gpu/drm/exynos/
H A Dregs-rotator.h67 #define ROT_MAX(max, mask) ((max) & (mask))
/linux-master/tools/perf/scripts/python/
H A Dfutex-contention.py55 min, max, avg, count = lock_waits[tid, lock]
56 print("%s[%d] lock %x contended %d times, %d avg ns [max: %d ns, min %d ns]" %
57 (process_names[tid], tid, lock, count, avg, max, min))
/linux-master/drivers/infiniband/hw/mthca/
H A Dmthca_allocator.c47 obj = find_next_zero_bit(alloc->table, alloc->max, alloc->last);
48 if (obj >= alloc->max) {
49 alloc->top = (alloc->top + alloc->max) & alloc->mask;
50 obj = find_first_zero_bit(alloc->table, alloc->max);
53 if (obj < alloc->max) {
68 obj &= alloc->max - 1;
74 alloc->top = (alloc->top + alloc->max) & alloc->mask;
88 alloc->max = num;
/linux-master/tools/power/cpupower/lib/
H A Dcpufreq.h13 unsigned long max; member in struct:cpufreq_policy
79 unsigned long *max);
186 /* modify a policy by only changing min/max freq or governor
/linux-master/tools/testing/selftests/powerpc/copyloops/
H A Dmemmove_validate.c13 size_t max(size_t a, size_t b) function
40 for (len = 1; len < MAX_OFFSET - max(src_off, dst_off); len++) {
/linux-master/drivers/macintosh/
H A Dwindfarm_pid.h34 s32 min,max; /* min and max target values */ member in struct:wf_pid_param
66 s32 pmaxadj; /* PID max power adjust */
68 s32 tmax; /* PID input max */
69 s32 min,max; /* min and max target values */ member in struct:wf_cpu_pid_param
/linux-master/drivers/char/hw_random/
H A Dpowernv-rng.c16 static int powernv_rng_read(struct hwrng *rng, void *data, size_t max, bool wait) argument
22 len = max / sizeof(unsigned long);
/linux-master/net/ethtool/
H A Dcommon.h45 int ethtool_get_max_rxfh_channel(struct net_device *dev, u32 *max);
46 int ethtool_get_max_rxnfc_channel(struct net_device *dev, u64 *max);
/linux-master/net/netfilter/
H A Dxt_length.c26 return (pktlen >= info->min && pktlen <= info->max) ^ info->invert;
35 return (pktlen >= info->min && pktlen <= info->max) ^ info->invert;
/linux-master/drivers/net/ethernet/mellanox/mlxsw/
H A Dspectrum_port_range.c41 mlxsw_reg_pprr_port_range_max_set(pprr_pl, prr->range.max);
107 prr->range.max == range->max &&
164 u64 max; local
168 max = MLXSW_CORE_RES_GET(core, ACL_MAX_L4_PORT_RANGE);
173 WARN_ON(max > BITS_PER_BYTE * sizeof(u16));
180 pr_core->prr_ids.max = max - 1;
/linux-master/include/uapi/linux/
H A Dioprio.h105 #define IOPRIO_BAD_VALUE(val, max) ((val) < 0 || (val) >= (max))
/linux-master/mm/damon/
H A Dsysfs-test.h26 static int __damon_sysfs_test_get_any_pid(int min, int max) argument
31 for (i = min; i <= max; i++) {
/linux-master/tools/testing/selftests/mm/
H A Dhugetlb_fault_after_madv.c46 int max = 10000; local
56 while (max--) {
/linux-master/drivers/media/rc/
H A Drc-core-priv.h12 /* Define the max number of pulse/space transitions to buffer */
39 struct ir_raw_event *events, unsigned int max);
229 int ir_raw_gen_manchester(struct ir_raw_event **ev, unsigned int max,
237 * @max: Pointer to number of raw events available in buffer.
244 * events. In this case @max events will have been written.
247 unsigned int *max,
251 if (!*max)
254 if (!--*max)
257 --*max;
281 int ir_raw_gen_pd(struct ir_raw_event **ev, unsigned int max,
246 ir_raw_gen_pulse_space(struct ir_raw_event **ev, unsigned int *max, unsigned int pulse_width, unsigned int space_width) argument
[all...]
/linux-master/tools/testing/selftests/damon/
H A D_chk_dependency.sh7 DBGFS=$(grep debugfs /proc/mounts --max-count 1 | awk '{print $2}')
/linux-master/drivers/cpufreq/
H A Dfreq_table.c55 policy->max = max_freq;
61 policy->max = policy->cpuinfo.max_freq = max_freq;
77 policy->min, policy->max, policy->cpu);
84 if ((freq >= policy->min) && (freq <= policy->max)) {
89 if ((prev_smaller < freq) && (freq <= policy->max))
94 policy->max = prev_smaller;
99 policy->min, policy->max, policy->cpu);
151 if ((freq < policy->min) || (freq > policy->max))
/linux-master/block/
H A Dblk-stat.c23 stat->max = stat->nr_samples = stat->mean = 0;
34 dst->max = max(dst->max, src->max);
45 stat->max = max(stat->max, value);
/linux-master/drivers/net/ipa/data/
H A Dipa_data-v4.11.c176 .min = 6, .max = 6,
181 .min = 8, .max = 8,
186 .min = 18, .max = 18,
191 .min = 2, .max = 2,
196 .min = 15, .max = 15,
205 .min = 3, .max = 3,
208 .min = 25, .max = 25,
213 .min = 2, .max = 2,

Completed in 360 milliseconds

1234567891011>>