Searched refs:min (Results 1 - 25 of 51) sorted by relevance

123

/include/linux/netfilter/
H A Dxt_length.h7 __u16 min, max; member in struct:xt_length_info
H A Dnf_nat.h16 union nf_conntrack_man_proto min; member in struct:nf_nat_ipv4_range
H A Dxt_u32.h19 __u32 min; member in struct:xt_u32_value_element
/include/sound/
H A Dtlv.h38 #define SNDRV_CTL_TLVT_DB_MINMAX 4 /* dB scale with min/max */
39 #define SNDRV_CTL_TLVT_DB_MINMAX_MUTE 5 /* dB scale with min/max with mute */
43 #define TLV_DB_SCALE_ITEM(min, step, mute) \
45 (min), ((step) & TLV_DB_SCALE_MASK) | ((mute) ? TLV_DB_SCALE_MUTE : 0)
46 #define DECLARE_TLV_DB_SCALE(name, min, step, mute) \
47 unsigned int name[] = { TLV_DB_SCALE_ITEM(min, step, mute) }
49 /* dB scale specified with min/max values instead of step */
69 /* Each item is: <min> <max> <TLV> */
H A Dpcm_params.h246 i->min = 0;
261 return (i->min > i->max ||
262 (i->min == i->max && (i->openmin || i->openmax)));
272 return (i->min == i->max ||
273 (i->min + 1 == i->max && i->openmax));
278 return i->min;
283 return i->min;
297 return !((i->min > val || (i->min == val && i->openmin) ||
310 if (i->openmin && i->openmax && i->min
[all...]
H A Dpcm.h49 unsigned int rate_min; /* min rate */
51 unsigned int channels_min; /* min channels */
54 size_t period_bytes_min; /* min period size */
56 unsigned int periods_min; /* min # of periods */
769 (hw_param_interval_c((p), SNDRV_PCM_HW_PARAM_CHANNELS)->min)
771 (hw_param_interval_c((p), SNDRV_PCM_HW_PARAM_RATE)->min)
773 (hw_param_interval_c((p), SNDRV_PCM_HW_PARAM_PERIOD_SIZE)->min)
775 (hw_param_interval_c((p), SNDRV_PCM_HW_PARAM_PERIODS)->min)
777 (hw_param_interval_c((p), SNDRV_PCM_HW_PARAM_BUFFER_SIZE)->min)
779 (hw_param_interval_c((p), SNDRV_PCM_HW_PARAM_BUFFER_BYTES)->min)
[all...]
/include/trace/events/
H A Dregulator.h78 TP_PROTO(const char *name, int min, int max),
80 TP_ARGS(name, min, max),
84 __field( int, min )
90 __entry->min = min;
95 (int)__entry->min, (int)__entry->max)
100 TP_PROTO(const char *name, int min, int max),
102 TP_ARGS(name, min, max)
/include/linux/input/
H A Dgpio_tilt.h7 * @min: minimum value for abs_param
14 int min; member in struct:gpio_tilt_axis
/include/linux/
H A Dcpufreq.h82 unsigned int min; /* in kHz */ member in struct:cpufreq_real_policy
96 unsigned int min; /* in kHz */ member in struct:cpufreq_policy
259 static inline void cpufreq_verify_within_limits(struct cpufreq_policy *policy, unsigned int min, unsigned int max) argument
261 if (policy->min < min)
262 policy->min = min;
263 if (policy->max < min)
264 policy->max = min;
265 if (policy->min > ma
[all...]
H A Datm_nicstar.h33 unsigned min; member in struct:buf_nr
H A Ddelay.h48 void usleep_range(unsigned long min, unsigned long max);
H A Duwb.h745 * For 8 bit quantities, we keep the min, the max, an accumulator
766 s8 min, max; member in struct:stats
781 s8 min, max; local
785 min = 127;
789 min = stats->min;
794 if (sample < min) /* compute new values */
795 min = sample;
800 stats->min = min; /* commi
812 int min, max, avg; local
[all...]
H A Dregset.h230 : min(*count, end_pos - *pos));
255 : min(*count, end_pos - *pos));
285 : min(*count, end_pos - *pos));
311 : min(*count, end_pos - *pos));
H A Dkernel.h553 * min()/max()/clamp() macros that also do
557 #define min(x, y) ({ \ macro
595 __x == 0 ? __y : ((__y == 0) ? __x : min(__x, __y)); })
600 * @min: minimum allowable value
603 * This macro does strict typechecking of min/max to make sure they are of the
606 #define clamp(val, min, max) ({ \
608 typeof(min) __min = (min); \
619 * Or not use min/max/clamp at all, of course.
635 * @min
[all...]
H A Dnamei.h109 ((char *) name)[min(len, maxlen)] = '\0';
H A Dregmap.h164 int regcache_sync_region(struct regmap *map, unsigned int min,
300 static inline int regcache_sync_region(struct regmap *map, unsigned int min, argument
H A Dtelephony.h102 char min[3]; member in struct:__anon1315
/include/net/netfilter/
H A Dnf_nat_protocol.h20 /* Is the manipable part of the tuple between min and max incl? */
23 const union nf_conntrack_man_proto *min,
55 const union nf_conntrack_man_proto *min,
/include/asm-generic/
H A Drtc.h119 unsigned char mon, day, hrs, min, sec; local
130 min = time->tm_min;
167 min = bin2bcd(min);
186 CMOS_WRITE(min, RTC_MINUTES);
/include/media/
H A Dtuner-types.h120 u16 min; member in struct:tunertype
H A Dv4l2-ctrls.h44 * the usual min/max/step checks are not sufficient.
192 * @min: The control's minimum value.
215 s32 min; member in struct:v4l2_ctrl_config
232 * The contents of @min, @max, @step and @def may be modified depending on
240 s32 *min, s32 *max, s32 *step, s32 *def, u32 *flags);
307 * @min: The control's minimum value.
322 u32 id, s32 min, s32 max, u32 step, s32 def);
337 * Same as v4l2_ctrl_new_std(), but @min is set to 0 and the @mask value
H A Drc-core.h122 int (*s_rx_carrier_range)(struct rc_dev *dev, u32 min, u32 max);
/include/net/phonet/
H A Dphonet.h53 void phonet_get_local_port_range(int *min, int *max);
/include/video/
H A Dmbxfb.h9 unsigned int min; member in struct:mbxfb_val
/include/net/
H A Dpkt_sched.h59 return min(tv1 - tv2, bound);

Completed in 313 milliseconds

123