Home
last modified time | relevance | path

Searched refs:columns (Results 1 – 64 of 64) sorted by relevance

/linux-4.1.27/drivers/s390/char/
Dsclp_rw.c47 sclp_make_buffer(void *page, unsigned short columns, unsigned short htab) in sclp_make_buffer() argument
64 buffer->columns = columns; in sclp_make_buffer()
228 buffer->columns); in sclp_write()
234 if (buffer->current_length >= buffer->columns) in sclp_write()
249 buffer->columns); in sclp_write()
258 buffer->columns); in sclp_write()
288 buffer->columns); in sclp_write()
298 buffer->current_length >= buffer->columns) in sclp_write()
338 sclp_set_columns(struct sclp_buffer *buffer, unsigned short columns) in sclp_set_columns() argument
340 buffer->columns = columns; in sclp_set_columns()
[all …]
Dsclp_rw.h76 unsigned short columns; member
Draw3270.c1113 static DEVICE_ATTR(columns, 0444, raw3270_columns_show, NULL);
/linux-4.1.27/tools/perf/scripts/python/bin/
Dexport-to-postgresql-report18 columns=$2
23 columns=$2
29 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/export-to-postgresql.py $dbname $columns $calls
/linux-4.1.27/Documentation/devicetree/bindings/input/
Dmatrix-keymap.txt12 Properties for the number of rows and columns are optional because some
15 - keypad,num-columns: Number of column lines connected to the keypad
27 keypad,num-columns = <8>;
Dqcom,pm8xxx-keypad.txt47 - keypad,num-columns:
50 Definition: number of columns in the keymap. More information can be
85 keypad,num-columns = <5>;
Dlpc32xx-key.txt17 Note: keypad,num-rows and keypad,num-columns are required, and must be equal
27 keypad,num-columns = <1>;
Domap-keypad.txt12 keypad,num-rows and keypad,num-columns are required.
26 keypad,num-columns = <8>;
Dtwl4030-keypad.txt12 * keypad,num-rows and keypad,num-columns are required.
26 keypad,num-columns = <8>;
Dbrcm,bcm-keypad.txt12 keypad,num-rows and keypad,num-columns are required.
26 - keypad,num-columns: Number of column lines connected to the
74 keypad,num-columns = <5>;
Dst-keyscan.txt24 - keypad,num-columns: Number of column lines connected to the keypad
41 keypad,num-columns = <4>;
Dtca8418_keypad.txt4 keypad,num-rows and keypad,num-columns are required.
Dsamsung-keypad.txt25 - samsung,keypad-num-columns: Number of column lines connected to the
50 samsung,keypad-num-columns = <8>;
Dstmpe-keypad.txt12 - keypad,num-columns : See ./matrix-keymap.txt
Dcros-ec-keyb.txt24 keypad,num-columns = <13>;
Dnvidia,tegra20-kbc.txt46 nvidia,kbc-col-pins = <11 12 13>; /* pin 11, 12, 13 as columns */
Dpxa27x-keypad.txt40 keypad,num-columns = <5>;
/linux-4.1.27/drivers/input/keyboard/
Dlpc32xx-keys.c145 u32 rows = 0, columns = 0; in lpc32xx_parse_dt() local
148 err = matrix_keypad_parse_of_params(dev, &rows, &columns); in lpc32xx_parse_dt()
151 if (rows != columns) { in lpc32xx_parse_dt()
157 kscandat->row_shift = get_count_order(columns); in lpc32xx_parse_dt()
/linux-4.1.27/Documentation/devicetree/bindings/mfd/
Dtc3589x.txt53 - keypad,num-columns : number of columns in the matrix, see
84 keypad,num-columns = <8>;
/linux-4.1.27/tools/perf/scripts/python/
Dexport-to-postgresql.py57 columns = sys.argv[2] variable
59 columns = "all"
61 if columns not in ("all", "branches"):
64 branches = (columns == "branches")
/linux-4.1.27/scripts/kconfig/lxdialog/
Dutil.c257 int lines, columns; in dialog_clear() local
260 columns = getmaxx(stdscr); in dialog_clear()
262 attr_clear(stdscr, lines, columns, dlg.screen.atr); in dialog_clear()
277 if (len > columns - 2) { in dialog_clear()
280 skip = len - (columns - 2 - strlen(ellipsis)); in dialog_clear()
306 for (i = len + 1; i < columns - 1; i++) in dialog_clear()
/linux-4.1.27/arch/arm/boot/dts/
Dqcom-msm8960-cdp.dts41 keypad,num-columns = <5>;
Dqcom-msm8660-surf.dts56 keypad,num-columns = <5>;
Dstih41x-b2000.dtsi75 keypad,num-columns = <4>;
Dimx53-voipac-bsb.dts152 keypad,num-columns = <1>;
Dexynos4412-smdk4412.dts54 samsung,keypad-num-columns = <8>;
Dste-nomadik-nhk15.dts100 keypad,num-columns = <8>;
Dtwl4030.dtsi153 keypad,num-columns = <8>;
Dcros-ec-keyboard.dtsi17 keypad,num-columns = <13>;
Dexynos4210-smdkv310.dts85 samsung,keypad-num-columns = <8>;
Dphy3250.dts181 keypad,num-columns = <1>;
Dste-href-tvk1281618.dtsi66 keypad,num-columns = <8>;
Ds5pv210-smdkv210.dts64 samsung,keypad-num-columns = <8>;
Ds5pv210-aquila.dts273 samsung,keypad-num-columns = <3>;
Ds5pv210-goni.dts255 samsung,keypad-num-columns = <3>;
Dexynos4412-origen.dts79 samsung,keypad-num-columns = <2>;
Domap4-sdp.dts513 keypad,num-columns = <8>;
Domap3-pandora-common.dtsi347 keypad,num-columns = <6>;
/linux-4.1.27/scripts/kconfig/
Dnconf.c1459 int lines, columns; in setup_windows() local
1461 getmaxyx(stdscr, lines, columns); in setup_windows()
1467 main_window = newwin(lines-2, columns-2, 2, 1); in setup_windows()
1470 mwin_max_cols = columns-6; in setup_windows()
1478 int lines, columns; in main() local
1509 getmaxyx(stdscr, lines, columns); in main()
1510 if (columns < 75 || lines < 20) { in main()
Dnconf.gui.c548 int x, y, lines, columns; in show_scroll_win() local
559 getmaxyx(stdscr, lines, columns); in show_scroll_win()
575 win_cols = min(total_cols+2, columns-2); in show_scroll_win()
581 x = (columns-win_cols)/2; in show_scroll_win()
/linux-4.1.27/arch/x86/xen/
Dvga.c31 screen_info->orig_video_cols = info->u.text_mode_3.columns; in xen_init_vga()
/linux-4.1.27/Documentation/namespaces/
Dcompatibility-list.txt7 occur when tasks share some namespace (the columns) while living
/linux-4.1.27/Documentation/s390/
D3270.ChangeLog11 * Oversize 3270 screen widths may exceed GEOM_MAXINPLEN columns,
D3270.txt13 Linux/390. A 3270 device is a block-mode rows-and-columns terminal of
137 if you wanted a 3278 Model 4 with 43 rows of 80 columns, the
DDebugging390.txt764 felt that it was a good idea not to go over the 80 columns on the screen.
/linux-4.1.27/include/xen/interface/
Dxen.h693 uint16_t rows, columns; member
/linux-4.1.27/arch/x86/math-emu/
DREADME173 ms-dos, the next two columns are for emulators running with the djgpp
312 million. The group of three columns gives the frequency of the given
314 columns shows that an accuracy of between 63.80 and 63.89 bits was
320 frequency of results which are in error. The last two columns give
352 two columns of results are given: * The second column for f2xm1 gives
/linux-4.1.27/tools/perf/
Dbuiltin-diff.c98 } columns[PERF_HPP_DIFF__MAX_INDEX] = { variable
1070 header = columns[dfmt->idx].name; in init_header()
1071 width = columns[dfmt->idx].width; in init_header()
/linux-4.1.27/Documentation/cpu-freq/
Dcpufreq-stats.txt84 Freq_j is in descending order with increasing columns. The output here also
/linux-4.1.27/drivers/video/console/
DKconfig79 int "Initial number of console screen columns"
/linux-4.1.27/Documentation/filesystems/caching/
Dfscache.txt316 columns are as follows:
349 where the first set of columns before the '|' describe the object:
367 and the second set of columns describe the object's cookie, if present:
Dcachefiles.txt466 columns are as follows:
/linux-4.1.27/drivers/gpu/drm/omapdrm/
Domap_dmm_tiler.c211 int columns = (1 + area->x1 - area->x0); in dmm_txn_append() local
213 int i = columns*rows; in dmm_txn_append()
/linux-4.1.27/Documentation/
DCodingStyle79 The limit on the length of lines is 80 columns and this is a strongly
82 Statements longer than 80 columns will be broken into sensible chunks, unless
83 exceeding 80 columns significantly increases readability and does not hide
Dsvga.txt135 form where RR is a number of rows and CC is a number of columns.
DSubmittingPatches617 - The body of the explanation, line wrapped at 75 columns, which will
713 space (easily fit in 80 columns, maybe with some indentation). (git
Dkmemcheck.txt162 fits nicely within 80 columns.
Dkprobes.txt700 is also specified. Following columns show probe status. If the probe is on
/linux-4.1.27/Documentation/arm/OMAP/
DDSS233 and TV-out are not in use. The columns from left to right are:
/linux-4.1.27/Documentation/usb/
Dproc_usb_info.txt89 in the first 4 columns of each "T:" line (topology info:
/linux-4.1.27/Documentation/mtd/
Dnand_ecc.txt29 columns. The parity used is even parity which means that the parity bit = 1
/linux-4.1.27/Documentation/filesystems/
Dproc.txt1278 second). The meanings of the columns are as follows, from left to right:
1344 The columns are:
/linux-4.1.27/Documentation/trace/
Dftrace.txt1913 There are several columns that can be dynamically
/linux-4.1.27/Documentation/scsi/
DChangeLog.lpfc134 * Fix comment for lpfc_sli_iocb_cmd_type to fit within 80 columns.