/linux-4.4.14/drivers/net/dsa/ |
D | mv88e6xxx.c | 27 static void assert_smi_lock(struct dsa_switch *ds) in assert_smi_lock() argument 29 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds); in assert_smi_lock() 32 dev_err(ds->master_dev, "SMI lock not held!\n"); in assert_smi_lock() 94 static int _mv88e6xxx_reg_read(struct dsa_switch *ds, int addr, int reg) in _mv88e6xxx_reg_read() argument 96 struct mii_bus *bus = dsa_host_dev_to_mii_bus(ds->master_dev); in _mv88e6xxx_reg_read() 99 assert_smi_lock(ds); in _mv88e6xxx_reg_read() 104 ret = __mv88e6xxx_reg_read(bus, ds->pd->sw_addr, addr, reg); in _mv88e6xxx_reg_read() 108 dev_dbg(ds->master_dev, "<- addr: 0x%.2x reg: 0x%.2x val: 0x%.4x\n", in _mv88e6xxx_reg_read() 114 int mv88e6xxx_reg_read(struct dsa_switch *ds, int addr, int reg) in mv88e6xxx_reg_read() argument 116 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds); in mv88e6xxx_reg_read() [all …]
|
D | mv88e6352.c | 45 static int mv88e6352_setup_global(struct dsa_switch *ds) in mv88e6352_setup_global() argument 47 u32 upstream_port = dsa_upstream_port(ds); in mv88e6352_setup_global() 51 ret = mv88e6xxx_setup_global(ds); in mv88e6352_setup_global() 73 REG_WRITE(REG_GLOBAL, 0x1c, ds->index & 0x1f); in mv88e6352_setup_global() 78 static int mv88e6352_setup(struct dsa_switch *ds) in mv88e6352_setup() argument 80 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds); in mv88e6352_setup() 83 ret = mv88e6xxx_setup_common(ds); in mv88e6352_setup() 91 ret = mv88e6xxx_switch_reset(ds, true); in mv88e6352_setup() 95 ret = mv88e6352_setup_global(ds); in mv88e6352_setup() 99 return mv88e6xxx_setup_ports(ds); in mv88e6352_setup() [all …]
|
D | mv88e6131.c | 34 static int mv88e6131_setup_global(struct dsa_switch *ds) in mv88e6131_setup_global() argument 36 u32 upstream_port = dsa_upstream_port(ds); in mv88e6131_setup_global() 40 ret = mv88e6xxx_setup_global(ds); in mv88e6131_setup_global() 68 if (ds->dst->pd->nr_chips > 1) in mv88e6131_setup_global() 71 (ds->index & 0x1f)); in mv88e6131_setup_global() 75 (ds->index & 0x1f)); in mv88e6131_setup_global() 89 static int mv88e6131_setup(struct dsa_switch *ds) in mv88e6131_setup() argument 91 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds); in mv88e6131_setup() 94 ret = mv88e6xxx_setup_common(ds); in mv88e6131_setup() 98 mv88e6xxx_ppu_state_init(ds); in mv88e6131_setup() [all …]
|
D | mv88e6060.c | 20 static int reg_read(struct dsa_switch *ds, int addr, int reg) in reg_read() argument 22 struct mii_bus *bus = dsa_host_dev_to_mii_bus(ds->master_dev); in reg_read() 27 return mdiobus_read_nested(bus, ds->pd->sw_addr + addr, reg); in reg_read() 34 __ret = reg_read(ds, addr, reg); \ 41 static int reg_write(struct dsa_switch *ds, int addr, int reg, u16 val) in reg_write() argument 43 struct mii_bus *bus = dsa_host_dev_to_mii_bus(ds->master_dev); in reg_write() 48 return mdiobus_write_nested(bus, ds->pd->sw_addr + addr, reg, val); in reg_write() 55 __ret = reg_write(ds, addr, reg, val); \ 82 static int mv88e6060_switch_reset(struct dsa_switch *ds) in mv88e6060_switch_reset() argument 119 static int mv88e6060_setup_global(struct dsa_switch *ds) in mv88e6060_setup_global() argument [all …]
|
D | mv88e6xxx.h | 429 int mv88e6xxx_switch_reset(struct dsa_switch *ds, bool ppu_active); 433 int mv88e6xxx_setup_ports(struct dsa_switch *ds); 434 int mv88e6xxx_setup_common(struct dsa_switch *ds); 435 int mv88e6xxx_setup_global(struct dsa_switch *ds); 436 int mv88e6xxx_reg_read(struct dsa_switch *ds, int addr, int reg); 437 int mv88e6xxx_reg_write(struct dsa_switch *ds, int addr, int reg, u16 val); 438 int mv88e6xxx_set_addr_direct(struct dsa_switch *ds, u8 *addr); 439 int mv88e6xxx_set_addr_indirect(struct dsa_switch *ds, u8 *addr); 440 int mv88e6xxx_phy_read(struct dsa_switch *ds, int port, int regnum); 441 int mv88e6xxx_phy_write(struct dsa_switch *ds, int port, int regnum, u16 val); [all …]
|
D | bcm_sf2.c | 95 static void bcm_sf2_sw_get_strings(struct dsa_switch *ds, in bcm_sf2_sw_get_strings() argument 105 static void bcm_sf2_sw_get_ethtool_stats(struct dsa_switch *ds, in bcm_sf2_sw_get_ethtool_stats() argument 108 struct bcm_sf2_priv *priv = ds_to_priv(ds); in bcm_sf2_sw_get_ethtool_stats() 133 static int bcm_sf2_sw_get_sset_count(struct dsa_switch *ds) in bcm_sf2_sw_get_sset_count() argument 143 static void bcm_sf2_imp_vlan_setup(struct dsa_switch *ds, int cpu_port) in bcm_sf2_imp_vlan_setup() argument 145 struct bcm_sf2_priv *priv = ds_to_priv(ds); in bcm_sf2_imp_vlan_setup() 154 if (!((1 << i) & ds->phys_port_mask)) in bcm_sf2_imp_vlan_setup() 163 static void bcm_sf2_imp_setup(struct dsa_switch *ds, int port) in bcm_sf2_imp_setup() argument 165 struct bcm_sf2_priv *priv = ds_to_priv(ds); in bcm_sf2_imp_setup() 228 static void bcm_sf2_eee_enable_set(struct dsa_switch *ds, int port, bool enable) in bcm_sf2_eee_enable_set() argument [all …]
|
D | mv88e6123_61_65.c | 38 static int mv88e6123_61_65_setup_global(struct dsa_switch *ds) in mv88e6123_61_65_setup_global() argument 40 u32 upstream_port = dsa_upstream_port(ds); in mv88e6123_61_65_setup_global() 44 ret = mv88e6xxx_setup_global(ds); in mv88e6123_61_65_setup_global() 66 REG_WRITE(REG_GLOBAL, GLOBAL_CONTROL_2, ds->index & 0x1f); in mv88e6123_61_65_setup_global() 71 static int mv88e6123_61_65_setup(struct dsa_switch *ds) in mv88e6123_61_65_setup() argument 73 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds); in mv88e6123_61_65_setup() 76 ret = mv88e6xxx_setup_common(ds); in mv88e6123_61_65_setup() 92 ret = mv88e6xxx_switch_reset(ds, false); in mv88e6123_61_65_setup() 96 ret = mv88e6123_61_65_setup_global(ds); in mv88e6123_61_65_setup() 100 return mv88e6xxx_setup_ports(ds); in mv88e6123_61_65_setup()
|
D | mv88e6171.c | 33 static int mv88e6171_setup_global(struct dsa_switch *ds) in mv88e6171_setup_global() argument 35 u32 upstream_port = dsa_upstream_port(ds); in mv88e6171_setup_global() 39 ret = mv88e6xxx_setup_global(ds); in mv88e6171_setup_global() 62 REG_WRITE(REG_GLOBAL, GLOBAL_CONTROL_2, ds->index & 0x1f); in mv88e6171_setup_global() 67 static int mv88e6171_setup(struct dsa_switch *ds) in mv88e6171_setup() argument 69 struct mv88e6xxx_priv_state *ps = ds_to_priv(ds); in mv88e6171_setup() 72 ret = mv88e6xxx_setup_common(ds); in mv88e6171_setup() 78 ret = mv88e6xxx_switch_reset(ds, true); in mv88e6171_setup() 82 ret = mv88e6171_setup_global(ds); in mv88e6171_setup() 86 return mv88e6xxx_setup_ports(ds); in mv88e6171_setup()
|
/linux-4.4.14/include/net/ |
D | dsa.h | 121 struct dsa_switch *ds[DSA_MAX_SWITCHES]; member 169 static inline bool dsa_is_cpu_port(struct dsa_switch *ds, int p) in dsa_is_cpu_port() argument 171 return !!(ds->index == ds->dst->cpu_switch && p == ds->dst->cpu_port); in dsa_is_cpu_port() 174 static inline bool dsa_is_dsa_port(struct dsa_switch *ds, int p) in dsa_is_dsa_port() argument 176 return !!((ds->dsa_port_mask) & (1 << p)); in dsa_is_dsa_port() 179 static inline bool dsa_is_port_initialized(struct dsa_switch *ds, int p) in dsa_is_port_initialized() argument 181 return ds->phys_port_mask & (1 << p) && ds->ports[p]; in dsa_is_port_initialized() 184 static inline u8 dsa_upstream_port(struct dsa_switch *ds) in dsa_upstream_port() argument 186 struct dsa_switch_tree *dst = ds->dst; in dsa_upstream_port() 194 if (dst->cpu_switch == ds->index) in dsa_upstream_port() [all …]
|
/linux-4.4.14/drivers/acpi/ |
D | dock.c | 91 static int add_dock_dependent_device(struct dock_station *ds, in add_dock_dependent_device() argument 102 list_add_tail(&dd->list, &ds->dependent_devices); in add_dock_dependent_device() 152 struct dock_station *ds; in find_dock_station() local 154 list_for_each_entry(ds, &dock_stations, sibling) in find_dock_station() 155 if (ds->handle == handle) in find_dock_station() 156 return ds; in find_dock_station() 170 find_dock_dependent_device(struct dock_station *ds, struct acpi_device *adev) in find_dock_dependent_device() argument 174 list_for_each_entry(dd, &ds->dependent_devices, list) in find_dock_dependent_device() 184 struct dock_station *ds = find_dock_station(dshandle); in register_dock_dependent_device() local 186 if (ds && !find_dock_dependent_device(ds, adev)) in register_dock_dependent_device() [all …]
|
/linux-4.4.14/net/dsa/ |
D | slave.c | 27 struct dsa_switch *ds = bus->priv; in dsa_slave_phy_read() local 29 if (ds->phys_mii_mask & (1 << addr)) in dsa_slave_phy_read() 30 return ds->drv->phy_read(ds, addr, reg); in dsa_slave_phy_read() 37 struct dsa_switch *ds = bus->priv; in dsa_slave_phy_write() local 39 if (ds->phys_mii_mask & (1 << addr)) in dsa_slave_phy_write() 40 return ds->drv->phy_write(ds, addr, reg, val); in dsa_slave_phy_write() 45 void dsa_slave_mii_bus_init(struct dsa_switch *ds) in dsa_slave_mii_bus_init() argument 47 ds->slave_mii_bus->priv = (void *)ds; in dsa_slave_mii_bus_init() 48 ds->slave_mii_bus->name = "dsa slave smi"; in dsa_slave_mii_bus_init() 49 ds->slave_mii_bus->read = dsa_slave_phy_read; in dsa_slave_mii_bus_init() [all …]
|
D | dsa.c | 87 struct dsa_switch *ds = dev_get_drvdata(dev); in temp1_input_show() local 90 ret = ds->drv->get_temp(ds, &temp); in temp1_input_show() 101 struct dsa_switch *ds = dev_get_drvdata(dev); in temp1_max_show() local 104 ret = ds->drv->get_temp_limit(ds, &temp); in temp1_max_show() 115 struct dsa_switch *ds = dev_get_drvdata(dev); in temp1_max_store() local 122 ret = ds->drv->set_temp_limit(ds, DIV_ROUND_CLOSEST(temp, 1000)); in temp1_max_store() 133 struct dsa_switch *ds = dev_get_drvdata(dev); in temp1_max_alarm_show() local 137 ret = ds->drv->get_temp_alarm(ds, &alarm); in temp1_max_alarm_show() 156 struct dsa_switch *ds = dev_get_drvdata(dev); in dsa_hwmon_attrs_visible() local 157 struct dsa_switch_driver *drv = ds->drv; in dsa_hwmon_attrs_visible() [all …]
|
D | tag_trailer.c | 64 struct dsa_switch *ds; in trailer_rcv() local 70 ds = dst->ds[0]; in trailer_rcv() 85 if (source_port >= DSA_MAX_PORTS || ds->ports[source_port] == NULL) in trailer_rcv() 90 skb->dev = ds->ports[source_port]; in trailer_rcv()
|
D | tag_brcm.c | 98 struct dsa_switch *ds; in brcm_tag_rcv() local 105 ds = dst->ds[0]; in brcm_tag_rcv() 130 if (source_port >= DSA_MAX_PORTS || ds->ports[source_port] == NULL) in brcm_tag_rcv() 143 skb->dev = ds->ports[source_port]; in brcm_tag_rcv()
|
D | tag_dsa.c | 74 struct dsa_switch *ds; in dsa_rcv() local 112 ds = dst->ds[source_device]; in dsa_rcv() 113 if (source_port >= DSA_MAX_PORTS || ds->ports[source_port] == NULL) in dsa_rcv() 162 skb->dev = ds->ports[source_port]; in dsa_rcv()
|
D | tag_edsa.c | 87 struct dsa_switch *ds; in edsa_rcv() local 125 ds = dst->ds[source_device]; in edsa_rcv() 126 if (source_port >= DSA_MAX_PORTS || ds->ports[source_port] == NULL) in edsa_rcv() 181 skb->dev = ds->ports[source_port]; in edsa_rcv()
|
D | dsa_priv.h | 61 void dsa_slave_mii_bus_init(struct dsa_switch *ds); 62 int dsa_slave_create(struct dsa_switch *ds, struct device *parent,
|
/linux-4.4.14/drivers/md/ |
D | dm-bio-prison.c | 291 struct dm_deferred_set *ds; member 306 struct dm_deferred_set *ds; in dm_deferred_set_create() local 308 ds = kmalloc(sizeof(*ds), GFP_KERNEL); in dm_deferred_set_create() 309 if (!ds) in dm_deferred_set_create() 312 spin_lock_init(&ds->lock); in dm_deferred_set_create() 313 ds->current_entry = 0; in dm_deferred_set_create() 314 ds->sweeper = 0; in dm_deferred_set_create() 316 ds->entries[i].ds = ds; in dm_deferred_set_create() 317 ds->entries[i].count = 0; in dm_deferred_set_create() 318 INIT_LIST_HEAD(&ds->entries[i].work_items); in dm_deferred_set_create() [all …]
|
D | dm-bio-prison.h | 130 void dm_deferred_set_destroy(struct dm_deferred_set *ds); 132 struct dm_deferred_entry *dm_deferred_entry_inc(struct dm_deferred_set *ds); 134 int dm_deferred_set_add_work(struct dm_deferred_set *ds, struct list_head *work);
|
/linux-4.4.14/fs/nfs/ |
D | pnfs_nfs.c | 74 cinfo->ds->nwritten--; in pnfs_generic_clear_request_commit() 125 cinfo->ds->nwritten -= ret; in pnfs_generic_scan_ds_commit_list() 126 cinfo->ds->ncommitting += ret; in pnfs_generic_scan_ds_commit_list() 146 for (i = 0; i < cinfo->ds->nbuckets && max != 0; i++) { in pnfs_generic_scan_commit_lists() 147 cnt = pnfs_generic_scan_ds_commit_list(&cinfo->ds->buckets[i], in pnfs_generic_scan_commit_lists() 166 for (i = 0, b = cinfo->ds->buckets; i < cinfo->ds->nbuckets; i++, b++) { in pnfs_generic_recover_commit_reqs() 177 cinfo->ds->nwritten = 0; in pnfs_generic_recover_commit_reqs() 183 struct pnfs_ds_commit_info *fl_cinfo = cinfo->ds; in pnfs_generic_retry_commit() 215 fl_cinfo = cinfo->ds; in pnfs_generic_alloc_ds_commits() 240 bucket = &cinfo->ds->buckets[data->ds_commit_index]; in pnfs_fetch_commit_bucket_list() [all …]
|
D | pnfs.h | 354 void nfs4_pnfs_ds_put(struct nfs4_pnfs_ds *ds); 358 void nfs4_pnfs_ds_connect(struct nfs_server *mds_srv, struct nfs4_pnfs_ds *ds, 422 if (cinfo->ds == NULL || cinfo->ds->ncommitting == 0) in pnfs_commit_list() 472 if (cinfo->ds == NULL || cinfo->ds->nwritten == 0) in pnfs_scan_commit_lists()
|
D | direct.c | 286 cinfo->ds = &dreq->ds_cinfo; in nfs_init_cinfo_from_dreq() 643 if (cinfo->ds != NULL && cinfo->ds->nwritten != 0) in nfs_direct_write_scan_commit_list()
|
/linux-4.4.14/fs/logfs/ |
D | super.c | 155 static void logfs_write_ds(struct super_block *sb, struct logfs_disk_super *ds, in logfs_write_ds() argument 159 struct logfs_segment_header *sh = &ds->ds_sh; in logfs_write_ds() 162 memset(ds, 0, sizeof(*ds)); in logfs_write_ds() 165 ds->ds_ifile_levels = super->s_ifile_levels; in logfs_write_ds() 166 ds->ds_iblock_levels = super->s_iblock_levels; in logfs_write_ds() 167 ds->ds_data_levels = super->s_data_levels; /* XXX: Remove */ in logfs_write_ds() 168 ds->ds_segment_shift = super->s_segshift; in logfs_write_ds() 169 ds->ds_block_shift = sb->s_blocksize_bits; in logfs_write_ds() 170 ds->ds_write_shift = super->s_writeshift; in logfs_write_ds() 171 ds->ds_filesystem_size = cpu_to_be64(super->s_size); in logfs_write_ds() [all …]
|
/linux-4.4.14/arch/x86/kernel/cpu/ |
D | perf_event_intel_ds.c | 251 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds; in init_debug_store_on_cpu() local 253 if (!ds) in init_debug_store_on_cpu() 257 (u32)((u64)(unsigned long)ds), in init_debug_store_on_cpu() 258 (u32)((u64)(unsigned long)ds >> 32)); in init_debug_store_on_cpu() 263 if (!per_cpu(cpu_hw_events, cpu).ds) in fini_debug_store_on_cpu() 273 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds; in alloc_pebs_buffer() local 300 ds->pebs_buffer_base = (u64)(unsigned long)buffer; in alloc_pebs_buffer() 301 ds->pebs_index = ds->pebs_buffer_base; in alloc_pebs_buffer() 302 ds->pebs_absolute_maximum = ds->pebs_buffer_base + in alloc_pebs_buffer() 310 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds; in release_pebs_buffer() local [all …]
|
D | perf_event_intel_bts.c | 138 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds; in bts_config_buffer() local 159 ds->bts_buffer_base = (u64)(long)page_address(page) + phys->displacement; in bts_config_buffer() 160 ds->bts_index = ds->bts_buffer_base + index; in bts_config_buffer() 161 ds->bts_absolute_maximum = ds->bts_buffer_base + end; in bts_config_buffer() 162 ds->bts_interrupt_threshold = !buf->snapshot in bts_config_buffer() 163 ? ds->bts_buffer_base + thresh in bts_config_buffer() 164 : ds->bts_absolute_maximum + BTS_RECORD_SIZE; in bts_config_buffer() 189 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds; in bts_update() local 191 unsigned long index = ds->bts_index - ds->bts_buffer_base, old, head; in bts_update() 203 if (ds->bts_index >= ds->bts_absolute_maximum) in bts_update() [all …]
|
/linux-4.4.14/drivers/dma/ |
D | zx296702_dma.c | 202 struct zx_dma_desc_sw *ds = in zx_dma_start_txd() local 208 list_del(&ds->vd.node); in zx_dma_start_txd() 209 c->phy->ds_run = ds; in zx_dma_start_txd() 212 zx_dma_set_desc(c->phy, ds->desc_hw); in zx_dma_start_txd() 363 struct zx_dma_desc_sw *ds = p->ds_run; in zx_dma_tx_status() local 368 index = (clli - ds->desc_hw_lli) / sizeof(struct zx_desc_hw); in zx_dma_tx_status() 369 for (; index < ds->desc_num; index++) { in zx_dma_tx_status() 370 bytes += ds->desc_hw[index].src_x; in zx_dma_tx_status() 372 if (!ds->desc_hw[index].lli) in zx_dma_tx_status() 408 static void zx_dma_fill_desc(struct zx_dma_desc_sw *ds, dma_addr_t dst, in zx_dma_fill_desc() argument [all …]
|
D | k3dma.c | 242 struct k3_dma_desc_sw *ds = in k3_dma_start_txd() local 248 list_del(&ds->vd.node); in k3_dma_start_txd() 249 c->phy->ds_run = ds; in k3_dma_start_txd() 252 k3_dma_set_desc(c->phy, &ds->desc_hw[0]); in k3_dma_start_txd() 358 struct k3_dma_desc_sw *ds = p->ds_run; in k3_dma_tx_status() local 363 index = (clli - ds->desc_hw_lli) / sizeof(struct k3_desc_hw); in k3_dma_tx_status() 364 for (; index < ds->desc_num; index++) { in k3_dma_tx_status() 365 bytes += ds->desc_hw[index].count; in k3_dma_tx_status() 367 if (!ds->desc_hw[index].lli) in k3_dma_tx_status() 401 static void k3_dma_fill_desc(struct k3_dma_desc_sw *ds, dma_addr_t dst, in k3_dma_fill_desc() argument [all …]
|
D | txx9dmac.c | 337 struct txx9dmac_slave *ds = dc->chan.private; in txx9dmac_dostart() local 354 if (ds) { in txx9dmac_dostart() 355 if (ds->tx_reg) { in txx9dmac_dostart() 356 sai = ds->reg_width; in txx9dmac_dostart() 360 dai = ds->reg_width; in txx9dmac_dostart() 375 if (ds) { in txx9dmac_dostart() 376 if (ds->tx_reg) { in txx9dmac_dostart() 377 sai = ds->reg_width; in txx9dmac_dostart() 381 dai = ds->reg_width; in txx9dmac_dostart() 816 struct txx9dmac_slave *ds = chan->private; in txx9dmac_prep_slave_sg() local [all …]
|
/linux-4.4.14/tools/testing/selftests/rcutorture/bin/ |
D | kvm.sh | 49 ds=`date +%Y.%m.%d-%H:%M:%S` 103 ds=$2 274 mkdir $resdir/$ds 275 echo Results directory: $resdir/$ds 277 touch $resdir/$ds/log 278 echo $scriptname $args >> $resdir/$ds/log 279 echo ${TORTURE_SUITE} > $resdir/$ds/TORTURE_SUITE 280 pwd > $resdir/$ds/testid.txt 283 git status >> $resdir/$ds/testid.txt 284 git rev-parse HEAD >> $resdir/$ds/testid.txt [all …]
|
/linux-4.4.14/drivers/isdn/divert/ |
D | isdn_divert.c | 275 struct deflect_struc *ds, *ds1 = NULL; in insertrule() local 278 if (!(ds = kmalloc(sizeof(struct deflect_struc), GFP_KERNEL))) in insertrule() 281 ds->rule = *newrule; /* set rule */ in insertrule() 295 ds->prev = table_tail; /* previous entry */ in insertrule() 296 ds->next = NULL; /* end of chain */ in insertrule() 297 if (ds->prev) in insertrule() 298 ds->prev->next = ds; /* last forward */ in insertrule() 300 table_head = ds; /* is first entry */ in insertrule() 301 table_tail = ds; /* end of queue */ in insertrule() 303 ds->next = ds1; /* next entry */ in insertrule() [all …]
|
/linux-4.4.14/Documentation/hwmon/ |
D | max6697 | 7 Datasheet: http://datasheets.maximintegrated.com/en/ds/MAX6581.pdf 10 Datasheet: http://datasheets.maximintegrated.com/en/ds/MAX6602.pdf 13 Datasheet: http://datasheets.maximintegrated.com/en/ds/MAX6622.pdf 16 Datasheet: http://datasheets.maximintegrated.com/en/ds/MAX6636.pdf 19 Datasheet: http://datasheets.maximintegrated.com/en/ds/MAX6689.pdf 22 Datasheet: http://datasheets.maximintegrated.com/en/ds/MAX6693.pdf 25 Datasheet: http://datasheets.maximintegrated.com/en/ds/MAX6694.pdf 28 Datasheet: http://datasheets.maximintegrated.com/en/ds/MAX6697.pdf 31 Datasheet: http://datasheets.maximintegrated.com/en/ds/MAX6698.pdf 34 Datasheet: http://datasheets.maximintegrated.com/en/ds/MAX6699.pdf
|
D | ucd9200 | 10 http://focus.ti.com/lit/ds/symlink/ucd9220.pdf 11 http://focus.ti.com/lit/ds/symlink/ucd9222.pdf 12 http://focus.ti.com/lit/ds/symlink/ucd9224.pdf 13 http://focus.ti.com/lit/ds/symlink/ucd9240.pdf 14 http://focus.ti.com/lit/ds/symlink/ucd9244.pdf 15 http://focus.ti.com/lit/ds/symlink/ucd9246.pdf 16 http://focus.ti.com/lit/ds/symlink/ucd9248.pdf
|
D | max34440 | 8 Datasheet: http://datasheets.maxim-ic.com/en/ds/MAX34440.pdf 13 Datasheet: http://datasheets.maxim-ic.com/en/ds/MAX34441.pdf 18 Datasheet: http://datasheets.maxim-ic.com/en/ds/MAX34446.pdf 23 Datasheet: http://datasheets.maximintegrated.com/en/ds/MAX34460.pdf 28 Datasheet: http://datasheets.maximintegrated.com/en/ds/MAX34461.pdf
|
D | max16065 | 9 http://datasheets.maxim-ic.com/en/ds/MAX16065-MAX16066.pdf 14 http://datasheets.maxim-ic.com/en/ds/MAX16067.pdf 19 http://datasheets.maxim-ic.com/en/ds/MAX16068.pdf 24 http://datasheets.maxim-ic.com/en/ds/MAX16070-MAX16071.pdf
|
D | ucd9000 | 9 http://focus.ti.com/lit/ds/symlink/ucd90120.pdf 10 http://focus.ti.com/lit/ds/symlink/ucd90124.pdf 11 http://focus.ti.com/lit/ds/symlink/ucd9090.pdf 12 http://focus.ti.com/lit/ds/symlink/ucd90910.pdf
|
D | lm95245 | 8 http://www.ti.com/lit/ds/symlink/lm95235.pdf 12 http://www.ti.com/lit/ds/symlink/lm95245.pdf
|
D | ads1015 | 8 http://focus.ti.com/lit/ds/symlink/ads1015.pdf 12 http://focus.ti.com/lit/ds/symlink/ads1115.pdf
|
D | max197 | 10 Datasheet: http://datasheets.maxim-ic.com/en/ds/MAX197.pdf 14 Datasheet: http://datasheets.maxim-ic.com/en/ds/MAX199.pdf
|
D | ads7828 | 8 http://focus.ti.com/lit/ds/symlink/ads7828.pdf 13 http://focus.ti.com/lit/ds/symlink/ads7830.pdf
|
D | max6650 | 8 Datasheet: http://pdfserv.maxim-ic.com/en/ds/MAX6650-MAX6651.pdf 12 Datasheet: http://pdfserv.maxim-ic.com/en/ds/MAX6650-MAX6651.pdf
|
D | max6642 | 9 http://datasheets.maxim-ic.com/en/ds/MAX6642.pdf
|
D | max1619 | 9 http://pdfserv.maxim-ic.com/en/ds/MAX1619.pdf
|
D | max31790 | 8 Datasheet: http://pdfserv.maximintegrated.com/en/ds/MAX31790.pdf
|
D | max6639 | 8 Datasheet: http://pdfserv.maxim-ic.com/en/ds/MAX6639.pdf
|
D | max20751 | 8 Datasheet: http://datasheets.maximintegrated.com/en/ds/MAX20751.pdf
|
D | max16064 | 8 Datasheet: http://datasheets.maxim-ic.com/en/ds/MAX16064.pdf
|
D | max1668 | 8 Datasheet: http://datasheets.maxim-ic.com/en/ds/MAX1668-MAX1989.pdf
|
D | max8688 | 8 Datasheet: http://datasheets.maxim-ic.com/en/ds/MAX8688.pdf
|
D | adm9240 | 15 http://pdfserv.maxim-ic.com/en/ds/DS1780.pdf 21 http://www.national.com/ds.cgi/LM/LM81.pdf
|
/linux-4.4.14/fs/9p/ |
D | fid.c | 98 struct dentry *ds; in build_path_from_dentry() local 100 for (ds = dentry; !IS_ROOT(ds); ds = ds->d_parent) in build_path_from_dentry() 107 for (ds = dentry, i = (n-1); i >= 0; i--, ds = ds->d_parent) in build_path_from_dentry() 108 wnames[i] = (char *)ds->d_name.name; in build_path_from_dentry() 119 struct dentry *ds; in v9fs_fid_lookup_with_uid() local 136 ds = dentry->d_parent; in v9fs_fid_lookup_with_uid() 137 fid = v9fs_fid_find(ds, uid, any); in v9fs_fid_lookup_with_uid()
|
/linux-4.4.14/arch/x86/boot/ |
D | copy.S | 52 pushw %ds 54 popw %ds 56 popw %ds 71 pushw %ds 73 popw %ds 75 popw %ds
|
D | regs.c | 26 reg->ds = ds(); in initregs() 27 reg->es = ds(); in initregs()
|
D | bioscall.S | 45 popw %ds 54 pushw %ds 64 movw %ax, %ds
|
D | pm.c | 87 gdt.ptr = (u32)&boot_gdt + (ds() << 4); in setup_gdt() 125 (u32)&boot_params + (ds() << 4)); in go_to_protected_mode()
|
D | boot.h | 83 static inline u16 ds(void) in ds() function 255 u16 es, ds; member
|
D | pmjump.S | 53 movl %ecx, %ds
|
D | main.c | 51 cmdline_seg = ds(); in copy_boot_params()
|
D | header.S | 56 movw %ax, %ds 468 cmpw %ax, %dx # %ds == %ss?
|
D | edd.c | 53 buf_base = (ds() << 4) + (u32)&_end; in read_mbr_sig()
|
D | video-vesa.c | 266 ireg.es = ds(); in vesa_store_edid()
|
/linux-4.4.14/fs/befs/ |
D | datastream.c | 48 befs_read_datastream(struct super_block *sb, befs_data_stream * ds, in befs_read_datastream() argument 60 if (befs_fblock2brun(sb, ds, block, &run) != BEFS_OK) { in befs_read_datastream() 125 befs_read_lsymlink(struct super_block * sb, befs_data_stream * ds, void *buff, in befs_read_lsymlink() argument 134 bh = befs_read_datastream(sb, ds, bytes_read, NULL); in befs_read_lsymlink() 166 befs_count_blocks(struct super_block * sb, befs_data_stream * ds) in befs_count_blocks() argument 175 datablocks = ds->size >> befs_sb->block_shift; in befs_count_blocks() 176 if (ds->size & (befs_sb->block_size - 1)) in befs_count_blocks() 182 if (ds->size > ds->max_direct_range) in befs_count_blocks() 183 metablocks += ds->indirect.len; in befs_count_blocks() 194 if (ds->size > ds->max_indirect_range && ds->max_indirect_range != 0) { in befs_count_blocks() [all …]
|
D | btree.c | 91 static int befs_btree_seekleaf(struct super_block *sb, befs_data_stream * ds, 96 static int befs_bt_read_super(struct super_block *sb, befs_data_stream * ds, 99 static int befs_bt_read_node(struct super_block *sb, befs_data_stream * ds, 137 befs_bt_read_super(struct super_block *sb, befs_data_stream * ds, in befs_bt_read_super() argument 145 bh = befs_read_datastream(sb, ds, 0, NULL); in befs_bt_read_super() 196 befs_bt_read_node(struct super_block *sb, befs_data_stream * ds, in befs_bt_read_node() argument 206 node->bh = befs_read_datastream(sb, ds, node_off, &off); in befs_bt_read_node() 250 befs_btree_find(struct super_block *sb, befs_data_stream * ds, in befs_btree_find() argument 260 if (befs_bt_read_super(sb, ds, &bt_super) != BEFS_OK) { in befs_btree_find() 278 if (befs_bt_read_node(sb, ds, this_node, node_off) != BEFS_OK) { in befs_btree_find() [all …]
|
D | linuxvfs.c | 123 befs_data_stream *ds = &BEFS_I(inode)->i_data.ds; in befs_get_block() local 137 res = befs_fblock2brun(sb, ds, block, &run); in befs_get_block() 162 befs_data_stream *ds = &BEFS_I(dir)->i_data.ds; in befs_lookup() local 180 ret = befs_btree_find(sb, ds, utfname, &offset); in befs_lookup() 184 ret = befs_btree_find(sb, ds, dentry->d_name.name, &offset); in befs_lookup() 212 befs_data_stream *ds = &BEFS_I(inode)->i_data.ds; in befs_readdir() local 223 result = befs_btree_read(sb, ds, ctx->pos, BEFS_NAME_LEN + 1, in befs_readdir() 383 befs_ino->i_data.ds = in befs_iget() 386 num_blks = befs_count_blocks(sb, &befs_ino->i_data.ds); in befs_iget() 389 inode->i_size = befs_ino->i_data.ds.size; in befs_iget() [all …]
|
D | btree.h | 7 int befs_btree_find(struct super_block *sb, befs_data_stream * ds, 10 int befs_btree_read(struct super_block *sb, befs_data_stream * ds,
|
D | datastream.h | 7 befs_data_stream * ds, befs_off_t pos, 16 befs_blocknr_t befs_count_blocks(struct super_block *sb, befs_data_stream * ds);
|
D | befs.h | 68 befs_data_stream ds; member
|
/linux-4.4.14/tools/testing/selftests/zram/ |
D | zram_lib.sh | 135 for ds in $zram_sizes; do 137 echo "$ds" > $sys_path || \ 138 echo "FAIL can't set '$ds' to $sys_path" 141 echo "$sys_path = '$ds' ($i/$dev_num)" 152 for ds in $zram_mem_limits; do 154 echo "$ds" > $sys_path || \ 155 echo "FAIL can't set '$ds' to $sys_path" 158 echo "$sys_path = '$ds' ($i/$dev_num)"
|
/linux-4.4.14/fs/nfs/filelayout/ |
D | filelayout.c | 470 struct nfs4_pnfs_ds *ds; in filelayout_read_pagelist() local 483 ds = nfs4_fl_prepare_ds(lseg, idx); in filelayout_read_pagelist() 484 if (!ds) in filelayout_read_pagelist() 487 ds_clnt = nfs4_find_or_create_ds_client(ds->ds_clp, hdr->inode); in filelayout_read_pagelist() 492 ds->ds_remotestr, atomic_read(&ds->ds_clp->cl_count)); in filelayout_read_pagelist() 495 atomic_inc(&ds->ds_clp->cl_count); in filelayout_read_pagelist() 496 hdr->ds_clp = ds->ds_clp; in filelayout_read_pagelist() 517 struct nfs4_pnfs_ds *ds; in filelayout_write_pagelist() local 526 ds = nfs4_fl_prepare_ds(lseg, idx); in filelayout_write_pagelist() 527 if (!ds) in filelayout_write_pagelist() [all …]
|
D | filelayoutdev.c | 47 struct nfs4_pnfs_ds *ds; in nfs4_fl_free_deviceid() local 53 ds = dsaddr->ds_list[i]; in nfs4_fl_free_deviceid() 54 if (ds != NULL) in nfs4_fl_free_deviceid() 55 nfs4_pnfs_ds_put(ds); in nfs4_fl_free_deviceid() 265 struct nfs4_pnfs_ds *ds = dsaddr->ds_list[ds_idx]; in nfs4_fl_prepare_ds() local 267 struct nfs4_pnfs_ds *ret = ds; in nfs4_fl_prepare_ds() 270 if (ds == NULL) { in nfs4_fl_prepare_ds() 277 if (ds->ds_clp) in nfs4_fl_prepare_ds() 280 nfs4_pnfs_ds_connect(s, ds, devid, dataserver_timeo, in nfs4_fl_prepare_ds()
|
/linux-4.4.14/crypto/ |
D | hmac.c | 48 int ds = crypto_shash_digestsize(parent); in hmac_setkey() local 69 keylen = ds; in hmac_setkey() 127 int ds = crypto_shash_digestsize(parent); in hmac_final() local 136 crypto_shash_finup(desc, out, ds, out); in hmac_final() 144 int ds = crypto_shash_digestsize(parent); in hmac_finup() local 153 crypto_shash_finup(desc, out, ds, out); in hmac_finup() 187 int ds; in hmac_create() local 199 ds = salg->digestsize; in hmac_create() 202 if (ds > alg->cra_blocksize || in hmac_create() 221 inst->alg.digestsize = ds; in hmac_create()
|
D | algif_hash.c | 155 unsigned ds = crypto_ahash_digestsize(crypto_ahash_reqtfm(&ctx->req)); in hash_recvmsg() local 158 if (len > ds) in hash_recvmsg() 159 len = ds; in hash_recvmsg() 160 else if (len < ds) in hash_recvmsg() 410 unsigned ds = crypto_ahash_digestsize(hash); in hash_accept_parent_nokey() local 416 ctx->result = sock_kmalloc(sk, ds, GFP_KERNEL); in hash_accept_parent_nokey() 422 memset(ctx->result, 0, ds); in hash_accept_parent_nokey()
|
D | shash.c | 117 unsigned int ds = crypto_shash_digestsize(tfm); in shash_final_unaligned() local 118 u8 ubuf[shash_align_buffer_size(ds, alignmask)] in shash_final_unaligned() 127 memcpy(out, buf, ds); in shash_final_unaligned() 130 memset(buf, 0, ds); in shash_final_unaligned()
|
D | ahash.c | 236 unsigned int ds = crypto_ahash_digestsize(tfm); in ahash_save_req() local 239 priv = kmalloc(sizeof(*priv) + ahash_align_buffer_size(ds, alignmask), in ahash_save_req()
|
/linux-4.4.14/arch/powerpc/sysdev/ |
D | dcr.c | 131 unsigned int ds; in dcr_resource_start() local 132 const u32 *dr = of_get_property(np, "dcr-reg", &ds); in dcr_resource_start() 134 if (dr == NULL || ds & 1 || index >= (ds / 8)) in dcr_resource_start() 143 unsigned int ds; in dcr_resource_len() local 144 const u32 *dr = of_get_property(np, "dcr-reg", &ds); in dcr_resource_len() 146 if (dr == NULL || ds & 1 || index >= (ds / 8)) in dcr_resource_len()
|
/linux-4.4.14/fs/nfs/flexfilelayout/ |
D | flexfilelayoutdev.c | 32 nfs4_pnfs_ds_put(mirror_ds->ds); in nfs4_ff_layout_free_deviceid() 139 new_ds->ds = nfs4_pnfs_ds_add(&dsaddrs, gfp_flags); in nfs4_ff_alloc_deviceid_node() 140 if (!new_ds->ds) in nfs4_ff_alloc_deviceid_node() 192 if (mirror->mirror_ds->ds == NULL) { in ff_layout_mirror_valid() 335 struct nfs4_pnfs_ds *ds) in ff_layout_update_mirror_cred() argument 337 if (ds->ds_clp && !mirror->cred && in ff_layout_update_mirror_cred() 339 struct rpc_auth *auth = ds->ds_clp->cl_rpcclient->cl_auth; in ff_layout_update_mirror_cred() 384 struct nfs4_pnfs_ds *ds = NULL; in nfs4_ff_layout_prepare_ds() local 401 ds = mirror->mirror_ds->ds; in nfs4_ff_layout_prepare_ds() 404 if (ds->ds_clp) in nfs4_ff_layout_prepare_ds() [all …]
|
D | flexfilelayout.c | 720 if (cinfo->ds->nbuckets != 0) { in ff_layout_alloc_commit_info() 739 if (cinfo->ds->nbuckets != 0) in ff_layout_alloc_commit_info() 742 cinfo->ds->buckets = buckets; in ff_layout_alloc_commit_info() 743 cinfo->ds->nbuckets = size; in ff_layout_alloc_commit_info() 763 struct nfs4_pnfs_ds *ds; in ff_layout_choose_best_ds_for_read() local 768 ds = nfs4_ff_layout_prepare_ds(lseg, idx, false); in ff_layout_choose_best_ds_for_read() 769 if (ds) { in ff_layout_choose_best_ds_for_read() 771 return ds; in ff_layout_choose_best_ds_for_read() 784 struct nfs4_pnfs_ds *ds; in ff_layout_pg_init_read() local 799 ds = ff_layout_choose_best_ds_for_read(pgio->pg_lseg, 0, &ds_idx); in ff_layout_pg_init_read() [all …]
|
D | flexfilelayout.h | 37 struct nfs4_pnfs_ds *ds; member
|
/linux-4.4.14/drivers/net/wireless/ath/ath9k/ |
D | hw-ops.h | 38 static inline void ath9k_hw_set_desc_link(struct ath_hw *ah, void *ds, in ath9k_hw_set_desc_link() argument 41 ath9k_hw_ops(ah)->set_desc_link(ds, link); in ath9k_hw_set_desc_link() 57 static inline void ath9k_hw_set_txdesc(struct ath_hw *ah, void *ds, in ath9k_hw_set_txdesc() argument 60 return ath9k_hw_ops(ah)->set_txdesc(ah, ds, i); in ath9k_hw_set_txdesc() 63 static inline int ath9k_hw_txprocdesc(struct ath_hw *ah, void *ds, in ath9k_hw_txprocdesc() argument 66 return ath9k_hw_ops(ah)->proc_txdesc(ah, ds, ts); in ath9k_hw_txprocdesc() 69 static inline int ath9k_hw_get_duration(struct ath_hw *ah, const void *ds, in ath9k_hw_get_duration() argument 72 return ath9k_hw_ops(ah)->get_duration(ah, ds, index); in ath9k_hw_get_duration()
|
D | ar9002_mac.c | 27 static void ar9002_hw_set_desc_link(void *ds, u32 ds_link) in ar9002_hw_set_desc_link() argument 29 ((struct ath_desc*) ds)->ds_link = ds_link; in ar9002_hw_set_desc_link() 212 ar9002_set_txdesc(struct ath_hw *ah, void *ds, struct ath_tx_info *i) in ar9002_set_txdesc() argument 214 struct ar5416_desc *ads = AR5416DESC(ds); in ar9002_set_txdesc() 315 static int ar9002_hw_proc_txdesc(struct ath_hw *ah, void *ds, in ar9002_hw_proc_txdesc() argument 318 struct ar5416_desc *ads = AR5416DESC(ds); in ar9002_hw_proc_txdesc() 387 static int ar9002_hw_get_duration(struct ath_hw *ah, const void *ds, int index) in ar9002_hw_get_duration() argument 389 struct ar5416_desc *ads = AR5416DESC(ds); in ar9002_hw_get_duration() 405 void ath9k_hw_setuprxdesc(struct ath_hw *ah, struct ath_desc *ds, in ath9k_hw_setuprxdesc() argument 408 struct ar5416_desc *ads = AR5416DESC(ds); in ath9k_hw_setuprxdesc()
|
D | init.c | 230 u8 *ds; in ath_descdma_setup() local 276 ds = (u8 *) dd->dd_desc; in ath_descdma_setup() 278 name, ds, (u32) dd->dd_desc_len, in ath_descdma_setup() 290 for (i = 0; i < nbuf; i++, bf++, ds += (desc_len * ndesc)) { in ath_descdma_setup() 291 bf->bf_desc = ds; in ath_descdma_setup() 292 bf->bf_daddr = DS2PHYS(dd, ds); in ath_descdma_setup() 306 ds += (desc_len * ndesc); in ath_descdma_setup() 307 bf->bf_desc = ds; in ath_descdma_setup() 308 bf->bf_daddr = DS2PHYS(dd, ds); in ath_descdma_setup() 321 for (i = 0; i < nbuf; i++, bf++, ds += (desc_len * ndesc)) { in ath_descdma_setup() [all …]
|
D | recv.c | 42 struct ath_desc *ds; in ath_rx_buf_link() local 45 ds = bf->bf_desc; in ath_rx_buf_link() 46 ds->ds_link = 0; /* link to null */ in ath_rx_buf_link() 47 ds->ds_data = bf->bf_buf_addr; in ath_rx_buf_link() 52 ds->ds_vdata = skb->data; in ath_rx_buf_link() 59 ath9k_hw_setuprxdesc(ah, ds, in ath_rx_buf_link() 68 sc->rx.rxlink = &ds->ds_link; in ath_rx_buf_link() 696 struct ath_desc *ds; in ath_get_next_rx_buf() local 709 ds = bf->bf_desc; in ath_get_next_rx_buf() 722 ret = ath9k_hw_rxprocdesc(ah, ds, rs); in ath_get_next_rx_buf() [all …]
|
D | ar9003_mac.c | 27 ar9003_set_txdesc(struct ath_hw *ah, void *ds, struct ath_tx_info *i) in ar9003_set_txdesc() argument 29 struct ar9003_txc *ads = ds; in ar9003_set_txdesc() 173 static void ar9003_hw_set_desc_link(void *ds, u32 ds_link) in ar9003_hw_set_desc_link() argument 175 struct ar9003_txc *ads = ds; in ar9003_hw_set_desc_link() 354 static int ar9003_hw_proc_txdesc(struct ath_hw *ah, void *ds, in ar9003_hw_proc_txdesc() argument 434 static int ar9003_hw_get_duration(struct ath_hw *ah, const void *ds, int index) in ar9003_hw_get_duration() argument 436 const struct ar9003_txc *adc = ds; in ar9003_hw_get_duration()
|
D | hw.h | 724 void (*set_desc_link)(void *ds, u32 link); 729 void (*set_txdesc)(struct ath_hw *ah, void *ds, 731 int (*proc_txdesc)(struct ath_hw *ah, void *ds, 733 int (*get_duration)(struct ath_hw *ah, const void *ds, int index);
|
D | mac.h | 733 int ath9k_hw_rxprocdesc(struct ath_hw *ah, struct ath_desc *ds, 735 void ath9k_hw_setuprxdesc(struct ath_hw *ah, struct ath_desc *ds,
|
/linux-4.4.14/fs/ntfs/ |
D | runlist.c | 625 int ds = dend + 1; /* Number of elements in drl & srl */ in ntfs_runlists_merge() local 643 ntfs_debug("ds = %i, ss = %i, dins = %i", ds, ss, dins); in ntfs_runlists_merge() 647 drl = ntfs_rl_replace(drl, ds, srl + sstart, ss, dins); in ntfs_runlists_merge() 649 drl = ntfs_rl_insert(drl, ds, srl + sstart, ss, dins); in ntfs_runlists_merge() 652 drl = ntfs_rl_append(drl, ds, srl + sstart, ss, dins); in ntfs_runlists_merge() 654 drl = ntfs_rl_split(drl, ds, srl + sstart, ss, dins); in ntfs_runlists_merge() 663 for (ds = dend; drl[ds].length; ds++) in ntfs_runlists_merge() 666 if (drl[ds].vcn <= marker_vcn) { in ntfs_runlists_merge() 669 if (drl[ds].vcn == marker_vcn) { in ntfs_runlists_merge() 673 drl[ds].lcn); in ntfs_runlists_merge() [all …]
|
/linux-4.4.14/arch/x86/kernel/ |
D | process_64.c | 63 unsigned int ds, cs, es; in __show_regs() local 80 asm("movl %%ds,%0" : "=r" (ds)); in __show_regs() 100 printk(KERN_DEFAULT "CS: %04x DS: %04x ES: %04x CR0: %016lx\n", cs, ds, in __show_regs() 174 savesegment(ds, p->thread.ds); in copy_thread_tls() 237 loadsegment(ds, _ds); in start_thread_common() 329 savesegment(ds, prev->ds); in __switch_to() 330 if (unlikely(next->ds | prev->ds)) in __switch_to() 331 loadsegment(ds, next->ds); in __switch_to()
|
D | head_32.S | 109 movl %eax,%ds 306 movl %eax,%ds 460 movl %eax,%ds 568 push %ds # 4(%esp) 571 movl %eax,%ds 607 pop %ds 626 pushl %ds 628 movl %eax,%ds 643 popl %ds
|
D | process_32.c | 96 (u16)regs->ds, (u16)regs->es, (u16)regs->fs, gs, ss); in __show_regs() 148 childregs->ds = __USER_DS; in copy_thread_tls() 202 regs->ds = __USER_DS; in start_thread()
|
D | ptrace.c | 81 REG_OFFSET_NAME(ds), 290 case offsetof(struct user_regs_struct, ds): in get_segment_reg() 295 return task->thread.ds; in get_segment_reg() 348 case offsetof(struct user_regs_struct,ds): in set_segment_reg() 349 task->thread.ds = value; in set_segment_reg() 351 loadsegment(ds, task->thread.ds); in set_segment_reg() 416 case offsetof(struct user_regs_struct, ds): in putreg() 458 case offsetof(struct user_regs_struct, ds): in getreg() 955 SEG32(ds); in putreg32() 1024 SEG32(ds); in getreg32()
|
D | signal.c | 80 COPY_SEG(ds); in restore_sigcontext() 133 put_user_ex(regs->ds, (unsigned int __user *)&sc->ds); in setup_sigcontext() 332 regs->ds = __USER_DS; in __setup_frame() 398 regs->ds = __USER_DS; in __setup_rt_frame() 526 loadsegment(ds, __USER_DS); in x32_setup_rt_frame()
|
D | doublefault.c | 65 .ds = __USER_DS,
|
D | vm86_32.c | 136 put_user_ex(regs->ds, &user->regs.ds); in save_v86_state() 293 get_user_ex(vm86regs.ds, &user_vm86->regs.ds); in do_sys_vm86()
|
D | asm-offsets_32.c | 36 OFFSET(PT_DS, pt_regs, ds); in foo()
|
D | perf_regs.c | 32 PT_REGS_OFFSET(PERF_REG_X86_DS, ds),
|
/linux-4.4.14/drivers/lguest/x86/ |
D | switcher_32.S | 113 pushl %ds 182 popl %ds 205 pushl %ds; \ 221 movl %eax, %ds; \ 258 popl %ds; \
|
D | core.c | 211 case offsetof(struct pt_regs, ds): in lguest_arch_regptr() 212 return &cpu->regs->ds; in lguest_arch_regptr() 713 regs->ds = regs->es = regs->ss = __KERNEL_DS|GUEST_PL; in lguest_arch_setup_regs()
|
/linux-4.4.14/tools/testing/selftests/ipc/ |
D | msgque.c | 131 struct msqid64_ds ds; in dump_queue() local 136 ret = msgctl(kern_id, MSG_STAT, &ds); in dump_queue() 149 msgque->messages = malloc(sizeof(struct msg1) * ds.msg_qnum); in dump_queue() 155 msgque->qnum = ds.msg_qnum; in dump_queue() 156 msgque->mode = ds.msg_perm.mode; in dump_queue() 157 msgque->qbytes = ds.msg_qbytes; in dump_queue()
|
/linux-4.4.14/drivers/clk/rockchip/ |
D | clk.h | 240 #define COMPOSITE(_id, cname, pnames, f, mo, ms, mw, mf, ds, dw,\ argument 253 .div_shift = ds, \ 261 #define COMPOSITE_NOMUX(_id, cname, pname, f, mo, ds, dw, df, \ argument 271 .div_shift = ds, \ 279 #define COMPOSITE_NOMUX_DIVTBL(_id, cname, pname, f, mo, ds, dw,\ argument 289 .div_shift = ds, \ 317 ds, dw, df) \ argument 329 .div_shift = ds, \ 336 mw, mf, ds, dw, df, dt) \ argument 348 .div_shift = ds, \
|
/linux-4.4.14/fs/btrfs/ |
D | check-integrity.c | 268 static void btrfsic_dev_state_init(struct btrfsic_dev_state *ds); 270 static void btrfsic_dev_state_free(struct btrfsic_dev_state *ds); 294 struct btrfsic_dev_state *ds, 296 static void btrfsic_dev_state_hashtable_remove(struct btrfsic_dev_state *ds); 470 static void btrfsic_dev_state_init(struct btrfsic_dev_state *ds) in btrfsic_dev_state_init() argument 472 ds->magic_num = BTRFSIC_DEV2STATE_MAGIC_NUMBER; in btrfsic_dev_state_init() 473 ds->bdev = NULL; in btrfsic_dev_state_init() 474 ds->state = NULL; in btrfsic_dev_state_init() 475 ds->name[0] = '\0'; in btrfsic_dev_state_init() 476 INIT_LIST_HEAD(&ds->collision_resolving_node); in btrfsic_dev_state_init() [all …]
|
/linux-4.4.14/drivers/ide/ |
D | ide-ioctls.c | 23 const struct ide_devset *ds; in ide_setting_ioctl() local 26 for (; (ds = s->setting); s++) { in ide_setting_ioctl() 27 if (ds->get && s->get_ioctl == cmd) in ide_setting_ioctl() 29 else if (ds->set && s->set_ioctl == cmd) in ide_setting_ioctl() 37 err = ds->get(drive); in ide_setting_ioctl() 49 err = ide_devset_execute(drive, ds, arg); in ide_setting_ioctl()
|
D | ide-proc.c | 195 const struct ide_devset *ds = setting->setting; in ide_read_setting() local 198 if (ds->get) in ide_read_setting() 199 val = ds->get(drive); in ide_read_setting() 225 const struct ide_devset *ds = setting->setting; in ide_write_setting() local 229 if (!ds->set) in ide_write_setting() 231 if ((ds->flags & DS_SYNC) in ide_write_setting() 234 return ide_devset_execute(drive, ds, val); in ide_write_setting() 284 const struct ide_devset *ds; in ide_settings_proc_show() local 315 ds = setting->setting; in ide_settings_proc_show() 316 if (ds->get) in ide_settings_proc_show() [all …]
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/fb/ |
D | gddr5.c | 38 int WL, CL, WR, at[2], dt, ds; in nvkm_gddr5_calc() local 64 ds = ram->next->bios.timing_20_2f_03; in nvkm_gddr5_calc() 84 ram->mr[1] |= (ds & 0x03) << 0; in nvkm_gddr5_calc()
|
/linux-4.4.14/arch/x86/platform/efi/ |
D | efi_thunk_64.S | 70 movl %ds, %eax 102 movl %ebx, %ds 133 movl %eax, %ds
|
/linux-4.4.14/drivers/net/wireless/ath/ath5k/ |
D | base.c | 632 struct ath5k_desc *ds; in ath5k_rxbuf_setup() local 657 ds = bf->desc; in ath5k_rxbuf_setup() 658 ds->ds_link = bf->daddr; /* link to self */ in ath5k_rxbuf_setup() 659 ds->ds_data = bf->skbaddr; in ath5k_rxbuf_setup() 660 ret = ath5k_hw_setup_rx_desc(ah, ds, ah->common.rx_bufsize, 0); in ath5k_rxbuf_setup() 668 ah->rxlink = &ds->ds_link; in ath5k_rxbuf_setup() 736 struct ath5k_desc *ds = bf->desc; in ath5k_txbuf_setup() local 796 ret = ah->ah_setup_tx_desc(ah, ds, pktlen, in ath5k_txbuf_setup() 821 ath5k_hw_setup_mrr_tx_desc(ah, ds, in ath5k_txbuf_setup() 827 ds->ds_link = 0; in ath5k_txbuf_setup() [all …]
|
D | debug.c | 1085 struct ath5k_desc *ds = bf->desc; in ath5k_debug_printrxbuf() local 1086 struct ath5k_hw_all_rx_desc *rd = &ds->ud.ds_rx; in ath5k_debug_printrxbuf() 1089 ds, (unsigned long long)bf->daddr, in ath5k_debug_printrxbuf() 1090 ds->ds_link, ds->ds_data, in ath5k_debug_printrxbuf() 1099 struct ath5k_desc *ds; in ath5k_debug_printrxbuffs() local 1112 ds = bf->desc; in ath5k_debug_printrxbuffs() 1113 status = ah->ah_proc_rx_desc(ah, ds, &rs); in ath5k_debug_printrxbuffs() 1123 struct ath5k_desc *ds = bf->desc; in ath5k_debug_printtxbuf() local 1124 struct ath5k_hw_5212_tx_desc *td = &ds->ud.ds_tx5212; in ath5k_debug_printtxbuf() 1134 "%08x %c\n", ds, (unsigned long long)bf->daddr, ds->ds_link, in ath5k_debug_printtxbuf() [all …]
|
/linux-4.4.14/sound/pci/asihpi/ |
D | asihpi.c | 614 struct snd_card_asihpi_pcm *ds = runtime->private_data; in snd_card_asihpi_trigger() local 623 ds->drained_count = 0; in snd_card_asihpi_trigger() 631 unsigned int preload = ds->period_bytes * 1; in snd_card_asihpi_trigger() 634 ds->h_stream, in snd_card_asihpi_trigger() 637 &ds->format)); in snd_card_asihpi_trigger() 638 ds->pcm_buf_host_rw_ofs = preload; in snd_card_asihpi_trigger() 645 ds->h_stream); in snd_card_asihpi_trigger() 777 struct snd_card_asihpi_pcm *ds = s->runtime->private_data; in snd_card_asihpi_timer_function() local 788 ds->h_stream, &state, in snd_card_asihpi_timer_function() 799 pcm_buf_dma_ofs = ds->pcm_buf_host_rw_ofs - bytes_avail; in snd_card_asihpi_timer_function() [all …]
|
/linux-4.4.14/arch/x86/math-emu/ |
D | get_address.c | 46 offsetof(struct kernel_vm86_regs, ds), 51 offsetof(struct kernel_vm86_regs, ds) 59 offsetof(struct pt_regs, ds), 62 offsetof(struct pt_regs, ds), /* dummy, not saved on stack */ 64 offsetof(struct pt_regs, ds)
|
D | fpu_system.h | 54 #define FPU_DS (*(unsigned short *) &(FPU_info->regs->ds))
|
/linux-4.4.14/Documentation/w1/masters/ |
D | ds2482 | 9 http://datasheets.maxim-ic.com/en/ds/DS2482-100.pdf 10 http://datasheets.maxim-ic.com/en/ds/DS2482-800.pdf
|
/linux-4.4.14/arch/x86/kvm/ |
D | tss.h | 26 u32 ds; member 55 u16 ds; member
|
D | svm.c | 1057 init_seg(&save->ds); in init_vmcb() 1306 case VCPU_SREG_DS: return &save->ds; in svm_seg() 2254 nested_vmcb->save.ds = vmcb->save.ds; in nested_svm_vmexit() 2318 svm->vmcb->save.ds = hsave->save.ds; in nested_svm_vmexit() 2443 hsave->save.ds = vmcb->save.ds; in nested_svm_vmrun() 2475 svm->vmcb->save.ds = nested_vmcb->save.ds; in nested_svm_vmrun() 3354 save->ds.selector, save->ds.attrib, in dump_vmcb() 3355 save->ds.limit, save->ds.base); in dump_vmcb()
|
D | x86.c | 6236 struct kvm_segment cs, ds; in process_smi() local 6279 ds.selector = 0; in process_smi() 6280 ds.base = 0; in process_smi() 6282 cs.limit = ds.limit = 0xffffffff; in process_smi() 6283 cs.type = ds.type = 0x3; in process_smi() 6284 cs.dpl = ds.dpl = 0; in process_smi() 6285 cs.db = ds.db = 0; in process_smi() 6286 cs.s = ds.s = 1; in process_smi() 6287 cs.l = ds.l = 0; in process_smi() 6288 cs.g = ds.g = 1; in process_smi() [all …]
|
/linux-4.4.14/arch/x86/boot/compressed/ |
D | efi_thunk_64.S | 36 movl %ds, %eax 82 movl %ebx, %ds 116 movl %eax, %ds
|
D | head_64.S | 55 movl %eax, %ds 299 movl %eax, %ds
|
D | head_32.S | 111 movl %eax, %ds
|
/linux-4.4.14/sound/soc/txx9/ |
D | txx9aclc.c | 344 struct txx9dmac_slave *ds = &dmadata->dma_slave; in txx9aclc_dma_init() local 349 ds->reg_width = sizeof(u32); in txx9aclc_dma_init() 351 ds->tx_reg = drvdata->physbase + ACAUDODAT; in txx9aclc_dma_init() 352 ds->rx_reg = 0; in txx9aclc_dma_init() 354 ds->tx_reg = 0; in txx9aclc_dma_init() 355 ds->rx_reg = drvdata->physbase + ACAUDIDAT; in txx9aclc_dma_init()
|
/linux-4.4.14/arch/x86/ia32/ |
D | ia32_signal.c | 42 #define loadsegment_ds(v) loadsegment(ds, v) 89 RELOAD_SEG(ds); in ia32_restore_sigcontext() 182 put_user_ex(get_user_seg(ds), (unsigned int __user *)&sc->ds); in ia32_setup_sigcontext() 319 loadsegment(ds, __USER32_DS); in ia32_setup_frame() 398 loadsegment(ds, __USER32_DS); in ia32_setup_rt_frame()
|
D | ia32_aout.c | 87 dump->regs.ds = current->thread.ds; in dump_thread32() 384 loadsegment(ds, __USER32_DS); in load_aout_binary()
|
/linux-4.4.14/drivers/s390/scsi/ |
D | zfcp_fc.c | 226 zfcp_fc_wka_port_force_offline(&gs->ds); in zfcp_fc_wka_ports_force_offline() 380 ret = zfcp_fsf_send_ct(&adapter->gs->ds, &fc_req->ct_els, in zfcp_fc_ns_gid_pn_request() 407 ret = zfcp_fc_wka_port_get(&adapter->gs->ds); in zfcp_fc_ns_gid_pn() 413 zfcp_fc_wka_port_put(&adapter->gs->ds); in zfcp_fc_ns_gid_pn() 631 ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL, in zfcp_fc_send_gpn_ft() 744 if (zfcp_fc_wka_port_get(&adapter->gs->ds)) in zfcp_fc_scan_ports() 764 zfcp_fc_wka_port_put(&adapter->gs->ds); in zfcp_fc_scan_ports() 789 ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL, in zfcp_fc_gspn() 837 ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL, in zfcp_fc_rspn() 869 ret = zfcp_fc_wka_port_get(&adapter->gs->ds); in zfcp_fc_sym_name_update() [all …]
|
D | zfcp_fc.h | 201 struct zfcp_fc_wka_port ds; member
|
/linux-4.4.14/arch/x86/include/asm/ |
D | elf.h | 129 pr_reg[7] = regs->ds & 0xffff; \ 172 struct pt_regs *regs, const u16 ds) in elf_common_init() argument 181 t->ds = t->es = ds; in elf_common_init()
|
D | a.out-core.h | 49 dump->regs.ds = (u16)regs->ds; in aout_dump_thread()
|
D | suspend_64.h | 22 u16 ds, es, fs, gs, ss; member
|
D | user_32.h | 85 unsigned long ds; member
|
D | vm86.h | 25 unsigned short ds, __dsh; member
|
D | lguest.h | 36 unsigned long fs, ds, es; member
|
D | user_64.h | 92 unsigned long ds; member
|
D | user32.h | 37 unsigned short ds, __ds, es, __es; member
|
D | kexec.h | 110 asm volatile("movl %%ds, %%eax;" :"=a"(newregs->ds)); in crash_setup_regs()
|
D | ptrace.h | 19 unsigned long ds; member
|
D | processor.h | 254 unsigned short ds, __dsh; member 381 unsigned short ds; member
|
D | svm.h | 142 struct vmcb_seg ds; member
|
/linux-4.4.14/drivers/net/fddi/skfp/ |
D | hwmtm.c | 357 struct s_smt_fp_txd volatile *ds ; in init_txd_ring() local 364 ds = (struct s_smt_fp_txd volatile *) ((char *)smc->os.hwm.descr_p + in init_txd_ring() 368 (void)init_descr_ring(smc,(union s_fp_descr volatile *)ds, in init_txd_ring() 370 phys = le32_to_cpu(ds->txd_ntdadr) ; in init_txd_ring() 371 ds++ ; in init_txd_ring() 372 queue->tx_curr_put = queue->tx_curr_get = ds ; in init_txd_ring() 373 ds-- ; in init_txd_ring() 378 ds = (struct s_smt_fp_txd volatile *) ((char *)ds + in init_txd_ring() 382 (void)init_descr_ring(smc,(union s_fp_descr volatile *)ds, in init_txd_ring() 384 phys = le32_to_cpu(ds->txd_ntdadr) ; in init_txd_ring() [all …]
|
/linux-4.4.14/drivers/usb/gadget/function/ |
D | f_fs.c | 1645 struct usb_endpoint_descriptor *ds; in ffs_func_eps_enable() local 1657 ds = ep->descs[desc_idx]; in ffs_func_eps_enable() 1658 } while (!ds && --desc_idx >= 0); in ffs_func_eps_enable() 1660 if (!ds) { in ffs_func_eps_enable() 1666 ep->ep->desc = ds; in ffs_func_eps_enable() 1670 epfile->in = usb_endpoint_dir_in(ds); in ffs_func_eps_enable() 1671 epfile->isoc = usb_endpoint_xfer_isoc(ds); in ffs_func_eps_enable() 1765 struct usb_interface_descriptor *ds = (void *)_ds; in ffs_do_single_desc() local 1767 if (length != sizeof *ds) in ffs_do_single_desc() 1770 __entity(INTERFACE, ds->bInterfaceNumber); in ffs_do_single_desc() [all …]
|
/linux-4.4.14/arch/x86/realmode/rm/ |
D | reboot.S | 26 movl %eax, %ds 59 movl %ecx, %ds
|
D | wakeup_asm.S | 56 movw %cx, %ds 70 movw %ax, %ds
|
D | trampoline_32.S | 37 mov %ax, %ds
|
D | trampoline_64.S | 46 mov %ax, %ds
|
/linux-4.4.14/drivers/sh/maple/ |
D | maple.c | 409 struct maple_device_specify *ds; in check_maple_device() local 412 ds = portptr; in check_maple_device() 414 if (mdev->port == ds->port && mdev->unit == ds->unit) in check_maple_device() 496 struct maple_device_specify ds; in maple_map_subunits() local 498 ds.port = mdev->port; in maple_map_subunits() 500 ds.unit = k + 1; in maple_map_subunits() 502 bus_for_each_dev(&maple_bus_type, NULL, &ds, in maple_map_subunits()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/gr/ |
D | gf100.c | 48 nvkm_wr32(device, 0x405804, gr->zbc_color[zbc].ds[0]); in gf100_gr_zbc_clear_color() 49 nvkm_wr32(device, 0x405808, gr->zbc_color[zbc].ds[1]); in gf100_gr_zbc_clear_color() 50 nvkm_wr32(device, 0x40580c, gr->zbc_color[zbc].ds[2]); in gf100_gr_zbc_clear_color() 51 nvkm_wr32(device, 0x405810, gr->zbc_color[zbc].ds[3]); in gf100_gr_zbc_clear_color() 60 const u32 ds[4], const u32 l2[4]) in gf100_gr_zbc_color_get() 69 if (memcmp(gr->zbc_color[i].ds, ds, sizeof( in gf100_gr_zbc_color_get() 70 gr->zbc_color[i].ds))) in gf100_gr_zbc_color_get() 86 memcpy(gr->zbc_color[zbc].ds, ds, sizeof(gr->zbc_color[zbc].ds)); in gf100_gr_zbc_color_get() 99 nvkm_wr32(device, 0x405818, gr->zbc_depth[zbc].ds); in gf100_gr_zbc_clear_depth() 107 const u32 ds, const u32 l2) in gf100_gr_zbc_depth_get() argument [all …]
|
D | gf100.h | 63 u32 ds[4]; member 69 u32 ds; member
|
/linux-4.4.14/Documentation/devicetree/bindings/mmc/ |
D | mtk-sd.txt | 23 - hs400-ds-delay: HS400 DS delay setting 40 hs400-ds-delay = <0x14015>;
|
/linux-4.4.14/arch/x86/entry/ |
D | entry_32.S | 161 pushl %ds 170 movl %edx, %ds 189 1: popl %ds 459 movl %eax, %ds 690 1: mov 4(%esp), %ds 790 pushl %ds 826 popl %ds 918 pushl %ds 937 movl %ecx, %ds
|
/linux-4.4.14/Documentation/ja_JP/ |
D | stable_api_nonsense.txt | 3 This document is maintained by IKEDA, Munehiro <m-ikeda@ds.jp.nec.com> 22 翻訳者 : 池田 宗広 < m-ikeda at ds dot jp dot nec dot com >
|
/linux-4.4.14/drivers/infiniband/hw/mlx5/ |
D | odp.c | 390 unsigned ds, opcode; in mlx5_ib_mr_initiator_pfault_handler() local 395 ds = be32_to_cpu(ctrl->qpn_ds) & MLX5_WQE_CTRL_DS_MASK; in mlx5_ib_mr_initiator_pfault_handler() 396 if (ds * MLX5_WQE_DS_UNITS > wqe_length) { in mlx5_ib_mr_initiator_pfault_handler() 398 ds, wqe_length); in mlx5_ib_mr_initiator_pfault_handler() 402 if (ds == 0) { in mlx5_ib_mr_initiator_pfault_handler() 429 *wqe_end = *wqe + ds * MLX5_WQE_DS_UNITS; in mlx5_ib_mr_initiator_pfault_handler()
|
/linux-4.4.14/fs/fat/ |
D | dir.c | 283 struct msdos_dir_slot *ds; in fat_parse_long() local 295 ds = (struct msdos_dir_slot *)*de; in fat_parse_long() 296 id = ds->id; in fat_parse_long() 303 alias_checksum = ds->alias_checksum; in fat_parse_long() 311 fat16_towchar(*unicode + offset, ds->name0_4, 5); in fat_parse_long() 312 fat16_towchar(*unicode + offset + 5, ds->name5_10, 6); in fat_parse_long() 313 fat16_towchar(*unicode + offset + 11, ds->name11_12, 2); in fat_parse_long() 315 if (ds->id & 0x40) in fat_parse_long() 321 ds = (struct msdos_dir_slot *)*de; in fat_parse_long() 322 if (ds->attr != ATTR_EXT) in fat_parse_long() [all …]
|
/linux-4.4.14/drivers/net/wireless/libertas/ |
D | cfg.c | 368 struct mrvl_ie_ds_param_set *ds = (void *) tlv; in lbs_add_channel_tlv() local 375 ds->header.type = cpu_to_le16(TLV_TYPE_PHY_DS); in lbs_add_channel_tlv() 376 ds->header.len = cpu_to_le16(sizeof(*ds)-sizeof(ds->header)); in lbs_add_channel_tlv() 377 ds->channel = channel; in lbs_add_channel_tlv() 378 return sizeof(*ds); in lbs_add_channel_tlv() 1831 cmd.bss.ds.header.id = WLAN_EID_DS_PARAMS; in lbs_ibss_join_existing() 1832 cmd.bss.ds.header.len = 1; in lbs_ibss_join_existing() 1833 cmd.bss.ds.channel = params->chandef.chan->hw_value; in lbs_ibss_join_existing() 1943 cmd.ds.header.id = WLAN_EID_DS_PARAMS; in lbs_ibss_start_new() 1944 cmd.ds.header.len = 1; in lbs_ibss_start_new() [all …]
|
D | types.h | 54 struct ieee_ie_ds_param_set ds; member
|
D | host.h | 749 struct ieee_ie_ds_param_set ds; member 772 struct ieee_ie_ds_param_set ds; member
|
/linux-4.4.14/arch/x86/power/ |
D | cpu.c | 88 asm volatile ("movw %%ds, %0" : "=m" (ctxt->ds)); in __save_processor_state() 215 asm volatile ("movw %0, %%ds" :: "r" (ctxt->ds)); in __restore_processor_state()
|
/linux-4.4.14/drivers/message/fusion/ |
D | mptbase.c | 7250 char *ds = NULL; in mpt_display_event_info() local 7261 ds = "None"; in mpt_display_event_info() 7264 ds = "Log Data"; in mpt_display_event_info() 7267 ds = "State Change"; in mpt_display_event_info() 7270 ds = "Unit Attention"; in mpt_display_event_info() 7273 ds = "IOC Bus Reset"; in mpt_display_event_info() 7276 ds = "External Bus Reset"; in mpt_display_event_info() 7279 ds = "Bus Rescan Event"; in mpt_display_event_info() 7283 ds = "Link Status(FAILURE) Change"; in mpt_display_event_info() 7285 ds = "Link Status(ACTIVE) Change"; in mpt_display_event_info() [all …]
|
/linux-4.4.14/drivers/crypto/amcc/ |
D | crypto4xx_alg.c | 240 int ds; in crypto4xx_hash_init() local 244 ds = crypto_ahash_digestsize( in crypto4xx_hash_init() 246 sa->sa_command_0.bf.digest_len = ds >> 2; in crypto4xx_hash_init()
|
/linux-4.4.14/arch/x86/purgatory/ |
D | setup-x86_64.S | 24 movl %eax, %ds
|
D | entry64.S | 25 movl %eax, %ds
|
/linux-4.4.14/scripts/kconfig/ |
D | symbol.c | 417 struct symbol *ds = prop_get_symbol(prop); in sym_calc_value() local 418 if (ds) { in sym_calc_value() 420 sym_calc_value(ds); in sym_calc_value() 421 newval.val = ds->curr.val; in sym_calc_value() 695 struct symbol *ds; in sym_get_string_default() local 719 ds = prop_get_symbol(prop); in sym_get_string_default() 720 if (ds != NULL) { in sym_get_string_default() 721 sym_calc_value(ds); in sym_get_string_default() 722 str = (const char *)ds->curr.val; in sym_get_string_default()
|
D | confdata.c | 708 struct symbol *ds; in conf_write_defconfig() local 711 ds = sym_choice_default(cs); in conf_write_defconfig() 712 if (!sym_is_optional(cs) && sym == ds) { in conf_write_defconfig()
|
/linux-4.4.14/fs/affs/ |
D | amigaffs.c | 369 secs_to_datestamp(time_t secs, struct affs_date *ds) in secs_to_datestamp() argument 382 ds->days = cpu_to_be32(days); in secs_to_datestamp() 383 ds->mins = cpu_to_be32(minute); in secs_to_datestamp() 384 ds->ticks = cpu_to_be32(secs * 50); in secs_to_datestamp()
|
/linux-4.4.14/include/uapi/video/ |
D | uvesafb.h | 20 __u16 ds; member
|
/linux-4.4.14/sound/soc/fsl/ |
D | Makefile | 6 snd-soc-p1022-ds-objs := p1022_ds.o 7 obj-$(CONFIG_SND_SOC_P1022_DS) += snd-soc-p1022-ds.o
|
/linux-4.4.14/arch/x86/include/uapi/asm/ |
D | sigcontext.h | 205 __u16 ds, __dsh; member 303 __u16 ds, __dsh; member
|
D | vm86.h | 87 unsigned short ds, __dsh; member
|
D | kvm.h | 147 struct kvm_segment cs, ds, es, fs, gs, ss; member
|
/linux-4.4.14/arch/s390/include/asm/ |
D | nmi.h | 45 u64 ds : 1; /* 19 storage degradation */ member
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | tps6507x.dtsi | 11 * http://www.ti.com/lit/ds/symlink/tps65070.pdf
|
D | tps65217.dtsi | 11 * http://www.ti.com/lit/ds/symlink/tps65217.pdf
|
D | tps65910.dtsi | 11 * http://www.ti.com/lit/ds/symlink/tps65910.pdf
|
D | twl6030.dtsi | 11 * http://www.ti.com/lit/ds/symlink/twl6030.pdf
|
/linux-4.4.14/arch/x86/include/asm/xen/ |
D | interface_32.h | 66 uint16_t ds, _pad3; member
|
D | interface_64.h | 124 uint16_t ds, _pad4[3]; member
|
/linux-4.4.14/Documentation/devicetree/bindings/clock/ |
D | ti,cdce706.txt | 4 Reference: http://www.ti.com/lit/ds/symlink/cdce706.pdf
|
/linux-4.4.14/Documentation/devicetree/bindings/regulator/ |
D | lp872x.txt | 39 - LP8720: http://www.ti.com/lit/ds/symlink/lp8720.pdf 40 - LP8725: http://www.ti.com/lit/ds/symlink/lp8725.pdf
|
D | s5m8767-regulator.txt | 25 - s5m8767,pmic-buck-ds-gpios: GPIO specifiers for three host gpio's used 113 s5m8767,pmic-buck-ds-gpios = <&gpx2 3 0>, /* SET1 */
|
/linux-4.4.14/drivers/infiniband/hw/mthca/ |
D | mthca_srq.c | 203 int ds; in mthca_alloc_srq() local 220 ds = max(64UL, in mthca_alloc_srq() 224 if (!mthca_is_memfree(dev) && (ds > dev->limits.max_desc_sz)) in mthca_alloc_srq() 227 srq->wqe_shift = ilog2(ds); in mthca_alloc_srq()
|
/linux-4.4.14/drivers/crypto/ |
D | n2_core.c | 449 int err, bs, ds; in n2_hmac_async_setkey() local 461 ds = crypto_shash_digestsize(child_shash); in n2_hmac_async_setkey() 462 BUG_ON(ds > N2_HASH_KEY_MAX); in n2_hmac_async_setkey() 468 keylen = ds; in n2_hmac_async_setkey() 599 int ds; in n2_hash_async_digest() local 601 ds = n2alg->digest_size; in n2_hash_async_digest() 603 memcpy(req->result, n2alg->hash_zero, ds); in n2_hash_async_digest() 609 n2alg->hw_op_hashsz, ds, in n2_hash_async_digest() 619 int ds; in n2_hmac_async_digest() local 621 ds = n2alg->derived.digest_size; in n2_hmac_async_digest() [all …]
|
/linux-4.4.14/include/uapi/sound/ |
D | hdspm.h | 38 ds, enumerator
|
/linux-4.4.14/arch/x86/kernel/acpi/ |
D | wakeup_32.S | 19 movw %ax, %ds
|
D | wakeup_64.S | 23 movw %ax, %ds
|
/linux-4.4.14/drivers/scsi/ |
D | qlogicpti.c | 890 struct dataseg *ds; in load_cmd() local 902 ds = cmd->dataseg; in load_cmd() 910 ds[i].d_base = sg_dma_address(s); in load_cmd() 911 ds[i].d_count = sg_dma_len(s); in load_cmd() 929 ds = cont->dataseg; in load_cmd() 934 ds[i].d_base = sg_dma_address(s); in load_cmd() 935 ds[i].d_count = sg_dma_len(s); in load_cmd()
|
/linux-4.4.14/drivers/staging/media/davinci_vpfe/ |
D | davinci-vpfe-mc.txt | 140 <URL:http://www.ti.com/lit/ds/sprs457e/sprs457e.pdf> 144 <URL:http://www.ti.com/lit/ds/sprs668c/sprs668c.pdf>
|
/linux-4.4.14/arch/x86/kernel/fpu/ |
D | regset.c | 225 savesegment(ds, env->fos); in convert_from_fxsr() 227 env->fos = tsk->thread.ds; in convert_from_fxsr()
|
/linux-4.4.14/drivers/mtd/nand/ |
D | diskonchip.c | 148 uint16_t ds[4], s[5], tmp, errval[8], syn[4]; in doc_ecc_decode() local 152 ds[0] = ((ecc[4] & 0xff) >> 0) | ((ecc[5] & 0x03) << 8); in doc_ecc_decode() 153 ds[1] = ((ecc[5] & 0xfc) >> 2) | ((ecc[2] & 0x0f) << 6); in doc_ecc_decode() 154 ds[2] = ((ecc[2] & 0xf0) >> 4) | ((ecc[3] & 0x3f) << 4); in doc_ecc_decode() 155 ds[3] = ((ecc[3] & 0xc0) >> 6) | ((ecc[0] & 0xff) << 2); in doc_ecc_decode() 160 s[i] = ds[0]; in doc_ecc_decode() 167 if (ds[j] == 0) in doc_ecc_decode() 169 tmp = rs->index_of[ds[j]]; in doc_ecc_decode()
|
/linux-4.4.14/Documentation/devicetree/bindings/mfd/ |
D | twl-familly.txt | 30 * http://www.ti.com/lit/ds/symlink/twl6030.pdf
|
/linux-4.4.14/drivers/net/ethernet/mellanox/mlx5/core/ |
D | cmd.c | 764 s64 ds; in mlx5_cmd_invoke() local 792 ds = ent->ts2 - ent->ts1; in mlx5_cmd_invoke() 797 stats->sum += ds; in mlx5_cmd_invoke() 803 mlx5_command_str(op), ds); in mlx5_cmd_invoke() 1256 s64 ds; in mlx5_cmd_comp_handler() local 1291 ds = ent->ts2 - ent->ts1; in mlx5_cmd_comp_handler() 1295 stats->sum += ds; in mlx5_cmd_comp_handler()
|
/linux-4.4.14/arch/x86/platform/olpc/ |
D | xo1-wakeup.S | 40 movw %ax, %ds
|
/linux-4.4.14/arch/mips/include/asm/xtalk/ |
D | xwidget.h | 241 unsigned ds:2; member
|
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvif/ |
D | class.h | 658 __u32 ds[4]; member 668 __u32 ds; member
|
/linux-4.4.14/drivers/usb/core/ |
D | devio.c | 1770 struct usbdevfs_disconnectsignal32 ds; in proc_disconnectsignal_compat() local 1772 if (copy_from_user(&ds, arg, sizeof(ds))) in proc_disconnectsignal_compat() 1774 ps->discsignr = ds.signr; in proc_disconnectsignal_compat() 1775 ps->disccontext = compat_ptr(ds.context); in proc_disconnectsignal_compat() 1885 struct usbdevfs_disconnectsignal ds; in proc_disconnectsignal() local 1887 if (copy_from_user(&ds, arg, sizeof(ds))) in proc_disconnectsignal() 1889 ps->discsignr = ds.signr; in proc_disconnectsignal() 1890 ps->disccontext = ds.context; in proc_disconnectsignal()
|
/linux-4.4.14/drivers/pcmcia/ |
D | Makefile | 9 pcmcia-y += ds.o pcmcia_resource.o cistpl.o pcmcia_cis.o
|
/linux-4.4.14/tools/testing/selftests/x86/ |
D | entry_from_vm86.c | 180 v86.regs.ds = load_addr / 16; in main()
|
/linux-4.4.14/arch/s390/kernel/ |
D | nmi.c | 345 if (mci.ds && mci.fa) in s390_do_machine_check()
|
/linux-4.4.14/drivers/isdn/i4l/ |
D | isdn_tty.c | 3407 char ds[ISDN_MSNLEN]; in isdn_tty_parse_at() local 3430 isdn_tty_getdial(++p, ds, sizeof ds); in isdn_tty_parse_at() 3434 else if (strlen(ds)) in isdn_tty_parse_at() 3435 isdn_tty_dial(ds, info, m); in isdn_tty_parse_at() 3485 snprintf(ds, sizeof(ds), "\r\n%d", info->emu.charge); in isdn_tty_parse_at() 3486 isdn_tty_at_cout(ds, info); in isdn_tty_parse_at() 3572 isdn_tty_get_msnstr(ds, &p); in isdn_tty_parse_at() 3573 isdn_tty_suspend(ds, info, m); in isdn_tty_parse_at() 3577 isdn_tty_get_msnstr(ds, &p); in isdn_tty_parse_at() 3578 isdn_tty_resume(ds, info, m); in isdn_tty_parse_at()
|
/linux-4.4.14/arch/sparc/kernel/ |
D | Makefile | 110 obj-$(CONFIG_SUN_LDOMS) += ldc.o vio.o viohs.o ds.o
|
/linux-4.4.14/arch/powerpc/boot/dts/fsl/ |
D | e5500_power_isa.dtsi | 42 power-isa-ds; // Decorated Storage
|
D | e500mc_power_isa.dtsi | 42 power-isa-ds; // Decorated Storage
|
D | e6500_power_isa.dtsi | 42 power-isa-ds; // Decorated Storage
|
/linux-4.4.14/arch/x86/xen/ |
D | smp.c | 318 loadsegment(ds, __USER_DS); in xen_smp_prepare_boot_cpu() 410 ctxt->user_regs.ds = __USER_DS; in cpu_initialize_context()
|
/linux-4.4.14/Documentation/leds/ |
D | leds-lm3556.txt | 6 * Datasheet: http://www.national.com/ds/LM/LM3556.pdf
|
/linux-4.4.14/Documentation/misc-devices/ |
D | max6875 | 9 http://pdfserv.maxim-ic.com/en/ds/MAX6874-MAX6875.pdf
|
/linux-4.4.14/arch/x86/um/ |
D | signal.c | 172 GETREG(DS, ds); in copy_sc_from_user() 261 PUTREG(DS, ds); in copy_sc_to_user()
|
/linux-4.4.14/Documentation/zh_CN/ |
D | oops-tracing.txt | 169 Aug 29 09:51:01 blizard kernel: ds: 0018 es: 0018 fs: 002b gs: 002b ss: 0018
|