Home
last modified time | relevance | path

Searched refs:resolution (Results 1 – 200 of 223) sorted by relevance

12

/linux-4.1.27/drivers/hwmon/
Dlm75.c82 u8 resolution; /* In bits, between 9 and 12 */ member
100 static inline long lm75_reg_to_mc(s16 temp, u8 resolution) in lm75_reg_to_mc() argument
102 return ((temp >> (16 - resolution)) * 1000) >> (resolution - 8); in lm75_reg_to_mc()
114 *temp = lm75_reg_to_mc(data->temp[0], data->resolution); in lm75_read_temp()
129 data->resolution)); in show_temp()
141 u8 resolution; in set_temp() local
152 resolution = data->resolution_limits; in set_temp()
154 resolution = data->resolution; in set_temp()
158 data->temp[nr] = DIV_ROUND_CLOSEST(temp << (resolution - 8), in set_temp()
159 1000) << (16 - resolution); in set_temp()
[all …]
Dsch56xx-common.c274 unsigned int resolution; in watchdog_set_timeout() local
280 resolution = 1; in watchdog_set_timeout()
282 resolution = 60; in watchdog_set_timeout()
284 if (timeout < resolution || timeout > (resolution * 255)) in watchdog_set_timeout()
287 if (resolution == 1) in watchdog_set_timeout()
308 data->watchdog_preset = DIV_ROUND_UP(timeout, resolution); in watchdog_set_timeout()
309 wddev->timeout = data->watchdog_preset * resolution; in watchdog_set_timeout()
Dfschmd.c715 int ret, resolution; in watchdog_set_timeout() local
720 resolution = 2; in watchdog_set_timeout()
722 resolution = 60; in watchdog_set_timeout()
724 if (timeout < resolution || timeout > (resolution * 255)) in watchdog_set_timeout()
733 if (resolution == 2) in watchdog_set_timeout()
738 data->watchdog_preset = DIV_ROUND_UP(timeout, resolution); in watchdog_set_timeout()
748 ret = data->watchdog_preset * resolution; in watchdog_set_timeout()
/linux-4.1.27/sound/core/seq/
Dseq_timer.c39 tmr->tick.resolution = (tmr->tempo * 1000) / tmr->ppq; in snd_seq_timer_set_tick_resolution()
45 tmr->tick.resolution = (tmr->tempo / tmr->ppq) * 1000; in snd_seq_timer_set_tick_resolution()
46 tmr->tick.resolution += s; in snd_seq_timer_set_tick_resolution()
48 if (tmr->tick.resolution <= 0) in snd_seq_timer_set_tick_resolution()
49 tmr->tick.resolution = 1; in snd_seq_timer_set_tick_resolution()
136 unsigned long resolution, in snd_seq_timer_interrupt() argument
154 resolution *= ticks; in snd_seq_timer_interrupt()
157 resolution = (resolution >> 16) * tmr->skew + in snd_seq_timer_interrupt()
158 (((resolution & 0xffff) * tmr->skew) >> 16); in snd_seq_timer_interrupt()
162 snd_seq_inc_time_nsec(&tmr->cur_time, resolution); in snd_seq_timer_interrupt()
[all …]
Dseq_timer.h29 unsigned long resolution; /* time per tick in nsec */ member
69 unsigned long resolution) in snd_seq_timer_update_tick() argument
71 if (tick->resolution > 0) { in snd_seq_timer_update_tick()
72 tick->fraction += resolution; in snd_seq_timer_update_tick()
73 tick->cur_tick += (unsigned int)(tick->fraction / tick->resolution); in snd_seq_timer_update_tick()
74 tick->fraction %= tick->resolution; in snd_seq_timer_update_tick()
Dseq_clientmgr.c1776 timer.u.alsa.resolution = tmr->preferred_resolution; in snd_seq_ioctl_get_queue_timer()
1816 tmr->preferred_resolution = timer.u.alsa.resolution; in snd_seq_ioctl_set_queue_timer()
/linux-4.1.27/sound/core/
Dhrtimer.c36 static unsigned int resolution; variable
53 oruns = hrtimer_forward_now(hrt, ns_to_ktime(t->sticks * resolution)); in snd_hrtimer_callback()
94 hrtimer_start(&stime->hrt, ns_to_ktime(t->sticks * resolution), in snd_hrtimer_start()
134 resolution = tp.tv_nsec; in snd_hrtimer_init()
145 timer->hw.resolution = resolution; in snd_hrtimer_init()
146 timer->hw.ticks = NANO_SEC / resolution; in snd_hrtimer_init()
Dtimer.c390 return timer->hw.resolution; in snd_timer_resolution()
399 unsigned long resolution = 0; in snd_timer_notify1() local
412 resolution = snd_timer_resolution(ti); in snd_timer_notify1()
414 ti->ccallback(ti, event, &tstamp, resolution); in snd_timer_notify1()
425 ts->ccallback(ts, event + 100, &tstamp, resolution); in snd_timer_notify1()
673 unsigned long resolution, ticks; in snd_timer_tasklet() local
690 resolution = ti->resolution; in snd_timer_tasklet()
695 ti->callback(ti, resolution, ticks); in snd_timer_tasklet()
711 unsigned long resolution, ticks; in snd_timer_interrupt() local
726 resolution = timer->hw.c_resolution(timer); in snd_timer_interrupt()
[all …]
Dtimer_compat.c31 u32 resolution; member
54 info.resolution = t->hw.resolution; in snd_timer_user_info_compat()
62 u32 resolution; member
81 status.resolution = snd_timer_resolution(tu->timeri); in snd_timer_user_status_compat()
Drtctimer.c147 timer->hw.resolution = NANO_SEC / rtctimer_freq; in rtctimer_init()
Dpcm_timer.c94 .resolution = 0,
/linux-4.1.27/drivers/iio/adc/
Dmcp320x.c55 unsigned int resolution; member
164 *val2 = adc->chip_info->resolution; in mcp320x_read_raw()
240 .resolution = 10
245 .resolution = 10
250 .resolution = 10
255 .resolution = 10
260 .resolution = 12
265 .resolution = 12
270 .resolution = 12
275 .resolution = 12
/linux-4.1.27/Documentation/timers/
Dhrtimers.txt2 hrtimers - subsystem for high-resolution kernel timers
5 This patch introduces a new subsystem for high-resolution kernel timers.
9 back and forth trying to integrate high-resolution and high-precision
11 such high-resolution timer implementations in practice, we came to the
18 - the forced handling of low-resolution and high-resolution timers in
30 necessitate a more complex handling of high resolution timers, which
62 high-resolution timer subsystem as well.
64 While this subsystem does not offer high-resolution clock sources just
65 yet, the hrtimer subsystem can be easily extended with high-resolution
73 resolution and low precision use cases - once the precision-sensitive
[all …]
Dhighres.txt1 High resolution timers and dynamic ticks design notes
25 - high resolution timer functionality
79 functionality like high resolution timers or dynamic ticks.
99 accounting, profiling, and high resolution timers.
128 utilize the high resolution and dynamic tick functionalities without any change
130 enabling of high resolution timers and dynamic ticks is simply provided by
138 high resolution timer functionality
141 During system boot it is not possible to use the high resolution timer
146 the high resolution functionality can work. Up to the point where hrtimers are
147 initialized, the system works in the usual low resolution periodic mode. The
[all …]
D00-INDEX4 - High resolution timers and dynamic ticks design notes
10 - subsystem for high-resolution kernel timers
Dtimekeeping.txt16 on this timeline, providing facilities such as high-resolution timers.
34 The clock source shall have as high resolution as possible, and the frequency
133 it will fall back to using jiffies, making its maximum resolution 1/HZ of the
/linux-4.1.27/drivers/acpi/acpica/
Dhwtimer.c64 acpi_status acpi_get_timer_resolution(u32 * resolution) in acpi_get_timer_resolution() argument
68 if (!resolution) { in acpi_get_timer_resolution()
73 *resolution = 24; in acpi_get_timer_resolution()
75 *resolution = 32; in acpi_get_timer_resolution()
/linux-4.1.27/drivers/staging/comedi/drivers/
Ddas1800.c208 int resolution; /* bits of ai resolution */ member
225 .resolution = 12,
236 .resolution = 12,
247 .resolution = 12,
258 .resolution = 12,
269 .resolution = 16,
280 .resolution = 16,
291 .resolution = 12,
302 .resolution = 12,
313 .resolution = 12,
[all …]
Ddas800.c103 int resolution; member
176 .resolution = 12,
182 .resolution = 12,
188 .resolution = 12,
194 .resolution = 12,
200 .resolution = 12,
206 .resolution = 12,
212 .resolution = 16,
249 if (thisboard->resolution == 16) in das800_enable()
396 if (thisboard->resolution == 12 && gain > 0) in das800_ai_do_cmd()
[all …]
/linux-4.1.27/drivers/staging/iio/resolver/
Dad2s1210.c90 u8 resolution; member
179 ad2s1210_res_pins[(st->resolution - 10)/2][0]); in ad2s1210_set_resolution_pin()
181 ad2s1210_res_pins[(st->resolution - 10)/2][1]); in ad2s1210_set_resolution_pin()
315 st->resolution in ad2s1210_store_control()
319 if (data != st->resolution) in ad2s1210_store_control()
337 return sprintf(buf, "%d\n", st->resolution); in ad2s1210_show_resolution()
376 st->resolution in ad2s1210_store_resolution()
380 if (data != st->resolution) in ad2s1210_store_resolution()
502 pos >>= 16 - st->resolution; in ad2s1210_read_raw()
509 vel >>= 16 - st->resolution; in ad2s1210_read_raw()
[all …]
/linux-4.1.27/include/sound/
Dtimer.h58 unsigned long resolution; /* average timer resolution for one tick in nsec */ member
102 unsigned long ticks, unsigned long resolution);
106 unsigned long resolution);
111 unsigned long resolution; /* current resolution for tasklet */ member
/linux-4.1.27/drivers/watchdog/
Dbcm_kona_wdt.c39 #define SECS_TO_TICKS(x, w) ((x) << (w)->resolution)
40 #define TICKS_TO_SECS(x, w) ((x) >> (w)->resolution)
57 int resolution; member
131 res, wdt->resolution, in bcm_kona_wdt_dbg_show()
215 if (wdt->resolution > SECWDOG_MAX_RES) in bcm_kona_wdt_set_resolution_reg()
219 wdt->resolution << SECWDOG_CLKS_SHIFT); in bcm_kona_wdt_set_resolution_reg()
312 wdt->resolution = SECWDOG_DEFAULT_RESOLUTION; in bcm_kona_wdt_probe()
/linux-4.1.27/Documentation/hwmon/
Dds162183 also pin compatible with the DS1621 and provide multi-resolution support.
94 DS1631 - 93ms..750ms for 9..12 bits resolution, respectively.
95 DS1721 - 93ms..750ms for 9..12 bits resolution, respectively.
96 DS1731 - 93ms..750ms for 9..12 bits resolution, respectively.
115 As mentioned above, the DS1631, DS1721, and DS1731 provide multi-resolution
126 At initial device power-on, the default resolution is set to 12-bits.
128 The resolution mode for the DS1631, DS1721, or DS1731 can be changed from
130 will normalize the range of input values to the device maximum resolution
179 Mathematically, the resolution can be derived from the conversion time
186 -> 'g(x)' = the resolution in degrees C per LSB.
Dlm7325 LSB: 0.25, 0.125, 0.0625, and 0.3125. Changing the resolution mode
27 From userspace, the desired resolution can be specified as a function of
30 maximum times defined for the resolution in the datasheet.
73 Mathematically, the resolution can be derived from the conversion time
79 resolution in degrees C per LSB.
Dmcp302123 converter (ADC) with 10-bit resolution. The MCP3221 has 12-bit resolution.
Dadc128d81825 measurement has a resolution of 0.5 degrees; the limits have a resolution
32 inputs can measure voltages between 0 and 2.55 volts, with a resolution
Dnct790433 0.125 degree resolution)
36 0.125 degree resolution)
Dw8379342 If your motherboard maker used the reference design, the resolution of
43 voltage0-2 is 2mV, resolution of voltage3/4/5 is 16mV, 8mV for voltage6,
44 24mV for voltage7/8. Temp1-4 have a 0.25 degree Celsius resolution,
45 temp5-6 have a 1 degree Celsiis resolution.
Dlm8038 +125 degrees. The current temperature measurement has a resolution of
39 0.0625 degrees; the limits have a resolution of 1 degree.
52 inputs can measure voltages between 0 and 2.55 volts, with a resolution
Dsht2142 The driver uses the default resolution settings of 12 bit for humidity and 14
46 e.g. maximum two measurements per second at the given resolution.
Dlm7039 temperature data (0.0625 degrees celsius resolution).
42 data (0.03125 degrees celsius resolution).
Dtmp40137 sensor resolution can be set to 0.5, 0.25, 0.125 or 0.0625 degree (not
38 supported by the driver so far, so using the default resolution of 0.5
Dlm90151 increased resolution of the remote temperature measurement.
178 * Lower resolution for remote temperature
181 * Better local resolution
185 * Better local resolution
195 * Better local resolution
211 * Better local resolution
216 resolution of 0.125 degree for both temperatures.
Dk8temp35 Temperatures are measured in degrees Celsius and measurement resolution is
36 1 degree C. It is expected that future CPU will have better resolution. The
Dadm924074 with resolution of 0.5 degrees Celsius. High and low temperature limits
75 are 8-bit signed data with resolution of one degree Celsius.
109 - resolution of the low speed limit may be reduced
127 nr label nominal maximum resolution
Dtmp10318 temperatures to a resolution of 1°C. The TMP103 is specified for
Dadt741033 resolution of 13 bits (0.0625°C) or 16 bits (0.0078°C). The sensor provides an
59 The device is set to 16 bit resolution and comparator mode.
Dlm7839 between -55 and +125 degrees, with a resolution of 1 degree.
52 inputs can measure voltages between 0 and 4.08 volts, with a resolution
Dgl518sm55 measures voltages between 0.000 and 5.865 volt, with a resolution of 0.023
57 a resolution of 0.019 volt. Note that revision 0x00 chips do not support
Dasc762122 specification. First enhancement is temperature reading resolution. We
32 sheet says 10-bits of resolution, although you may find the lower bits
38 when compared to the competition, in addition to the higher resolution
111 - 0.25C digital temperature sensor resolution
Dsmsc47m19231 Voltages and temperatures are measured by an 8-bit ADC, the resolution
35 each voltage channel is 0V ... 255/192*(nominal voltage), the resolution
Dda905512 resolution and track and hold circuitry combined with an analogue input
Dw83l786ng30 Temperatures are measured in degrees Celsius and measurement resolution is 1
Dhtu2138 The driver uses the default resolution settings of 12 bit for humidity and 14
Dsis559571 resolution of 1 degree.
84 inputs can measure voltages between 0 and 4.08 volts, with a resolution of
Dnct668321 Temperatures are measured in degrees Celsius. Measurement resolution is
Dpc8742755 standard), so the resolution and range depend on the type of sensor
Dda905212 resolution and track and hold circuitry combined with an analogue input
Dsht1562 flag to indicate the temp/humidity resolution to use (default to false).
Dadt746242 with 0.25 degC resolution.
Dmc13783-adc22 A/D converter has a resolution of 2.25mV.
Dadt747044 degC resolution.
Ddme173768 The voltage inputs are sampled with 12-bit resolution and have internal
117 Temperatures are measured with 12-bit resolution and reported in millidegree
137 Fan RPMs are measured with 16-bit resolution. The chip provides inputs for 6
Dw83627ehf64 Temperatures are measured in degrees Celsius and measurement resolution is 1
66 resolution is 1 degC for W83667HG-B and 0.0 degC for NCT6775F and NCT6776F.
Dlm7588 therefore be instantiated explicitly. Higher resolution up to 12-bit
Dlm6376 and better PWM resolution. For LM96163, the external temperature sensor type is
Dk10temp62 sysfs. It is measured in degrees Celsius with a resolution of 1/8th degree.
Dvia686a56 has a different resolution and range.
Dcoretemp27 Temperature is measured in degrees Celsius and measurement resolution is
Dadt747586 with a resolution of 0.25 degree Celsius. Temperature readings can be
Dadm102646 be asserted. The current temperature and limits have a resolution of 1
Dadm102179 are possible between -65 and +127 degrees, with a resolution of one degree.
Dw83792d45 Temperatures are measured in degrees Celsius and measurement resolution is 1
Dw83791d64 Temperatures are measured in degrees Celsius and measurement resolution is 1
Df71805f102 resolution is much lower than you would expect, the step between different
Dnct677557 Temperatures are measured in degrees Celsius and measurement resolution is
Dw83781d89 main temperature sensors has a resolution of 1 degree; the other sensor(s)
104 inputs can measure voltages between 0 and 4.08 volts, with a resolution
Dlm85103 measure temperatures with 0.25 degC resolution. They also provide an offset
Dit87177 inputs can measure voltages between 0 and 4.08 volts, with a resolution of
/linux-4.1.27/drivers/input/mouse/
Dlifebook.c232 static void lifebook_set_resolution(struct psmouse *psmouse, unsigned int resolution) in lifebook_set_resolution() argument
237 if (resolution == 0 || resolution > 400) in lifebook_set_resolution()
238 resolution = 400; in lifebook_set_resolution()
240 p = params[resolution / 100]; in lifebook_set_resolution()
242 psmouse->resolution = 50 << p; in lifebook_set_resolution()
Dpsmouse.h67 unsigned int resolution; member
74 void (*set_resolution)(struct psmouse *psmouse, unsigned int resolution);
115 void psmouse_set_resolution(struct psmouse *psmouse, unsigned int resolution);
Dlogips2pp.c182 static void ps2pp_set_resolution(struct psmouse *psmouse, unsigned int resolution) in ps2pp_set_resolution() argument
184 if (resolution > 400) { in ps2pp_set_resolution()
192 psmouse->resolution = 800; in ps2pp_set_resolution()
194 psmouse_set_resolution(psmouse, resolution); in ps2pp_set_resolution()
Dpsmouse-base.c59 module_param_named(resolution, psmouse_resolution, uint, 0644);
60 MODULE_PARM_DESC(resolution, "Resolution, in dpi.");
84 PSMOUSE_DEFINE_ATTR(resolution, S_IWUSR | S_IRUGO,
85 (void *) offsetof(struct psmouse, resolution),
428 void psmouse_set_resolution(struct psmouse *psmouse, unsigned int resolution) in psmouse_set_resolution() argument
433 if (resolution == 0 || resolution > 200) in psmouse_set_resolution()
434 resolution = 200; in psmouse_set_resolution()
436 p = params[resolution / 50]; in psmouse_set_resolution()
438 psmouse->resolution = 25 << p; in psmouse_set_resolution()
1217 psmouse->set_resolution(psmouse, psmouse->resolution); in psmouse_initialize()
[all …]
Dfocaltech.c380 void focaltech_set_resolution(struct psmouse *psmouse, unsigned int resolution) in focaltech_set_resolution() argument
/linux-4.1.27/lib/fonts/
DKconfig28 This is the "high resolution" font for the VGA frame buffer (the one
34 Given the resolution provided by the frame buffer device, answer N
41 This is the "high resolution" font for the VGA frame buffer (the one
94 This is the high resolution console font for Sun machines. Say Y.
100 This is the high resolution console font for Sun machines with very
108 This is a high resolution console font for machines with very
/linux-4.1.27/Documentation/devicetree/bindings/power_supply/
Dti,bq24735.txt14 must be between 128mA and 8.128A with a 64mA step resolution. The POR value
18 must be between 1.024V and 19.2V with a 16mV step resolution. The POR value
22 value must be between 128mA and 8.064A with a 128mA step resolution. The
/linux-4.1.27/Documentation/misc-devices/
Disl2900319 provides 16-bit resolution while rejecting 50Hz and 60Hz flicker caused by
22 The driver allows to set the lux range, the bit resolution, the operational
45 resolution:
/linux-4.1.27/Documentation/devicetree/bindings/input/touchscreen/
Dmms114.txt7 - x-size: horizontal resolution of touchscreen
8 - y-size: vertical resolution of touchscreen
Dpixcir_i2c_ts.txt8 - touchscreen-size-x: horizontal resolution of touchscreen (in pixels)
9 - touchscreen-size-y: vertical resolution of touchscreen (in pixels)
Dauo_pixcir_ts.txt9 - x-size: horizontal resolution of touchscreen
10 - y-size: vertical resolution of touchscreen
Dzforce_ts.txt9 - x-size: horizontal resolution of touchscreen
10 - y-size: vertical resolution of touchscreen
Dchipone_icn8318.txt10 - touchscreen-size-x : horizontal resolution of touchscreen (in pixels)
11 - touchscreen-size-y : vertical resolution of touchscreen (in pixels)
Dtouchscreen.txt4 - touchscreen-size-x : horizontal resolution of touchscreen
6 - touchscreen-size-y : vertical resolution of touchscreen
Dbrcm,iproc-touchscreen.txt47 - touchscreen-size-x: horizontal resolution of touchscreen (in pixels)
48 - touchscreen-size-y: vertical resolution of touchscreen (in pixels)
/linux-4.1.27/include/video/
Dauo_k190xfb.h40 int resolution; member
102 int resolution; member
/linux-4.1.27/drivers/hid/
Dhid-uclogic.c792 s32 resolution; in uclogic_tablet_enable() local
833 resolution = le16_to_cpu(buf[UCLOGIC_PRM_RESOLUTION]); in uclogic_tablet_enable()
834 if (resolution == 0) { in uclogic_tablet_enable()
839 1000 / resolution; in uclogic_tablet_enable()
841 1000 / resolution; in uclogic_tablet_enable()
Dhid-logitech-hidpp.c701 unsigned int resolution; member
722 input_abs_set_res(input_dev, ABS_MT_POSITION_X, wd->resolution); in wtp_populate_input()
724 input_abs_set_res(input_dev, ABS_MT_POSITION_Y, wd->resolution); in wtp_populate_input()
890 wd->resolution = raw_info.res; in wtp_get_config()
891 if (!wd->resolution) in wtp_get_config()
892 wd->resolution = WTP_MANUAL_RESOLUTION; in wtp_get_config()
/linux-4.1.27/drivers/media/i2c/m5mols/
Dm5mols_core.c501 u32 *resolution) in __find_resolution() argument
525 *resolution = match->reg; in __find_resolution()
570 u32 resolution = 0; in m5mols_set_fmt() local
573 ret = __find_resolution(sd, format, &type, &resolution); in m5mols_set_fmt()
589 info->resolution = resolution; in m5mols_set_fmt()
699 ret = m5mols_write(sd, PARM_MON_SIZE, info->resolution); in m5mols_start_monitor()
Dm5mols_capture.c123 ret = m5mols_write(sd, CAPP_MAIN_IMAGE_SIZE, info->resolution); in m5mols_start_capture()
Dm5mols.h242 u8 resolution; member
/linux-4.1.27/Documentation/fb/
Dsm501.txt9 Specify resolution as
Daty128fb.txt19 if you use same resolution as you used in textmode.
26 Switching modes is done using the video=aty128fb:<resolution>... modedb
Dsh7760fb.txt16 * The driver does not support changing resolution while loaded
24 resolution is <= 320 pixels.
Dintel810.txt28 - Supports a variable range of horizontal and vertical resolution and
59 select horizontal resolution in pixels. (This parameter will be
66 select vertical resolution in scanlines. If Discrete Video Timings
75 select virtual vertical resolution in scanlines. If (0) or none
Dgxfb.txt25 Switching modes is done using gxfb.mode_option=<resolution>... boot
Dlxfb.txt25 Switching modes is done using lxfb.mode_option=<resolution>... boot
Dsisfb.txt16 sisfb is eg. useful if you want a high-resolution text console. Besides that,
94 resolution is used. If you want to switch to a different mode, use the fbset
98 type is LCD, in which case it defaults to the LCD's native resolution. If
Dcirrusfb.txt49 * Hint for AXP: Use -accel false -vyres -1 when changing resolution
Dmatroxfb.txt19 if you use same resolution as you used in textmode.
28 If you want, for example, enable a resolution of 1280x1024x24bpp you should
89 driver is possible, but you must not enable DRI - if you do, resolution and
90 color depth of your X desktop must match resolution and color depths of your
240 xres:X - horizontal resolution, in pixels. Default is derived from `vesa'
242 yres:X - vertical resolution, in pixel lines. Default is derived from `vesa'
Dframebuffer.txt138 up in the resolution determined by /dev/fb0 (or $FRAMEBUFFER, if set). You
140 resolution (using the Virtual keyword) though. This is the default for the
145 file. This allows for on-the-fly resolution switching while retaining the
179 If the screen resolution is 640x480, it will take
Dapi.txt182 __u32 xres; /* visible resolution */
184 __u32 xres_virtual; /* virtual resolution */
187 __u32 yoffset; /* resolution */
Dtridentfb.txt23 switch resolution which the chip does not support at some depths for
Dviafb.txt173 3. When console is depending on viafbinfo1, dynamically change resolution
186 # fbset <resolution-vertical_sync>
Dpxafb.txt19 The resolution of the display in pixels
Duvesafb.txt37 or most optimal resolution/refresh rate for your setup will not work
/linux-4.1.27/kernel/time/
Dhrtimer.c77 .resolution = KTIME_LOW_RES,
83 .resolution = KTIME_LOW_RES,
89 .resolution = KTIME_LOW_RES,
95 .resolution = KTIME_LOW_RES,
682 base->clock_base[i].resolution = KTIME_HIGH_RES; in hrtimer_switch_to_hres()
817 if (interval.tv64 < timer->base->resolution.tv64) in hrtimer_forward()
818 interval.tv64 = timer->base->resolution.tv64; in hrtimer_forward()
959 tim = ktime_add_safe(tim, base->resolution); in __hrtimer_start_range_ns()
1193 *tp = ktime_to_timespec(cpu_base->clock_base[base].resolution); in hrtimer_get_res()
Dtimer_list.c126 (unsigned long long)ktime_to_ns(base->resolution)); in print_base()
DKconfig194 This option enables high resolution timer support. If your
/linux-4.1.27/include/uapi/sound/
Dasound.h691 unsigned long resolution; /* average period resolution in ns */ member
707 unsigned long resolution; /* current period resolution in ns */ member
724 unsigned long resolution; /* average period resolution in ns */ member
743 unsigned int resolution; /* current period resolution in ns */ member
767 unsigned int resolution; member
Dasequencer.h522 unsigned int resolution; /* resolution in Hz */ member
/linux-4.1.27/sound/isa/gus/
Dgus_timer.c129 .resolution = 80000,
138 .resolution = 320000,
/linux-4.1.27/drivers/input/
DKconfig110 int "Horizontal screen resolution"
116 screen resolution you are using to correctly scale the data. If
120 int "Vertical screen resolution"
126 screen resolution you are using to correctly scale the data. If
Devdev.c1035 abs.resolution = 0; in evdev_do_ioctl()
/linux-4.1.27/Documentation/devicetree/bindings/iio/adc/
Dat91_adc.txt18 - atmel,adc-res-names: Contains one identifier string for each resolution
26 resolution will be used.
/linux-4.1.27/sound/pci/emu10k1/
Dtimer.c71 .resolution = 20833, /* 1 sample @ 48KHZ = 20.833...us */
/linux-4.1.27/drivers/media/pci/cx23885/
Dcx23888-ir.c801 p->resolution = clock_divider_to_resolution(rxclk_divider); in cx23888_ir_rx_s_parameters()
802 o->resolution = p->resolution; in cx23888_ir_rx_s_parameters()
919 p->resolution = clock_divider_to_resolution(txclk_divider); in cx23888_ir_tx_s_parameters()
920 o->resolution = p->resolution; in cx23888_ir_tx_s_parameters()
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-bus-iio-frequency-adf43505 Stores channel Y frequency resolution/channel spacing in Hz.
Dsysfs-block-dm33 queue. The resolution of this deadline is in
Dsysfs-driver-hid-roccat-kovaplus40 profile_settings holds information like resolution, sensitivity
Dsysfs-driver-hid-roccat-pyra14 profile_settings holds information like resolution, sensitivity
Dsysfs-driver-hid-roccat-savu29 button settings. profile holds informations like resolution, sensitivity
Dsysfs-driver-hid-roccat-koneplus51 profile_settings holds information like resolution, sensitivity
Dsysfs-driver-hid-roccat-konepure60 profile_settings holds information like resolution, sensitivity
/linux-4.1.27/drivers/staging/iio/Documentation/
Dsysfs-bus-iio-adc-ad7280a18 36.9 minutes. The resolution of the timer is 71.5 sec.
Dsysfs-bus-iio-light19 Hardware dependent ADC resolution of the ambient light sensor
/linux-4.1.27/drivers/media/i2c/cx25840/
Dcx25840-ir.c828 p->resolution = clock_divider_to_resolution(rxclk_divider); in cx25840_ir_rx_s_parameters()
829 o->resolution = p->resolution; in cx25840_ir_rx_s_parameters()
1004 p->resolution = clock_divider_to_resolution(txclk_divider); in cx25840_ir_tx_s_parameters()
1005 o->resolution = p->resolution; in cx25840_ir_tx_s_parameters()
/linux-4.1.27/Documentation/filesystems/nfs/
D00-INDEX10 - nfs client, and DNS resolution for fs_locations.
/linux-4.1.27/drivers/atm/
Deni.h43 int resolution; /* shaping divider */ member
Deni.c1153 (tx->resolution << MID_SEG_RATE_SHIFT) | in do_tx()
1366 tx->resolution = res; in reserve_or_set_tx()
1987 (tx->resolution << MID_SEG_RATE_SHIFT), dsc); in eni_change_qos()
/linux-4.1.27/Documentation/video4linux/
DREADME.davinci-vpbe50 API to set timings in VENC for a specific display resolution. As of this
64 timings for the resolution supported and setting the dot clock. So we could
DREADME.cpia284 the images will all be about the size in the table, regardless of resolution.
Duvcvideo.txt194 Query the resolution of the control, i.e. the step size of the
Dvivid.txt350 select an HDMI timing is based on the format resolution: for resolutions
402 select an HDMI timing is based on the format resolution: for resolutions
899 - the video resolution of the video input must match that of the video output.
971 less. So for a source resolution of 1280x720 the minimum the scaler can do is
/linux-4.1.27/Documentation/devicetree/bindings/
Dxilinx.txt241 - resolution = <xres yres> : pixel resolution of framebuffer. Some
242 implementations use a different resolution.
244 - virt-resolution = <xvirt yvirt> : Size of framebuffer in memory.
/linux-4.1.27/drivers/gpu/drm/panel/
DKconfig39 TFT-LCD modules. The panel has a 2560x1600 resolution and uses
/linux-4.1.27/drivers/video/console/
DKconfig86 Select 80 if you use a 640x480 resolution by default.
96 Select 25 if you use a 640x480 resolution by default.
/linux-4.1.27/arch/avr32/boards/atngw100/
DKconfig46 prompt "LCD panel resolution on EVKLCD10X"
/linux-4.1.27/Documentation/devicetree/bindings/drm/tilcdc/
Dpanel.txt17 should be the preferred/default resolution. Refer to
/linux-4.1.27/Documentation/devicetree/bindings/media/
Ds5p-mfc.txt4 supports high resolution decoding and encoding functionalities.
/linux-4.1.27/drivers/xen/
Defi.c54 tc->resolution = efi_data(op).u.get_time.resolution; in xen_efi_get_time()
/linux-4.1.27/arch/arm/plat-omap/
DKconfig97 timer provides more intra-tick resolution than the 32KHz timer,
108 intra-tick resolution than OMAP_MPU_TIMER. The 32KHz timer is
/linux-4.1.27/drivers/video/fbdev/
Dauo_k1900fb.c73 init_param |= AUOK1900_INIT_RESOLUTION(par->resolution); in auok1900_init()
Dauo_k1901fb.c112 init_param |= AUOK1901_INIT_RESOLUTION(par->resolution); in auok1901_init()
Dauo_k190x.c446 struct panel_info *panel = &panel_table[par->resolution]; in auok190xfb_check_var()
1053 panel = &panel_table[board->resolution]; in auok190x_common_probe()
1055 par->resolution = board->resolution; in auok190x_common_probe()
/linux-4.1.27/Documentation/devicetree/bindings/video/
Ddisplay-timing.txt18 - hactive, vactive: display resolution
/linux-4.1.27/sound/drivers/opl3/
Dopl3_lib.c235 .resolution = 80000,
244 .resolution = 320000,
/linux-4.1.27/include/linux/
Disdnif.h245 __u8 resolution; member
Dhrtimer.h150 ktime_t resolution; member
Dinput.h463 INPUT_GENERATE_ABS_ACCESSORS(res, resolution)
Defi.h153 u32 resolution; member
/linux-4.1.27/Documentation/
DSecurityBugs23 bug submitter to bug resolution as well as disclosure. We prefer
Doops-tracing.txt36 may find that booting with a higher resolution (eg, vga=791)
147 faults. In order to have full support for address resolution at least
157 Two types of address resolution are performed by klogd. The first is
Dsvga.txt134 0x1000 to 0x7fff - modes specified by resolution. The code has a "0xRRCC"
195 text screen resolution instead of peeking it from BIOS variables. Don't use
232 2.1 (30-Jan-96) VESA modes moved to 0x200-0x3ff. Mode selection by resolution
Dprintk-formats.txt52 'f' specifiers perform this resolution and then provide the same
Drbtree.txt26 The high-resolution timer code uses an rbtree to organize outstanding
/linux-4.1.27/drivers/isdn/i4l/
Disdn_ttyfax.c704 char *rp = &f->resolution; in isdn_tty_cmd_FCLASS2()
750 char *rp = &f->resolution; in isdn_tty_cmd_FCLASS2()
834 char *rp = &f->resolution; in isdn_tty_cmd_FCLASS2()
/linux-4.1.27/Documentation/input/
Datarikbd.txt11 resolution.
14 keyswitches, mouse resolution, etc. can be accommodated.
45 The mouse port should be capable of supporting a mouse with resolution of
62 resolution are returned to the host computer.
95 highest resolution available, and merely generates a pair of cursor key events
159 maintained down to a resolution of one second.
273 it does NOT affect the resolution of the data returned to the host. This
Delantech.txt196 D: 1 = disable dynamic resolution
542 R: 1 = enable real hardware resolution
Dalps.txt166 given axis. Thus the bitmap packet can be used for low-resolution multi-touch
/linux-4.1.27/Documentation/ABI/obsolete/
Dsysfs-driver-hid-roccat-koneplus42 profile_settings holds information like resolution, sensitivity
Dsysfs-driver-hid-roccat-kovaplus60 profile_settings holds information like resolution, sensitivity
Dsysfs-driver-hid-roccat-pyra57 profile_settings holds information like resolution, sensitivity
/linux-4.1.27/Documentation/usb/
Dmtouchusb.txt48 The controller screen resolution is now 0 to 16384 for both X and Y reporting
Dusbmon.txt115 - Timestamp in microseconds, a decimal number. The timestamp's resolution
/linux-4.1.27/arch/mips/loongson/
DKconfig104 switched on you can not use high resolution timers.
/linux-4.1.27/Documentation/video4linux/bttv/
DPROBLEMS60 full resolution in 32-bit mode.
/linux-4.1.27/fs/ext4/
DKconfig14 allocation, persistent preallocation, high resolution time stamps,
/linux-4.1.27/drivers/char/
Defirtc.c358 cap.resolution, cap.accuracy, cap.sets_to_zero); in efi_rtc_proc_show()
/linux-4.1.27/Documentation/devicetree/
Doverlay-notes.txt7 Documentation/devicetree/dynamic-resolution-notes.txt[2]
/linux-4.1.27/include/xen/interface/
Dplatform.h147 uint32_t resolution; member
/linux-4.1.27/Documentation/isdn/
DINTERFACE.fax36 - resolution
/linux-4.1.27/drivers/scsi/bfa/
Dbfa_fc.h289 resolution:1, /* ms/ns ED_TOV resolution */ member
303 resolution:1, /* ms/ns ED_TOV resolution */ member
/linux-4.1.27/drivers/misc/
Disl29003.c259 static DEVICE_ATTR(resolution, S_IWUSR | S_IRUGO,
DKconfig235 other platforms. They have a better resolution and max interval
257 MFGPTs have a better resolution and max interval than the
/linux-4.1.27/tools/perf/Documentation/
Dperf-trace.txt138 For symbols resolution you may need to install debugging symbols.
/linux-4.1.27/Documentation/networking/
Ddns_resolver.txt51 basic dname to IPv4/IPv6 address resolution, the following line should be
Dtimestamping.txt9 control message as struct timeval (usec resolution).
13 timestamp as struct timespec (nsec resolution).
38 Its struct timespec allows for higher resolution (ns) timestamps than the
Dde4x5.txt100 The downside is the 1 'jiffies' (10ms) resolution.
DREADME.sb1000119 see if the networking is running but the DNS resolution is where the
/linux-4.1.27/tools/perf/config/
Dutilities.mak165 # relative path resolution is requested, as determined
/linux-4.1.27/include/media/
Dv4l2-subdev.h460 u32 resolution; /* ns */ member
/linux-4.1.27/include/acpi/
Dacpixf.h838 acpi_get_timer_resolution(u32 *resolution))
/linux-4.1.27/include/uapi/linux/
Dinput.h73 __s32 resolution; member
/linux-4.1.27/Documentation/scheduler/
Dsched-rt-group.txt28 resolution, or the time it takes to handle the budget refresh itself.
/linux-4.1.27/fs/cifs/
DKconfig160 utilities to provide server name resolution (host names to
/linux-4.1.27/tools/power/x86/turbostat/
Dturbostat.c2222 unsigned int resolution; in print_thermal() local
2228 resolution = (msr >> 27) & 0xF; in print_thermal()
2230 cpu, msr, tcc_activation_temp - dts, resolution); in print_thermal()
/linux-4.1.27/drivers/input/serio/
DKconfig139 The SDC itself contains a 10ms resolution timer/clock capable
/linux-4.1.27/drivers/isdn/hardware/eicon/
Ddivacapi.h456 byte resolution; member
/linux-4.1.27/Documentation/arm/SA1100/
DAssabet231 Boot script timeout (1000ms resolution): 3
/linux-4.1.27/Documentation/filesystems/
Dpath-lookup.txt4 Path resolution is the finding a dentry corresponding to a path name string, by
334 scalability of path resolution.
/linux-4.1.27/sound/pci/
Dazt3328.c2243 .resolution = 977, /* 1000000/1024000 = 0.9765625us */
2263 snd_azf3328_timer_hw.resolution *= seqtimer_scaling; in snd_azf3328_timer()
/linux-4.1.27/Documentation/watchdog/
Dwatchdog-kernel-api.txt156 because the watchdog does not necessarily has a 1 second resolution).
/linux-4.1.27/Documentation/dvb/
Davermedia.txt46 For a PAL TV signal encoded at a resolution of 768x576 24-bit
/linux-4.1.27/arch/cris/
DKconfig106 timer1 to get sub jiffie resolution timers (primarily one-shot
/linux-4.1.27/sound/isa/ad1816a/
Dad1816a_lib.c436 .resolution = 10000,
/linux-4.1.27/Documentation/device-mapper/
Dcache.txt160 Discard bitset resolution
/linux-4.1.27/drivers/media/tuners/
Dmxl5005s.c305 static u32 MXL_Ceiling(u32 value, u32 resolution);
3584 static u32 MXL_Ceiling(u32 value, u32 resolution) in MXL_Ceiling() argument
3586 return value / resolution + (value % resolution > 0 ? 1 : 0); in MXL_Ceiling()
/linux-4.1.27/Documentation/video4linux/cx2341x/
Dfw-encoder-api.txt92 Select video stream encoding resolution.
/linux-4.1.27/Documentation/virtual/kvm/
Dtimekeeping.txt543 the kernel time, which is expressed in the theoretically high resolution
567 back into nanosecond resolution values.
/linux-4.1.27/Documentation/development-process/
D6.Followthrough126 Other times, conflict resolution will involve working with the other

12