Home
last modified time | relevance | path

Searched refs:maximum (Results 1 – 25 of 1253) sorted by relevance

12345678910>>...51

/OK3568_Linux_fs/kernel/drivers/media/platform/s5p-mfc/
H A Ds5p_mfc_enc.c117 .maximum = (1 << 16) - 1,
125 .maximum = V4L2_MPEG_VIDEO_MULTI_SLICE_MODE_MAX_BYTES,
133 .maximum = (1 << 16) - 1,
141 .maximum = (1 << 30) - 1,
149 .maximum = (1 << 16) - 1,
158 .maximum = 1,
167 .maximum = (1 << 25) - 1,
175 .maximum = 1,
183 .maximum = (1 << 30) - 1,
192 .maximum = (1 << 16) - 1,
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/places/
H A Dqplaceratings.cpp43 : QSharedData(), average(0), maximum(0), count(0) in QPlaceRatingsPrivate()
48 : QSharedData(), average(0), maximum(other.maximum), count(other.count) in QPlaceRatingsPrivate()
58 return average == other.average && maximum == other.maximum && count == other.count; in operator ==()
63 return count == 0 && average == 0 && maximum == 0; in isEmpty()
154 qreal QPlaceRatings::maximum() const in maximum() function in QPlaceRatings
156 return d->maximum; in maximum()
164 d->maximum = max; in setMaximum()
/OK3568_Linux_fs/kernel/Documentation/hwmon/
H A Dsmm665.rst138 in1_max 12v input maximum voltage (mV)
139 in2_max 3.3V (VDD) input maximum voltage (mV)
140 in3_max Channel A maximum voltage (mV)
141 in4_max Channel B maximum voltage (mV)
142 in5_max Channel C maximum voltage (mV)
143 in6_max Channel D maximum voltage (mV)
144 in7_max Channel E maximum voltage (mV)
145 in8_max Channel F maximum voltage (mV)
146 in9_max AIN1 maximum voltage (mV)
147 in10_max AIN2 maximum voltage (mV)
[all …]
H A Dmax1668.rst35 temp1_max rw local temperature maximum threshold for alarm
36 temp1_max_alarm ro local temperature maximum threshold alarm
40 temp2_max rw remote temperature 1 maximum threshold for alarm
41 temp2_max_alarm ro remote temperature 1 maximum threshold alarm
45 temp3_max rw remote temperature 2 maximum threshold for alarm
46 temp3_max_alarm ro remote temperature 2 maximum threshold alarm
55 temp4_max rw remote temperature 3 maximum threshold for alarm
56 temp4_max_alarm ro remote temperature 3 maximum threshold alarm
60 temp5_max rw remote temperature 4 maximum threshold for alarm
61 temp5_max_alarm ro remote temperature 4 maximum threshold alarm
H A Disl68137.rst436 curr1_crit Critical maximum current
441 curr[2-3]_crit Critical maximum current
448 in1_crit Critical maximum input voltage
455 in[2-3]_crit Critical maximum output voltage
478 curr1_crit Critical maximum current
483 curr2_crit Critical maximum current
490 in1_crit Critical maximum input voltage
500 in3_crit Critical maximum output voltage
523 curr[1-2]_crit Critical maximum current
528 curr[3-4]_crit Critical maximum current
[all …]
H A Dmax8688.rst53 in1_crit Critical maximum voltage. From VOUT_OV_FAULT_LIMIT
61 in1_highest Historical maximum voltage.
67 curr1_crit Critical maximum current. From IOUT_OC_FAULT_LIMIT
71 curr1_highest Historical maximum current.
83 temp1_highest Historical maximum temperature.
H A Dxdpe12284.rst44 The driver provides for current: input, maximum and critical thresholds
45 and maximum and critical alarms. Critical thresholds and critical alarm are
90 The driver provides for temperature: input, maximum and critical thresholds
91 and maximum and critical alarms.
/OK3568_Linux_fs/kernel/drivers/input/touchscreen/
H A Dof_touchscreen.c47 absinfo->maximum = max; in touchscreen_set_params()
70 unsigned int minimum, maximum, fuzz; in touchscreen_parse_properties() local
86 &maximum); in touchscreen_parse_properties()
91 touchscreen_set_params(input, axis_x, minimum, maximum - 1, fuzz); in touchscreen_parse_properties()
99 &maximum); in touchscreen_parse_properties()
104 touchscreen_set_params(input, axis_y, minimum, maximum - 1, fuzz); in touchscreen_parse_properties()
110 &maximum); in touchscreen_parse_properties()
116 touchscreen_set_params(input, axis, 0, maximum, fuzz); in touchscreen_parse_properties()
128 absinfo->maximum -= absinfo->minimum; in touchscreen_parse_properties()
136 absinfo->maximum -= absinfo->minimum; in touchscreen_parse_properties()
/OK3568_Linux_fs/kernel/arch/arm64/boot/dts/exynos/
H A Dexynos5433-tmu.dtsi56 /* Set maximum frequency as 1800MHz */
62 /* Set maximum frequency as 1700MHz */
68 /* Set maximum frequency as 1600MHz */
74 /* Set maximum frequency as 1500MHz */
80 /* Set maximum frequency as 1400MHz */
86 /* Set maximum frequencyas 1200MHz */
92 /* Set maximum frequency as 1000MHz */
230 /* Set maximum frequency as 1200MHz */
236 /* Set maximum frequency as 1100MHz */
242 /* Set maximum frequency as 1000MHz */
[all …]
/OK3568_Linux_fs/kernel/drivers/media/usb/gspca/
H A Dautogain_functions.c59 else if (exposure < gspca_dev->exposure->maximum) in gspca_expo_autogain()
61 else if (gain < gspca_dev->gain->maximum) in gspca_expo_autogain()
111 gain_low = (s32)(gspca_dev->gain->maximum - gspca_dev->gain->minimum) / in gspca_coarse_grained_expo_autogain()
113 gain_high = (s32)(gspca_dev->gain->maximum - gspca_dev->gain->minimum) / in gspca_coarse_grained_expo_autogain()
124 exposure < gspca_dev->exposure->maximum) { in gspca_coarse_grained_expo_autogain()
135 if (gain > gspca_dev->gain->maximum) in gspca_coarse_grained_expo_autogain()
136 gain = gspca_dev->gain->maximum; in gspca_coarse_grained_expo_autogain()
/OK3568_Linux_fs/kernel/drivers/hid/
H A Dhid-tmff.c48 static inline int tmff_scale_u16(unsigned int in, int minimum, int maximum) in tmff_scale_u16() argument
52 ret = (in * (maximum - minimum) / 0xffff) + minimum; in tmff_scale_u16()
55 if (ret > maximum) in tmff_scale_u16()
56 return maximum; in tmff_scale_u16()
61 static inline int tmff_scale_s8(int in, int minimum, int maximum) in tmff_scale_s8() argument
65 ret = (((in + 0x80) * (maximum - minimum)) / 0xff) + minimum; in tmff_scale_s8()
68 if (ret > maximum) in tmff_scale_s8()
69 return maximum; in tmff_scale_s8()
/OK3568_Linux_fs/kernel/Documentation/admin-guide/sysctl/
H A Duser.rst41 The maximum number of cgroup namespaces that any user in the current
47 The maximum number of ipc namespaces that any user in the current
53 The maximum number of mount namespaces that any user in the current
59 The maximum number of network namespaces that any user in the
65 The maximum number of pid namespaces that any user in the current
71 The maximum number of time namespaces that any user in the current
77 The maximum number of user namespaces that any user in the current
83 The maximum number of user namespaces that any user in the current
/OK3568_Linux_fs/kernel/drivers/crypto/nx/
H A Dnx-842.c137 if (c->maximum > BOUNCE_BUFFER_SIZE) in check_constraints()
138 c->maximum = BOUNCE_BUFFER_SIZE; in check_constraints()
181 if (slen > c->maximum) in compress()
182 adj_slen = slen = c->maximum; in compress()
212 if (dlen > c->maximum) in compress()
213 dlen = c->maximum; in compress()
273 DIV_ROUND_UP(p.iremain, c.maximum)); in nx842_crypto_compress()
281 p.iremain > c.maximum || in nx842_crypto_compress()
285 p.oremain > c.maximum || in nx842_crypto_compress()
365 if (slen > c->maximum) in decompress()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_core/
H A Dtst_ratings.qml42 compare(emptyRatings.maximum, 0.0);
50 maximum: 5.0
56 compare(qmlRatings.maximum, 5.0);
67 … { tag: "maximum", property: "maximum", signal: "maximumChanged", value: 5.0, reset: 0.0 },
/OK3568_Linux_fs/external/rk_pcba_test/pcba_minui/minui/
H A Devents.c224 …xX: %d minY: %d maxY: %d\n", e->p.xi.minimum, e->p.xi.maximum, e->p.yi.minimum, e->p.yi.maximum); in vk_init()
231 …inY: %d maxY: %d\n", e->mt_p.xi.minimum, e->mt_p.xi.maximum, e->mt_p.yi.minimum, e->mt_p.yi.maxim… in vk_init()
317 if (info->minimum == info->maximum) in vk_inside_display()
320 screen_pos = (value - info->minimum) * (screen_size - 1) / (info->maximum - info->minimum); in vk_inside_display()
326 if (p->xi.minimum == p->xi.maximum || p->yi.minimum == p->yi.maximum) in vk_tp_to_screen()
335 …LOGI("EV: p->x=%d x-range=%d,%d fb-width=%d\n", p->x, p->xi.minimum, p->xi.maximum, gr_fb_width(… in vk_tp_to_screen()
347 *x = (p->x - p->xi.minimum) * (fb_width - 1) / (p->xi.maximum - p->xi.minimum); in vk_tp_to_screen()
348 *y = (p->y - p->yi.minimum) * (fb_height - 1) / (p->yi.maximum - p->yi.minimum); in vk_tp_to_screen()
/OK3568_Linux_fs/kernel/drivers/acpi/acpica/
H A Damlresrc.h144 u16 maximum; member
186 u16 maximum; member
197 u32 maximum; member
222 u64 maximum; member
234 u64 maximum; member
243 u32 maximum; member
252 u16 maximum; member
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/power/supply/
H A Dsc89890-charger.txt10 - sc,battery-regulation-voltage: integer, maximum charging voltage (in uV);
11 - sc,charge-current: integer, maximum charging current (in uA);
14 - sc,precharge-current: integer, maximum charge current during precharge
20 - sc,boost-max-current: integer, maximum allowed current draw in boost mode
H A Dbq25890.txt14 - ti,battery-regulation-voltage: integer, maximum charging voltage (in uV);
15 - ti,charge-current: integer, maximum charging current (in uA);
18 - ti,precharge-current: integer, maximum charge current during precharge
24 - ti,boost-max-current: integer, maximum allowed current draw in boost mode
38 - ti,ibatcomp-clamp-microvolt: integer, maximum charging voltage adjustment due
/OK3568_Linux_fs/kernel/Documentation/ABI/testing/
H A Dsysfs-driver-habanalabs21 Description: Allows the user to set the maximum clock frequency, in MHz.
22 The device clock might be set to lower value than the maximum.
91 Description: Allows the user to set the maximum clock frequency for MME, TPC
99 Description: Allows the user to set the maximum clock frequency, in Hz, of
103 maximum. The user should read the ic_clk_curr to see the actual
124 Description: Allows the user to set the maximum power consumption of the
131 Description: Allows the user to set the maximum clock frequency, in Hz, of
135 maximum. The user should read the mme_clk_curr to see the actual
158 mode, the driver will set the maximum clock frequency to a high
163 mode, the user sets the maximum clock frequency by writing to
[all …]
/OK3568_Linux_fs/kernel/Documentation/userspace-api/media/v4l/
H A Dpixfmt-meta-vsp1-hgo.rst20 computes the minimum, maximum and sum of all pixels as well as per-channel
23 The HGO can compute histograms independently per channel, on the maximum of the
31 - In *64 bins maximum mode*, the HGO operates on the maximum of the (R, G, B)
36 - In *256 bins maximum mode*, the HGO operates on the maximum of the (R, G, B)
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/power/
H A Drk817-charger.txt7 - max_input_current: maximum current from adapter
8 - max_chrg_current: maximum current for battery charge
9 - max_chrg_voltage: maximum charge voltage for battery
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativeplaces/
H A Dqdeclarativeratings_p.h65 Q_PROPERTY(qreal maximum READ maximum WRITE setMaximum NOTIFY maximumChanged)
79 qreal maximum() const;
H A Dqdeclarativeratings.cpp122 if (m_ratings.maximum() == max) in setMaximum()
129 qreal QDeclarativeRatings::maximum() const in maximum() function in QDeclarativeRatings
131 return m_ratings.maximum(); in maximum()
/OK3568_Linux_fs/kernel/drivers/media/platform/vsp1/
H A Dvsp1_uds.c77 unsigned int *minimum, unsigned int *maximum) in uds_output_limits() argument
80 *maximum = min(uds_output_size(input, UDS_MIN_FACTOR), UDS_MAX_SIZE); in uds_output_limits()
172 unsigned int maximum; in uds_try_format() local
191 uds_output_limits(format->width, &minimum, &maximum); in uds_try_format()
192 fmt->width = clamp(fmt->width, minimum, maximum); in uds_try_format()
193 uds_output_limits(format->height, &minimum, &maximum); in uds_try_format()
194 fmt->height = clamp(fmt->height, minimum, maximum); in uds_try_format()
/OK3568_Linux_fs/kernel/drivers/staging/android/ion/heaps/
H A Dion_system_heap.c118 unsigned int maximum; in ion_system_heap_allocate() local
163 maximum = block_index[0]; in ion_system_heap_allocate()
165 maximum = max(maximum, block_index[i]); in ion_system_heap_allocate()
168 __func__, __LINE__, maximum, block_1M, block_64K); in ion_system_heap_allocate()
180 for (i = 0; i < maximum; i++) { in ion_system_heap_allocate()

12345678910>>...51