/linux-4.1.27/arch/arm/boot/dts/ |
D | exynos4412-smdk4412.dts | 63 keypad,column = <3>; 69 keypad,column = <4>; 75 keypad,column = <5>; 81 keypad,column = <6>; 87 keypad,column = <7>; 93 keypad,column = <6>; 99 keypad,column = <7>; 105 keypad,column = <5>; 111 keypad,column = <5>; 117 keypad,column = <7>;
|
D | exynos4210-smdkv310.dts | 94 keypad,column = <3>; 100 keypad,column = <4>; 106 keypad,column = <5>; 112 keypad,column = <6>; 118 keypad,column = <7>; 124 keypad,column = <3>; 130 keypad,column = <4>; 136 keypad,column = <5>; 142 keypad,column = <6>; 148 keypad,column = <7>;
|
D | s5pv210-smdkv210.dts | 76 keypad,column = <3>; 82 keypad,column = <4>; 88 keypad,column = <5>; 94 keypad,column = <6>; 101 keypad,column = <7>; 107 keypad,column = <3>; 112 keypad,column = <4>; 118 keypad,column = <5>; 124 keypad,column = <6>; 130 keypad,column = <7>;
|
D | s5pv210-aquila.dts | 281 keypad,column = <1>; 287 keypad,column = <2>; 293 keypad,column = <1>; 299 keypad,column = <2>; 305 keypad,column = <1>; 311 keypad,column = <2>;
|
D | s5pv210-goni.dts | 263 keypad,column = <1>; 269 keypad,column = <2>; 275 keypad,column = <1>; 281 keypad,column = <2>; 287 keypad,column = <1>; 293 keypad,column = <2>;
|
D | exynos4412-origen.dts | 88 keypad,column = <0>; 94 keypad,column = <1>; 100 keypad,column = <0>; 106 keypad,column = <1>; 112 keypad,column = <0>; 118 keypad,column = <1>;
|
/linux-4.1.27/drivers/mtd/nand/ |
D | mpc5121_nfc.c | 127 uint column; member 247 static void mpc5121_nfc_addr_cycle(struct mtd_info *mtd, int column, int page) in mpc5121_nfc_addr_cycle() argument 252 if (column != -1) { in mpc5121_nfc_addr_cycle() 253 mpc5121_nfc_send_addr(mtd, column); in mpc5121_nfc_addr_cycle() 255 mpc5121_nfc_send_addr(mtd, column >> 8); in mpc5121_nfc_addr_cycle() 334 int column, int page) in mpc5121_nfc_command() argument 339 prv->column = (column >= 0) ? column : 0; in mpc5121_nfc_command() 351 column = 0; in mpc5121_nfc_command() 355 prv->column += 256; in mpc5121_nfc_command() 357 column = 0; in mpc5121_nfc_command() [all …]
|
D | fsl_elbc_nand.c | 71 unsigned int column; /* Saved column from SEQIN */ member 145 static void set_addr(struct mtd_info *mtd, int column, int page_addr, int oob) in set_addr() argument 164 (oob ? FPAR_LP_MS : 0) | column); in set_addr() 174 (oob ? FPAR_SP_MS : 0) | column); in set_addr() 179 elbc_fcm_ctrl->index = column; in set_addr() 301 int column, int page_addr) in fsl_elbc_cmdfunc() argument 319 column += 256; in fsl_elbc_cmdfunc() 325 " 0x%x, column: 0x%x.\n", page_addr, column); in fsl_elbc_cmdfunc() 332 elbc_fcm_ctrl->index += column; in fsl_elbc_cmdfunc() 342 " 0x%x, column: 0x%x.\n", page_addr, column); in fsl_elbc_cmdfunc() [all …]
|
D | nuc900_nand.c | 137 int column, int page_addr) in nuc900_nand_command_lp() argument 145 column += mtd->writesize; in nuc900_nand_command_lp() 151 if (column != -1 || page_addr != -1) { in nuc900_nand_command_lp() 153 if (column != -1) { in nuc900_nand_command_lp() 156 column >>= 1; in nuc900_nand_command_lp() 157 write_addr_reg(nand, column); in nuc900_nand_command_lp() 158 write_addr_reg(nand, column >> 8 | ENDADDR); in nuc900_nand_command_lp()
|
D | au1550nd.c | 268 static void au1550_command(struct mtd_info *mtd, unsigned command, int column, int page_addr) in au1550_command() argument 283 if (column >= mtd->writesize) { in au1550_command() 285 column -= mtd->writesize; in au1550_command() 287 } else if (column < 256) { in au1550_command() 291 column -= 256; in au1550_command() 301 if (column != -1 || page_addr != -1) { in au1550_command() 305 if (column != -1) { in au1550_command() 309 column >>= 1; in au1550_command() 310 ctx->write_byte(mtd, column); in au1550_command()
|
D | mxc_nand.c | 845 static void mxc_do_addr_cycle(struct mtd_info *mtd, int column, int page_addr) in mxc_do_addr_cycle() argument 851 if (column != -1) { in mxc_do_addr_cycle() 852 host->devtype_data->send_addr(host, column & 0xff, in mxc_do_addr_cycle() 857 (column >> 8) & 0xff, in mxc_do_addr_cycle() 1060 int column, int page_addr) in mxc_nand_command() argument 1066 command, column, page_addr); in mxc_nand_command() 1083 WARN_ONCE(column != -1 || page_addr != -1, in mxc_nand_command() 1085 command, column, page_addr); in mxc_nand_command() 1086 mxc_do_addr_cycle(mtd, column, page_addr); in mxc_nand_command() 1092 host->buf_start = column; in mxc_nand_command() [all …]
|
D | hisi504_nand.c | 413 static void set_addr(struct mtd_info *mtd, int column, int page_addr) in set_addr() argument 424 if (column != -1) { in set_addr() 428 column >>= 1; in set_addr() 430 host->addr_value[0] = column & 0xffff; in set_addr() 448 static void hisi_nfc_cmdfunc(struct mtd_info *mtd, unsigned command, int column, in hisi_nfc_cmdfunc() argument 462 host->offset = column; in hisi_nfc_cmdfunc() 464 host->offset = column + mtd->writesize; in hisi_nfc_cmdfunc() 467 set_addr(mtd, column, page_addr); in hisi_nfc_cmdfunc() 472 host->offset = column; in hisi_nfc_cmdfunc() 473 set_addr(mtd, column, page_addr); in hisi_nfc_cmdfunc() [all …]
|
D | fsl_ifc_nand.c | 61 unsigned int column; /* Saved column from SEQIN */ member 231 static void set_addr(struct mtd_info *mtd, int column, int page_addr, int oob) in set_addr() argument 242 iowrite32be((oob ? IFC_NAND_COL_MS : 0) | column, &ifc->ifc_nand.col0); in set_addr() 247 ifc_nand_ctrl->index = column; in set_addr() 411 int column, int page_addr) { in fsl_ifc_cmdfunc() argument 429 ifc_nand_ctrl->index += column; in fsl_ifc_cmdfunc() 440 iowrite32be(mtd->oobsize - column, &ifc->ifc_nand.nand_fbcr); in fsl_ifc_cmdfunc() 441 set_addr(mtd, column, page_addr, 1); in fsl_ifc_cmdfunc() 462 iowrite32be(column, &ifc->ifc_nand.row3); in fsl_ifc_cmdfunc() 500 ifc_nand_ctrl->column = column; in fsl_ifc_cmdfunc() [all …]
|
D | sh_flctl.c | 192 static void set_addr(struct mtd_info *mtd, int column, int page_addr) in set_addr() argument 197 if (column == -1) { in set_addr() 202 column >>= 1; in set_addr() 204 addr = column & 0x0FFF; in set_addr() 214 addr = column; in set_addr() 698 int column, int page_addr) in flctl_cmdfunc() argument 727 column >>= 1; in flctl_cmdfunc() 728 flctl->index += column; in flctl_cmdfunc() 759 set_addr(mtd, column, 0); in flctl_cmdfunc() 761 flctl->read_bytes = mtd->writesize + mtd->oobsize - column; in flctl_cmdfunc() [all …]
|
D | pxa3xx_nand.c | 721 unsigned int page_size, uint16_t column, int page_addr) in set_command_address() argument 726 | (column & 0xFF); in set_command_address() 731 | (column & 0xFFFF); in set_command_address() 789 int ext_cmd_type, uint16_t column, int page_addr) in prepare_set_command() argument 814 info->buf_start = column; in prepare_set_command() 837 set_command_address(info, mtd->writesize, column, page_addr); in prepare_set_command() 842 info->buf_start = column; in prepare_set_command() 909 info->ndcb1 = (column & 0xFF); in prepare_set_command() 919 info->ndcb1 = (column & 0xFF); in prepare_set_command() 964 int column, int page_addr) in nand_cmdfunc() argument [all …]
|
D | nandsim.c | 213 (((ns)->regs.row * (ns)->geom.pgszoob) + (ns)->regs.column) 352 uint column; /* the offset within page */ member 1182 ns->regs.column |= (byte << 8 * ns->regs.count); in accept_addr_byte() 1208 ns->regs.column = 0; in switch_to_ready_state() 1434 return NS_GET_PAGE(ns)->byte + ns->regs.column + ns->regs.off; in NS_PAGE_BYTE_OFF() 1460 pos, ns->regs.row, ns->regs.column + ns->regs.off, in do_bit_flips() 1482 ns->regs.row, ns->regs.column + ns->regs.off); in read_page() 1502 ns->regs.row, ns->regs.column + ns->regs.off); in read_page() 1553 pg_off = ns->file_buf + ns->regs.column + ns->regs.off; in prog_page() 1637 if (ns->regs.column >= (ns->geom.pgszoob - ns->regs.off)) { in do_state_action() [all …]
|
D | docg4.c | 85 int column; member 653 static uint32_t mtd_to_docg4_address(int page, int column) in mtd_to_docg4_address() argument 685 int g4_index = (page % 4) * 0x108 + column/2; /* offset into page */ in mtd_to_docg4_address() 689 static void docg4_command(struct mtd_info *mtd, unsigned command, int column, in docg4_command() argument 696 uint32_t g4_addr = mtd_to_docg4_address(page_addr, column); in docg4_command() 699 __func__, command, page_addr, column); in docg4_command() 706 doc->last_command.column = column; in docg4_command()
|
D | cafe_nand.c | 159 int column, int page_addr) in cafe_nand_cmdfunc() argument 167 command, column, page_addr); in cafe_nand_cmdfunc() 184 column += mtd->writesize; in cafe_nand_cmdfunc() 191 if (column != -1) { in cafe_nand_cmdfunc() 192 cafe_writel(cafe, column, NAND_ADDR1); in cafe_nand_cmdfunc() 222 cafe->datalen = mtd->writesize + mtd->oobsize - column; in cafe_nand_cmdfunc()
|
D | nand_base.c | 598 int column, int page_addr) in nand_command() argument 607 if (column >= mtd->writesize) { in nand_command() 609 column -= mtd->writesize; in nand_command() 611 } else if (column < 256) { in nand_command() 615 column -= 256; in nand_command() 626 if (column != -1) { in nand_command() 630 column >>= 1; in nand_command() 631 chip->cmd_ctrl(mtd, column, ctrl); in nand_command() 701 int column, int page_addr) in nand_command_lp() argument 707 column += mtd->writesize; in nand_command_lp() [all …]
|
D | diskonchip.c | 659 static void doc2001plus_command(struct mtd_info *mtd, unsigned command, int column, int page_addr) in doc2001plus_command() argument 680 if (column >= mtd->writesize) { in doc2001plus_command() 682 column -= mtd->writesize; in doc2001plus_command() 684 } else if (column < 256) { in doc2001plus_command() 688 column -= 256; in doc2001plus_command() 697 if (column != -1 || page_addr != -1) { in doc2001plus_command() 699 if (column != -1) { in doc2001plus_command() 703 column >>= 1; in doc2001plus_command() 704 WriteDOC(column, docptr, Mplus_FlashAddress); in doc2001plus_command()
|
D | atmel_nand.c | 1798 static int nfc_make_addr(struct mtd_info *mtd, int command, int column, in nfc_make_addr() argument 1812 if (column != -1) { in nfc_make_addr() 1815 column >>= 1; in nfc_make_addr() 1816 addr_bytes[acycle++] = column & 0xff; in nfc_make_addr() 1818 addr_bytes[acycle++] = (column >> 8) & 0xff; in nfc_make_addr() 1839 int column, int page_addr) in nfc_nand_command() argument 1861 __func__, command, column, page_addr); in nfc_nand_command() 1886 if (column != -1) in nfc_nand_command() 1887 addr1234 = column; in nfc_nand_command() 1896 column += mtd->writesize; in nfc_nand_command() [all …]
|
/linux-4.1.27/scripts/kconfig/ |
D | gconf.c | 228 GtkTreeViewColumn *column; in init_left_tree() local 234 column = gtk_tree_view_column_new(); in init_left_tree() 235 gtk_tree_view_append_column(view, column); in init_left_tree() 236 gtk_tree_view_column_set_title(column, _("Options")); in init_left_tree() 239 gtk_tree_view_column_pack_start(GTK_TREE_VIEW_COLUMN(column), in init_left_tree() 241 gtk_tree_view_column_set_attributes(GTK_TREE_VIEW_COLUMN(column), in init_left_tree() 248 gtk_tree_view_column_pack_start(GTK_TREE_VIEW_COLUMN(column), in init_left_tree() 250 gtk_tree_view_column_set_attributes(GTK_TREE_VIEW_COLUMN(column), in init_left_tree() 270 GtkTreeViewColumn *column; in init_right_tree() local 277 column = gtk_tree_view_column_new(); in init_right_tree() [all …]
|
D | qconf.h | 195 void paintCell(QPainter* p, const QColorGroup& cg, int column, int width, int align);
|
D | qconf.cc | 253 void ConfigItem::paintCell(QPainter* p, const QColorGroup& cg, int column, int width, int align) in paintCell() argument 259 Parent::paintCell(p, list->inactivedColorGroup, column, width, align); in paintCell() 261 Parent::paintCell(p, cg, column, width, align); in paintCell() 263 Parent::paintCell(p, list->disabledColorGroup, column, width, align); in paintCell()
|
D | zconf.lex.c_shipped | 244 int yy_bs_column; /**< The column count. */ 1873 * In that case, we don't want to reset the lineno or column.
|
/linux-4.1.27/scripts/coccinelle/misc/ |
D | ifcol.cocci | 6 /// This has a high rate of false positives, because Coccinelle's column 8 /// is not visually aligned may be considered to be in the same column. 37 if (p1[0].column == p2[0].column): 46 if (p1[0].column == p2[0].column):
|
D | doubleinit.cocci | 39 … int(pr[0].line) or (int(ps[0].line) == int(pr[0].line) and int(ps[0].column) < int(pr[0].column)): 51 … int(pr[0].line) or (int(ps[0].line) == int(pr[0].line) and int(ps[0].column) < int(pr[0].column)):
|
/linux-4.1.27/Documentation/devicetree/bindings/input/ |
D | samsung-keypad.txt | 4 keypad device. The keypad controller supports multiple row and column lines. 5 A key can be placed at each intersection of a unique row and a unique column. 25 - samsung,keypad-num-columns: Number of column lines connected to the 32 - keypad,column: the column number to which the key is connected. 59 keypad,column = <3>; 65 keypad,column = <4>; 71 keypad,column = <5>;
|
D | gpio-matrix-keypad.txt | 4 The matrix keypad supports multiple row and column lines, a key can be 5 placed at each intersection of a unique row and a unique column. The matrix 14 - col-gpios: List of gpios used as column lines. The gpio specifier 16 which these column lines are connected. 25 before we can scan keypad after activating column gpio
|
D | matrix-keymap.txt | 7 of row, column and linux key-code. The 32-bit big endian cell is packed 9 row << 24 | column << 16 | key-code 15 - keypad,num-columns: Number of column lines connected to the keypad
|
D | nvidia,tegra20-kbc.txt | 3 can be configured as row or column. The maximum column pin can be 8 12 - nvidia,kbc-col-pins: The KBC pins which are configured as column. This is an 13 array of pin numbers which is used as column.
|
D | brcm,bcm-keypad.txt | 4 keypad device. The keypad controller supports multiple row and column lines. 5 A key can be placed at each intersection of a unique row and a unique column. 26 - keypad,num-columns: Number of column lines connected to the 52 column is being used as output. If specified the row is being used 53 as the output. Else defaults to column.
|
D | omap-keypad.txt | 4 keypad device. The keypad controller supports multiple row and column lines. 5 A key can be placed at each intersection of a unique row and a unique column.
|
D | twl4030-keypad.txt | 4 keypad device. The keypad controller supports multiple row and column lines. 5 A key can be placed at each intersection of a unique row and a unique column.
|
D | st-keyscan.txt | 24 - keypad,num-columns: Number of column lines connected to the keypad
|
/linux-4.1.27/tools/perf/ui/ |
D | browser.c | 604 void __ui_browser__vline(struct ui_browser *browser, unsigned int column, in __ui_browser__vline() argument 608 ui_browser__gotorc(browser, start, column); in __ui_browser__vline() 622 unsigned int column, in __ui_browser__line_arrow_up() argument 631 ui_browser__gotorc(browser, row, column); in __ui_browser__line_arrow_up() 633 ui_browser__gotorc(browser, row, column + 1); in __ui_browser__line_arrow_up() 646 ui_browser__gotorc(browser, end_row, column); in __ui_browser__line_arrow_up() 649 ui_browser__gotorc(browser, end_row, column); in __ui_browser__line_arrow_up() 652 ui_browser__gotorc(browser, end_row, column + 1); in __ui_browser__line_arrow_up() 654 ui_browser__gotorc(browser, end_row, column + 2); in __ui_browser__line_arrow_up() 662 unsigned int column, in __ui_browser__line_arrow_down() argument [all …]
|
D | browser.h | 41 void __ui_browser__line_arrow(struct ui_browser *browser, unsigned int column, 52 void __ui_browser__vline(struct ui_browser *browser, unsigned int column,
|
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmfmac/ |
D | firmware.c | 56 u32 column; member 92 nvp->line, nvp->column); in brcmf_nvram_handle_idle() 94 nvp->column++; in brcmf_nvram_handle_idle() 113 nvp->line, nvp->column); in brcmf_nvram_handle_key() 117 nvp->column++; in brcmf_nvram_handle_key() 144 nvp->column++; in brcmf_nvram_handle_value() 160 nvp->column = 1; in brcmf_nvram_handle_comment() 191 nvp->column = 1; in brcmf_init_nvram_parser()
|
/linux-4.1.27/drivers/mtd/onenand/ |
D | onenand_base.c | 1023 static int onenand_transfer_auto_oob(struct mtd_info *mtd, uint8_t *buf, int column, in onenand_transfer_auto_oob() argument 1028 int readcol = column; in onenand_transfer_auto_oob() 1029 int readend = column + thislen; in onenand_transfer_auto_oob() 1052 } else if (column == 0) in onenand_transfer_auto_oob() 1119 int read = 0, column, thislen; in onenand_mlc_read_ops_nolock() local 1150 column = from & (writesize - 1); in onenand_mlc_read_ops_nolock() 1151 if (column + thislen > writesize) in onenand_mlc_read_ops_nolock() 1152 thislen = writesize - column; in onenand_mlc_read_ops_nolock() 1167 this->read_bufferram(mtd, ONENAND_DATARAM, buf, column, thislen); in onenand_mlc_read_ops_nolock() 1224 int read = 0, column, thislen; in onenand_read_ops_nolock() local [all …]
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-diff.txt | 45 of the Baseline/Delta column. See --percentage for more info. 51 of the Baseline/Delta column. See --percentage for more info. 57 of the Baseline/Delta column. See --percentage for more info. 102 Specify compute sorting column number. 120 baseline entry, are displayed with empty space within baseline column 121 and possible computation results (delta) in their related column. 169 If specified the 'Delta' column is displayed with value 'd' computed as: 186 If specified the 'Ratio' column is displayed with value 'r' computed as: 198 If specified the 'Weighted diff' column is displayed with value 'd' computed as:
|
D | perf-top.txt | 133 Show a column with the number of samples. 136 Show a column with the sum of periods. 140 percentage of the overhead column. See --percentage for more info. 144 percentage of the overhead column. See --percentage for more info. 148 percentage of the overhead column. See --percentage for more info. 169 show up in the output. The output will have a new "Children" column 200 --column-widths=<width[,width...]>:: 201 Force each column width to the provided list, for large terminal
|
D | perf-report.txt | 42 the overhead column. See --percentage for more info. 52 the overhead column. See --percentage for more info. 57 the overhead column. See --percentage for more info. 153 --column-widths=<width[,width...]>:: 154 Force each column width to the provided list, for large terminal 172 - flat: single column, linear exposure of call chains. 194 show up in the output. The output will have a new "Children" column 261 --show-total-period:: Show a column with the sum of periods.
|
/linux-4.1.27/drivers/staging/mt29f_spinand/ |
D | mt29f_spinand.c | 327 u16 column; in spinand_read_from_cache() local 329 column = byte_id; in spinand_read_from_cache() 332 cmd.addr[0] = (u8)((column & 0xff00) >> 8); in spinand_read_from_cache() 334 cmd.addr[1] = (u8)(column & 0x00ff); in spinand_read_from_cache() 425 u16 column; in spinand_program_data_to_cache() local 427 column = byte_id; in spinand_program_data_to_cache() 430 cmd.addr[0] = (u8)((column & 0xff00) >> 8); in spinand_program_data_to_cache() 432 cmd.addr[1] = (u8)(column & 0x00ff); in spinand_program_data_to_cache() 748 int column, int page) in spinand_cmdfunc() argument 769 state->buf_ptr = column; in spinand_cmdfunc() [all …]
|
/linux-4.1.27/drivers/tty/ |
D | n_tty.c | 123 unsigned int column; member 454 ldata->column = 0; in do_output_char() 458 ldata->canon_column = ldata->column = 0; in do_output_char() 462 ldata->canon_column = ldata->column; in do_output_char() 465 if (O_ONOCR(tty) && ldata->column == 0) in do_output_char() 470 ldata->canon_column = ldata->column = 0; in do_output_char() 473 ldata->canon_column = ldata->column = 0; in do_output_char() 476 spaces = 8 - (ldata->column & 7); in do_output_char() 480 ldata->column += spaces; in do_output_char() 484 ldata->column += spaces; in do_output_char() [all …]
|
/linux-4.1.27/Documentation/timers/ |
D | timer_stats.txt | 63 The first column is the number of events, the second column the pid, the third 64 column is the name of the process. The forth column shows the function which
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/mvm/ |
D | rs.c | 699 if (tbl->column != RS_COLUMN_INVALID) { in rs_collect_tx_data() 702 pers->tx_stats[tbl->column][scale_index].total += attempts; in rs_collect_tx_data() 703 pers->tx_stats[tbl->column][scale_index].success += successes; in rs_collect_tx_data() 1155 enum rs_column column; in iwl_mvm_rs_tx_status() local 1158 column = rs_get_column_from_rate(&tx_resp_rate); in iwl_mvm_rs_tx_status() 1159 if (WARN_ONCE(column == RS_COLUMN_INVALID, in iwl_mvm_rs_tx_status() 1172 lq_sta->pers.tx_stats[column][index].total += attempts; in iwl_mvm_rs_tx_status() 1173 lq_sta->pers.tx_stats[column][index].success += success; in iwl_mvm_rs_tx_status() 1387 const struct rs_tx_column *column) in rs_get_max_allowed_rate() argument 1389 switch (column->mode) { in rs_get_max_allowed_rate() [all …]
|
D | rs.h | 265 enum rs_column column; member
|
/linux-4.1.27/drivers/net/wireless/ath/ath9k/ |
D | calib.h | 48 #define INI_RA(iniarray, row, column) \ argument 49 (((iniarray)->ia_array)[(row) * ((iniarray)->ia_columns) + (column)])
|
D | hw.h | 139 #define REG_WRITE_ARRAY(iniarray, column, regWr) \ argument 140 ath9k_hw_write_array(ah, iniarray, column, &(regWr)) 1035 int column, unsigned int *writecnt);
|
D | ar5008_phy.c | 93 u32 column) in ar5008_hw_phy_modify_rx_buffer() argument 106 (column * 8); in ar5008_hw_phy_modify_rx_buffer() 109 (column * 8)) & mask; in ar5008_hw_phy_modify_rx_buffer()
|
D | ar9003_phy.c | 769 int column) in ar9003_hw_prog_ini() argument 782 if (column >= iniArr->ia_columns) in ar9003_hw_prog_ini() 783 column = 1; in ar9003_hw_prog_ini() 787 u32 val = INI_RA(iniArr, i, column); in ar9003_hw_prog_ini()
|
D | hw.c | 112 int column, unsigned int *writecnt) in ath9k_hw_write_array() argument 119 INI_RA(array, r, column)); in ath9k_hw_write_array()
|
/linux-4.1.27/tools/perf/ui/gtk/ |
D | hists.c | 208 GtkTreeViewColumn *column; in perf_gtk__show_hists() local 210 column = gtk_tree_view_get_column(GTK_TREE_VIEW(view), col_idx); in perf_gtk__show_hists() 211 gtk_tree_view_column_set_resizable(column, TRUE); in perf_gtk__show_hists() 215 column); in perf_gtk__show_hists()
|
/linux-4.1.27/fs/hfsplus/ |
D | btree.c | 79 int column; in hfsplus_calc_btree_clump_size() local 85 column = 0; in hfsplus_calc_btree_clump_size() 88 column = 1; in hfsplus_calc_btree_clump_size() 91 column = 2; in hfsplus_calc_btree_clump_size() 111 clump_size = clumptbl[column + (i) * 3] * 1024 * 1024; in hfsplus_calc_btree_clump_size()
|
/linux-4.1.27/include/linux/ |
D | cper.h | 355 __u16 column; member 375 __u16 column; member 395 __u16 column; member
|
/linux-4.1.27/Documentation/acpi/ |
D | namespace.txt | 231 indicated by the letter in the first column and the notation in the 232 second column of the table above): 235 named object's type in the second column). In that case the object's 241 column), so its sysfs directory will not contain the 'path' 246 device's type in the second column). The 'path' attribute containing 252 The third column of the above table indicates which ACPI System 257 The forth column of the above table indicates the 'bus_id' generation 260 _HID in the last column of the table means that the object's bus_id 270 'device' in the last column of the table indicates that the object's
|
/linux-4.1.27/drivers/staging/speakup/ |
D | DefaultKeyAssignments | 38 InsKeyPad-star n<x|y> go to line (y) or column (x). Where 'n' is any 39 allowed value for the row or column for your current screen.
|
D | spkguide.txt | 1099 indicated row and column position. Then move the reading cursor to the 1102 that the window ends at the indicated row and column position. If there
|
/linux-4.1.27/drivers/mtd/nand/bcm47xxnflash/ |
D | ops_bcm4706.c | 216 unsigned command, int column, in bcm47xxnflash_ops_bcm4706_cmdfunc() argument 225 if (column != -1) in bcm47xxnflash_ops_bcm4706_cmdfunc() 226 b47n->curr_column = column; in bcm47xxnflash_ops_bcm4706_cmdfunc()
|
/linux-4.1.27/net/mac80211/ |
D | rc80211_minstrel_ht.h | 53 u8 column; member
|
D | rc80211_minstrel_ht.c | 643 if (++mg->column >= ARRAY_SIZE(sample_table)) in minstrel_set_next_sample_idx() 644 mg->column = 0; in minstrel_set_next_sample_idx() 932 sample_idx = sample_table[mg->column][mg->index]; in minstrel_get_sample_rate()
|
/linux-4.1.27/drivers/firmware/efi/ |
D | cper.c | 234 n += scnprintf(msg + n, len - n, "column: %d ", mem->column); in cper_mem_err_location() 284 cmem->column = mem->column; in cper_mem_err_pack()
|
/linux-4.1.27/drivers/uwb/ |
D | allocator.c | 223 static void uwb_rsv_fill_column_info(unsigned char *bm, int column, struct uwb_rsv_col_info *rci) in uwb_rsv_fill_column_info() argument 236 if (!bm[column * UWB_NUM_ZONES + mas]) { in uwb_rsv_fill_column_info()
|
/linux-4.1.27/Documentation/cpu-freq/ |
D | cpufreq-stats.txt | 82 <i,j> (row i, column j) represents the count of number of transitions from 85 contains the actual freq values for each row and column for better readability.
|
/linux-4.1.27/Documentation/ |
D | coccinelle.txt | 54 file:line:column-column: message 174 file:line:column-column: message
|
D | edac.txt | 681 column (or col) = the address column. 687 any bank, any page, any column:
|
D | CodingStyle | 39 to align the "switch" and its subordinate "case" labels in the same column 474 * Description: A column of asterisks on the left side, 509 (column (c-langelem-2nd-pos c-syntactic-element)) 510 (offset (- (1+ column) anchor))
|
D | kprobes.txt | 696 The first column provides the kernel address where the probe is inserted. 697 The second column identifies the type of probe (k - kprobe, r - kretprobe 698 and j - jprobe), while the third column specifies the symbol+offset of
|
D | dynamic-debug-howto.txt | 78 The third column shows the currently enabled flags for each debug
|
D | memory-hotplug.txt | 176 The first column shows it's default zone.
|
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb/ |
D | vsc7326.c | 303 int column=0; in check_bist() local 306 column = ((bist_rd(adapter,moduleid, 0x0e)<<8) + in check_bist() 310 result, moduleid, column); in check_bist()
|
/linux-4.1.27/Documentation/locking/ |
D | lockstat.txt | 120 show the header with column descriptions. Lines 05-18 and 20-31 show the actual 130 short separator. The contention points don't match the column descriptors,
|
/linux-4.1.27/arch/x86/math-emu/ |
D | README | 174 ms-dos extender. The final column is for wm-FPU-emu in Linux 0.97, 350 result of the given accuracy in bits (given in the left-most column) 352 two columns of results are given: * The second column for f2xm1 gives 353 the number cases where the results of the first column were for a 356 cases of fcos and fptan, the first column gives the results when all 358 given in the second column. Unlike the emulator, an 80486 FPU returns
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | OSS-Emulation.txt | 242 The second column is the base-string of the corresponding ALSA 256 where the first column is the OSS volume element, the second column
|
/linux-4.1.27/arch/ia64/include/asm/ |
D | sal.h | 459 column : 1, member 478 u16 column; member
|
/linux-4.1.27/arch/powerpc/boot/dts/ |
D | mpc832x_mds.dts | 19 * Note that there's a typo in the schematic. The board labels the last column 20 * of pins "P19K", but in the schematic, that column is called "P19J". So if
|
/linux-4.1.27/Documentation/acpi/apei/ |
D | output_format.txt | 70 [column: <integer>]
|
/linux-4.1.27/Documentation/mtd/ |
D | nand_ecc.txt | 53 cp is my abbreviation for column parity, rp for row parity. 55 Let's start to explain column parity. 159 For the column parity this is easy. We can just xor the bytes and in the 273 for the column parity we use the par variable. When extending to 32 bits 326 long; also the column parity calculation needs to be changed.
|
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/ |
D | atmel,at91-pinctrl.txt | 28 Each column will represent the possible peripheral of the pinctrl
|
/linux-4.1.27/drivers/input/keyboard/ |
D | Kconfig | 118 in the left-hand column will be interpreted as the corresponding key 119 in the right-hand column. 122 right-hand column will be interpreted as the key shown in the 123 left-hand column.
|
/linux-4.1.27/drivers/gpu/drm/i915/ |
D | i915_gem_gtt.c | 2609 unsigned int column, row; in rotate_pages() local 2615 for (column = 0; column < width; column++) { in rotate_pages() 2616 src_idx = width * (height - 1) + column; in rotate_pages()
|
/linux-4.1.27/Documentation/filesystems/nfs/ |
D | nfs41-server.txt | 30 in minor version 1. The first column indicates the operations that
|
/linux-4.1.27/drivers/mtd/nand/gpmi-nand/ |
D | gpmi-nand.c | 1545 int column, page, status, chipnr; in gpmi_block_markbad() local 1550 column = !GPMI_IS_MX23(this) ? mtd->writesize : 0; in gpmi_block_markbad() 1559 chip->cmdfunc(mtd, NAND_CMD_SEQIN, column, page); in gpmi_block_markbad()
|
/linux-4.1.27/Documentation/hwmon/ |
D | dme1737 | 71 (the last column indicates the input ranges): 122 (the last column indicates the input ranges):
|
/linux-4.1.27/drivers/edac/ |
D | ghes_edac.c | 324 p += sprintf(p, "col:%d ", mem_err->column); in ghes_edac_report_mem_error()
|
/linux-4.1.27/Documentation/trace/ |
D | uprobetracer.txt | 65 The first column is event name, the second is the number of probe hits,
|
D | kprobetrace.txt | 91 The first column is event name, the second is the number of probe hits,
|
/linux-4.1.27/Documentation/zh_CN/ |
D | CodingStyle | 401 * Description: A column of asterisks on the left side,
|
/linux-4.1.27/drivers/acpi/acpica/ |
D | aclocal.h | 774 u32 column; member
|
/linux-4.1.27/include/linux/mtd/ |
D | nand.h | 659 void (*cmdfunc)(struct mtd_info *mtd, unsigned command, int column,
|
/linux-4.1.27/Documentation/filesystems/caching/ |
D | fscache.txt | 327 Each step is 1 jiffy in size. The JIFS column indicates the particular 375 OBJECT_KEY Object key } 1 column, with separating comma
|
D | cachefiles.txt | 475 Each step is 1 jiffy in size. The JIFS column indicates the particular
|
/linux-4.1.27/drivers/mtd/devices/ |
D | Kconfig | 28 column and row mux values. This option will fix them, but will
|
/linux-4.1.27/tools/perf/ui/browsers/ |
D | hists.c | 113 static void hist_browser__gotorc(struct hist_browser *browser, int row, int column) in hist_browser__gotorc() argument 117 ui_browser__gotorc(&browser->b, row + header_offset, column); in hist_browser__gotorc()
|
/linux-4.1.27/Documentation/filesystems/ |
D | gfs2-glocks.txt | 218 for each type) and for each cpu (one column per cpu). The glstats file contains
|
D | proc.txt | 752 Each column represents the number of pages of a certain order which are 1292 of the possible system interrupts. The first column is the total of all 1294 each subsequent column is the total for that particular numbered interrupt. 1313 of the possible system softirqs. The first column is the total of all 1314 softirqs serviced; each subsequent column is the total for that particular
|
/linux-4.1.27/scripts/genksyms/ |
D | lex.lex.c_shipped | 225 int yy_bs_column; /**< The column count. */ 1478 * In that case, we don't want to reset the lineno or column.
|
/linux-4.1.27/scripts/dtc/ |
D | dtc-lexer.lex.c_shipped | 235 int yy_bs_column; /**< The column count. */ 1741 * In that case, we don't want to reset the lineno or column.
|
/linux-4.1.27/Documentation/scsi/ |
D | tmscsim.txt | 233 output of /proc/scsi/tmscsim/? in the device listing in the first column
|
D | ChangeLog.lpfc | 1417 lines to 80 column max.. 1427 to 80 column max. 1512 * Clean up formatting of elx_sli.h (tabs for indents, 80 column
|
D | ChangeLog.1992-1997 | 90 (especially on 80 column wide terminals).
|
/linux-4.1.27/Documentation/development-process/ |
D | 4.Coding | 54 80-column limit, for example), just do it.
|
/linux-4.1.27/drivers/gpu/drm/radeon/ |
D | si_dpm.c | 3146 u32 tmp, width, row, column, bank, density; in si_is_special_1gb_platform() local 3159 column = ((tmp & NOOFCOLS_MASK) >> NOOFCOLS_SHIFT) + 8; in si_is_special_1gb_platform() 3162 density = (1 << (row + column - 20 + bank)) * width; in si_is_special_1gb_platform()
|
/linux-4.1.27/drivers/scsi/mpt2sas/ |
D | mpt2sas_scsih.c | 3845 sector_t v_lba, p_lba, stripe_off, column, io_size; in _scsih_setup_direct_io() local 3873 column = sector_div(p_lba, num_pds); in _scsih_setup_direct_io() 3876 mpi_request->DevHandle = cpu_to_le16(raid_device->pd_handle[column]); in _scsih_setup_direct_io()
|
/linux-4.1.27/Documentation/networking/ |
D | filter.txt | 245 The next table shows addressing formats from the 2nd column:
|