| /OK3568_Linux_fs/kernel/drivers/media/platform/s5p-mfc/ |
| H A D | s5p_mfc_enc.c | 117 .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 D | qplaceratings.cpp | 43 : 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 D | smm665.rst | 138 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 D | max1668.rst | 35 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 D | isl68137.rst | 436 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 D | max8688.rst | 53 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 D | xdpe12284.rst | 44 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 D | of_touchscreen.c | 47 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 D | exynos5433-tmu.dtsi | 56 /* 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 D | autogain_functions.c | 59 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 D | hid-tmff.c | 48 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 D | user.rst | 41 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 D | nx-842.c | 137 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 D | tst_ratings.qml | 42 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 D | events.c | 224 …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 D | amlresrc.h | 144 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 D | sc89890-charger.txt | 10 - 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 D | bq25890.txt | 14 - 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 D | sysfs-driver-habanalabs | 21 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 D | pixfmt-meta-vsp1-hgo.rst | 20 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 D | rk817-charger.txt | 7 - 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 D | qdeclarativeratings_p.h | 65 Q_PROPERTY(qreal maximum READ maximum WRITE setMaximum NOTIFY maximumChanged) 79 qreal maximum() const;
|
| H A D | qdeclarativeratings.cpp | 122 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 D | vsp1_uds.c | 77 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 D | ion_system_heap.c | 118 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()
|