/drivers/infiniband/ulp/rtrs/ |
D | rtrs-clt-stats.c | 45 size_t used; in rtrs_clt_stats_migration_cnt_to_str() local 48 used = scnprintf(buf, len, " "); in rtrs_clt_stats_migration_cnt_to_str() 50 used += scnprintf(buf + used, len - used, " CPU%u", cpu); in rtrs_clt_stats_migration_cnt_to_str() 52 used += scnprintf(buf + used, len - used, "\nfrom:"); in rtrs_clt_stats_migration_cnt_to_str() 55 used += scnprintf(buf + used, len - used, " %d", in rtrs_clt_stats_migration_cnt_to_str() 59 used += scnprintf(buf + used, len - used, "\nto :"); in rtrs_clt_stats_migration_cnt_to_str() 62 used += scnprintf(buf + used, len - used, " %d", in rtrs_clt_stats_migration_cnt_to_str() 65 used += scnprintf(buf + used, len - used, "\n"); in rtrs_clt_stats_migration_cnt_to_str() 67 return used; in rtrs_clt_stats_migration_cnt_to_str()
|
/drivers/vhost/ |
D | vringh.c | 88 while (len && iov->i < iov->used) { in vringh_iov_xfer() 292 riov->i = riov->used = 0; in __vringh_iov() 294 wiov->i = wiov->used = 0; in __vringh_iov() 349 if (unlikely(wiov && wiov->used)) { in __vringh_iov() 375 if (unlikely(iov->used == (iov->max_num & ~VRINGH_IOV_ALLOCATED))) { in __vringh_iov() 381 iov->iov[iov->used].iov_base = addr; in __vringh_iov() 382 iov->iov[iov->used].iov_len = len; in __vringh_iov() 383 iov->used++; in __vringh_iov() 420 const struct vring_used_elem *used, in __vringh_complete() argument 433 used_ring = vrh->vring.used; in __vringh_complete() [all …]
|
/drivers/gpu/drm/savage/ |
D | savage_bci.c | 318 dev_priv->dma_pages[i].used = 0; in savage_dma_init() 337 dev_priv->dma_pages[i].used = 0; in savage_dma_reset() 376 dev_priv->dma_pages[cur].used; in savage_dma_alloc() 383 cur, dev_priv->dma_pages[cur].used, n, rest, nr_pages); in savage_dma_alloc() 387 cur * SAVAGE_DMA_PAGE_SIZE + dev_priv->dma_pages[cur].used; in savage_dma_alloc() 390 dev_priv->dma_pages[cur].used += rest; in savage_dma_alloc() 399 dev_priv->dma_pages[i].used = 0; in savage_dma_alloc() 407 if (dev_priv->dma_pages[i].used) { in savage_dma_alloc() 409 i, dev_priv->dma_pages[i].used); in savage_dma_alloc() 413 dev_priv->dma_pages[i].used = SAVAGE_DMA_PAGE_SIZE; in savage_dma_alloc() [all …]
|
/drivers/net/wireless/intel/iwlwifi/dvm/ |
D | sta.c | 30 if (!(priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE)) in iwl_sta_ucode_activate() 35 if (priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE) { in iwl_sta_ucode_activate() 41 priv->stations[sta_id].used |= IWL_STA_UCODE_ACTIVE; in iwl_sta_ucode_activate() 261 if (!priv->stations[i].used && in iwl_prep_station() 278 if (priv->stations[sta_id].used & IWL_STA_UCODE_INPROGRESS) { in iwl_prep_station() 284 if ((priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE) && in iwl_prep_station() 285 (priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE) && in iwl_prep_station() 293 station->used = IWL_STA_DRIVER_ACTIVE; in iwl_prep_station() 352 if (priv->stations[sta_id].used & IWL_STA_UCODE_INPROGRESS) { in iwl_add_station_common() 359 if ((priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE) && in iwl_add_station_common() [all …]
|
/drivers/gpu/drm/i810/ |
D | i810_dma.c | 59 int used; in i810_freelist_get() local 67 used = cmpxchg(buf_priv->in_use, I810_BUF_FREE, in i810_freelist_get() 69 if (used == I810_BUF_FREE) in i810_freelist_get() 82 int used; in i810_freelist_put() local 85 used = cmpxchg(buf_priv->in_use, I810_BUF_CLIENT, I810_BUF_FREE); in i810_freelist_put() 86 if (used != I810_BUF_CLIENT) { in i810_freelist_put() 714 struct drm_buf *buf, int discard, int used) in i810_dma_dispatch_vertex() argument 731 if (used < 0 || used > 4 * 1024) in i810_dma_dispatch_vertex() 732 used = 0; in i810_dma_dispatch_vertex() 741 ((GFX_OP_PRIMITIVE | prim | ((used / 4) - 2))); in i810_dma_dispatch_vertex() [all …]
|
/drivers/tty/ |
D | tty_buffer.c | 100 p->used = 0; in tty_buffer_reset() 267 left = 2 * b->size - b->used; in __tty_buffer_request_room() 269 left = b->size - b->used; in __tty_buffer_request_room() 281 smp_store_release(&b->commit, b->used); in __tty_buffer_request_room() 323 memcpy(char_buf_ptr(tb, tb->used), chars, space); in tty_insert_flip_string_fixed_flag() 325 memset(flag_buf_ptr(tb, tb->used), flag, space); in tty_insert_flip_string_fixed_flag() 326 tb->used += space; in tty_insert_flip_string_fixed_flag() 358 memcpy(char_buf_ptr(tb, tb->used), chars, space); in tty_insert_flip_string_flags() 359 memcpy(flag_buf_ptr(tb, tb->used), flags, space); in tty_insert_flip_string_flags() 360 tb->used += space; in tty_insert_flip_string_flags() [all …]
|
/drivers/staging/media/atomisp/i2c/ov5693/ |
D | ov5693.h | 204 bool used; member 1110 .used = 0, 1124 .used = 0, 1138 .used = 0, 1152 .used = 0, 1176 .used = 0, 1190 .used = 0, 1204 .used = 0, 1218 .used = 0, 1232 .used = 0, [all …]
|
/drivers/net/wireless/marvell/mwifiex/ |
D | README | 45 The above command can be used to connect to an AP with a particular SSID. 48 …Note: Every time before connecting to an AP scan command (iw dev mlan0 scan) should be used by use… 51 This command will be used to disconnect from an AP. 55 The command will be used to join or create an ibss. Optionally, operating frequency, 60 The command will be used to leave an ibss network. 63 The command will be used to get the connection status. The command will return parameters 70 The debugfs interface can be used for configurations and for getting 83 The command will be used to change the regulatory domain. 86 The command will be used to get current regulatory domain. 89 This command is used to get driver info. [all …]
|
/drivers/infiniband/hw/hfi1/ |
D | affinity.c | 78 cpumask_clear(&set->used); in init_cpu_mask_set() 85 if (cpumask_equal(&set->mask, &set->used)) { in _cpu_mask_set_gen_inc() 91 cpumask_clear(&set->used); in _cpu_mask_set_gen_inc() 97 if (cpumask_empty(&set->used) && set->gen) { in _cpu_mask_set_gen_dec() 99 cpumask_copy(&set->used, &set->mask); in _cpu_mask_set_gen_dec() 114 cpumask_andnot(diff, &set->mask, &set->used); in cpu_mask_set_get_first() 120 cpumask_set_cpu(cpu, &set->used); in cpu_mask_set_get_first() 130 cpumask_clear_cpu(cpu, &set->used); in cpu_mask_set_put() 174 cpumask_clear(&node_affinity.proc.used); in node_affinity_init() 386 cpumask_andnot(available_cpus, &set->mask, &set->used); in _dev_comp_vect_cpu_get() [all …]
|
/drivers/usb/common/ |
D | Kconfig | 21 UTMI+ Low Pin Interface (ULPI) is specification for a commonly used 23 of registers that can be used to detect the vendor and product which 45 based USB cable detection, used typically if an input GPIO is used 46 to detect USB ID pin, and another input GPIO may be also used to detect 47 Vbus pin at the same time, it also can be used to enable/disable 48 device if an input GPIO is only used to detect Vbus pin.
|
/drivers/mtd/ubi/ |
D | fastmap-wl.c | 60 for (i = pool->used; i < pool->size; i++) { in return_unused_pool_pebs() 192 wl_pool->used = 0; in ubi_refill_pools() 193 pool->used = 0; in ubi_refill_pools() 242 if (pool->used == pool->size || wl_pool->used == wl_pool->size) { in ubi_wl_get_peb() 255 if (pool->used == pool->size) { in ubi_wl_get_peb() 272 ubi_assert(pool->used < pool->size); in ubi_wl_get_peb() 273 ret = pool->pebs[pool->used++]; in ubi_wl_get_peb() 291 if (pool->used == pool->size) { in get_peb_for_wl() 302 pnum = pool->pebs[pool->used++]; in get_peb_for_wl()
|
/drivers/usb/misc/ |
D | chaoskey.c | 85 int used; /* bytes of buf consumed */ member 327 dev->used = 0; in chaos_read_callback() 348 if (dev->valid != dev->used) { in _chaoskey_fill() 350 dev->valid, dev->used); in _chaoskey_fill() 438 if (dev->valid == dev->used) { in chaoskey_read() 446 this_time = dev->valid - dev->used; in chaoskey_read() 450 remain = copy_to_user(buffer, dev->buf + dev->used, this_time); in chaoskey_read() 457 dev->used += this_time - remain; in chaoskey_read() 465 dev->used += this_time; in chaoskey_read() 506 if (dev->valid == dev->used) in chaoskey_rng_read() [all …]
|
/drivers/pinctrl/nomadik/ |
D | pinctrl-nomadik.h | 30 .used = altc1_used,\ 35 .used = altc2_used,\ 40 .used = altc3_used,\ 45 .used = altc4_used,\ 79 bool used:1; member
|
/drivers/gpu/drm/msm/ |
D | Kconfig | 93 Choose this option if the 28nm DSI PHY is used on the platform. 100 Choose this option if the 20nm DSI PHY is used on the platform. 107 Choose this option if the 28nm DSI PHY 8960 variant is used on the 111 bool "Enable DSI 14nm PHY driver in MSM DRM (used by MSM8996/APQ8096)" 115 Choose this option if DSI PHY on 8996 is used on the platform. 118 bool "Enable DSI 10nm PHY driver in MSM DRM (used by SDM845)" 122 Choose this option if DSI PHY on SDM845 is used on the platform. 125 bool "Enable DSI 7nm PHY driver in MSM DRM (used by SM8150/SM8250)" 129 Choose this option if DSI PHY on SM8150/SM8250 is used on the
|
/drivers/staging/unisys/Documentation/ABI/ |
D | sysfs-platform-visorchipset | 7 Description: used to send the ID of a string that should be displayed on 17 Description: used to set the value of the progress bar on the s-Par automatic 26 Description: used to send the ID of a string that should be displayed on 47 Description: This field is used to tell s-Par which type of recovery tool 49 value is dependent on the type of installation software used to 57 Description: This entry is used by a Unisys support script installed on the 68 The parahotplug/deviceenabled interface is used to acknowledge 76 Description: This entry is used by a Unisys support script installed on the 87 The parahotplug/devicedisaabled interface is used to acknowledge
|
/drivers/staging/media/atomisp/i2c/ |
D | gc2235.h | 143 bool used; member 541 .used = 0, 557 .used = 0, 572 .used = 0, 598 .used = 0, 613 .used = 0, 628 .used = 0, 649 .used = 0, 664 .used = 0,
|
/drivers/staging/gdm724x/ |
D | Kconfig | 11 It exposes 4 network devices to be used per PDN and 2 tty devices to be 12 used for AT commands and DM monitoring applications. 15 GCT-ATCx can be used for AT Commands 16 GCT-DMx can be used for LTE protocol monitoring
|
/drivers/dma/ |
D | dmaengine.h | 71 dma_cookie_t used, complete; in dma_cookie_status() local 73 used = chan->cookie; in dma_cookie_status() 78 state->used = used; in dma_cookie_status() 82 return dma_async_is_complete(cookie, complete, used); in dma_cookie_status()
|
/drivers/video/fbdev/omap2/omapfb/displays/ |
D | Kconfig | 54 This is the LCD panel used on Nokia N900 60 LCD Panel used on the Gumstix Overo Palo35 67 LCD Panel used in TI's SDP3430 and EVM boards 74 LCD panel used in Openmoko. 81 LCD Panel used in OMAP3 Pandora 89 This NEC NL8048HL11 panel is TFT LCD used in the
|
/drivers/soc/amlogic/ |
D | meson-canvas.c | 37 u8 used[NUM_CANVAS]; member 99 if (!canvas->used[canvas_index]) { in meson_canvas_config() 137 if (!canvas->used[i]) { in meson_canvas_alloc() 138 canvas->used[i] = 1; in meson_canvas_alloc() 156 if (!canvas->used[canvas_index]) { in meson_canvas_free() 162 canvas->used[canvas_index] = 0; in meson_canvas_free()
|
/drivers/irqchip/ |
D | irq-ls-scfg-msi.c | 56 unsigned long *used; member 148 pos = find_first_zero_bit(msi_data->used, msi_data->irqs_num); in ls_scfg_msi_domain_irq_alloc() 150 __set_bit(pos, msi_data->used); in ls_scfg_msi_domain_irq_alloc() 183 __clear_bit(pos, msi_data->used); in ls_scfg_msi_domain_irq_free() 282 bitmap_clear(msi_data->used, hwirq, 1); in ls_scfg_msi_setup_hwirq() 299 bitmap_set(msi_data->used, hwirq, 1); in ls_scfg_msi_teardown_hwirq() 367 msi_data->used = devm_kcalloc(&pdev->dev, in ls_scfg_msi_probe() 369 sizeof(*msi_data->used), in ls_scfg_msi_probe() 371 if (!msi_data->used) in ls_scfg_msi_probe() 377 bitmap_set(msi_data->used, 0, msi_data->irqs_num); in ls_scfg_msi_probe()
|
/drivers/net/ipa/ |
D | gsi_trans.c | 408 u32 which = trans->used++; in gsi_trans_cmd_add() 452 trans->used++; /* Transaction now owns the (DMA mapped) page */ in gsi_trans_page_add() 461 u32 used; in gsi_trans_skb_add() local 471 used = ret; in gsi_trans_skb_add() 473 ret = dma_map_sg(trans->gsi->dev, sg, used, trans->direction); in gsi_trans_skb_add() 477 trans->used += used; /* Transaction now owns the (DMA mapped) skb */ in gsi_trans_skb_add() 563 for_each_sg(trans->sgl, sg, trans->used, i) { in __gsi_trans_commit() 564 bool last_tre = i == trans->used - 1; in __gsi_trans_commit() 577 ring->index += trans->used; in __gsi_trans_commit() 605 if (trans->used) in gsi_trans_commit() [all …]
|
/drivers/mailbox/ |
D | Kconfig | 17 used in Secure mode only. 33 which can be used in Secure mode only. 40 Mailbox (IPCM), tailored for the Calxeda Highbank. It is used to 89 (PCC) is typically used by CPPC (ACPI CPU Performance management), 98 An implementation of the Altera Mailbox soft core. It is used 106 An implementation of the BCM2385 Mailbox. It is used to invoke 124 and K3 architecture SoCs. These may be used for communication between 134 An implementation of the hi3660 mailbox. It is used to send message 144 An implementation of the hi6220 mailbox. It is used to send message 168 The Tegra HSP driver is used for the interprocessor communication [all …]
|
/drivers/hwtracing/coresight/ |
D | coresight-cti-sysfs.c | 830 int used = 0, reg_idx; in chan_xtrigs_in_show() local 836 used += sprintf(buf + used, "%d ", reg_idx); in chan_xtrigs_in_show() 839 used += sprintf(buf + used, "\n"); in chan_xtrigs_in_show() 840 return used; in chan_xtrigs_in_show() 850 int used = 0, reg_idx; in chan_xtrigs_out_show() local 856 used += sprintf(buf + used, "%d ", reg_idx); in chan_xtrigs_out_show() 859 used += sprintf(buf + used, "\n"); in chan_xtrigs_out_show() 860 return used; in chan_xtrigs_out_show() 999 int sig_idx, used = 0; in trigin_type_show() local 1004 used += sprintf(buf + used, "%s ", name); in trigin_type_show() [all …]
|
/drivers/staging/pi433/Documentation/ |
D | pi433.txt | 77 frequency used for transmission. 80 bit rate used for transmission. 135 Attention: For telegram length over 255 bytes, this option can't be used 136 Attention: should be used in combination with sync, only 141 The address byte can be used for address filtering, so the receiver 143 Attention: should be used in combination with sync, only 158 contains up to eight values, that are used as the sync pattern 161 one byte, used as address byte on address byte option. 168 frequency used for transmission. 171 bit rate used for transmission. [all …]
|