/linux-4.1.27/drivers/spi/ |
D | spi-mpc52xx.c | 83 int (*state)(int irq, struct mpc52xx_spi *ms, u8 status, u8 data); 96 static void mpc52xx_spi_chipsel(struct mpc52xx_spi *ms, int value) in mpc52xx_spi_chipsel() argument 100 if (ms->gpio_cs_count > 0) { in mpc52xx_spi_chipsel() 101 cs = ms->message->spi->chip_select; in mpc52xx_spi_chipsel() 102 gpio_set_value(ms->gpio_cs[cs], value ? 0 : 1); in mpc52xx_spi_chipsel() 104 out_8(ms->regs + SPI_PORTDATA, value ? 0 : 0x08); in mpc52xx_spi_chipsel() 112 static void mpc52xx_spi_start_transfer(struct mpc52xx_spi *ms) in mpc52xx_spi_start_transfer() argument 114 ms->rx_buf = ms->transfer->rx_buf; in mpc52xx_spi_start_transfer() 115 ms->tx_buf = ms->transfer->tx_buf; in mpc52xx_spi_start_transfer() 116 ms->len = ms->transfer->len; in mpc52xx_spi_start_transfer() [all …]
|
D | spi-s3c64xx.c | 473 int ms; in wait_for_dma() local 476 ms = xfer->len * 8 * 1000 / sdd->cur_speed; in wait_for_dma() 477 ms += 10; /* some tolerance */ in wait_for_dma() 479 val = msecs_to_jiffies(ms) + 10; in wait_for_dma() 519 int ms; in wait_for_pio() local 522 ms = xfer->len * 8 * 1000 / sdd->cur_speed; in wait_for_pio() 523 ms += 10; /* some tolerance */ in wait_for_pio() 525 val = msecs_to_loops(ms); in wait_for_pio() 550 (loops ? ms : 0)); in wait_for_pio()
|
D | spi.c | 681 unsigned long ms = 1; in spi_transfer_one_message() local 700 ms = xfer->len * 8 * 1000 / xfer->speed_hz; in spi_transfer_one_message() 701 ms += ms + 100; /* some tolerance */ in spi_transfer_one_message() 703 ms = wait_for_completion_timeout(&master->xfer_completion, in spi_transfer_one_message() 704 msecs_to_jiffies(ms)); in spi_transfer_one_message() 707 if (ms == 0) { in spi_transfer_one_message()
|
/linux-4.1.27/drivers/scsi/ |
D | mesh.c | 185 static void mesh_done(struct mesh_state *ms, int start_next); 186 static void mesh_interrupt(struct mesh_state *ms); 187 static void cmd_complete(struct mesh_state *ms); 188 static void set_dma_cmds(struct mesh_state *ms, struct scsi_cmnd *cmd); 189 static void halt_dma(struct mesh_state *ms); 190 static void phase_mismatch(struct mesh_state *ms); 212 static void dlog(struct mesh_state *ms, char *fmt, int a) in dlog() argument 214 struct mesh_target *tp = &ms->tgts[ms->conn_tgt]; in dlog() 218 slp = &ms->log[ms->log_ix]; in dlog() 221 tlp->phase = (ms->msgphase << 4) + ms->phase; in dlog() [all …]
|
D | sg.c | 1015 unsigned int ms; in sg_ioctl() local 1035 ms = jiffies_to_msecs(jiffies); in sg_ioctl() 1037 (ms > srp->header.duration) ? in sg_ioctl() 1038 (ms - srp->header.duration) : 0; in sg_ioctl() 1286 unsigned int ms; in sg_rq_end_io() local 1309 ms = jiffies_to_msecs(jiffies); in sg_rq_end_io() 1310 srp->header.duration = (ms > srp->header.duration) ? in sg_rq_end_io() 1311 (ms - srp->header.duration) : 0; in sg_rq_end_io() 2596 unsigned int ms; in sg_proc_debug_helper() local 2639 ms = jiffies_to_msecs(jiffies); in sg_proc_debug_helper() [all …]
|
/linux-4.1.27/fs/dlm/ |
D | util.c | 86 void dlm_message_out(struct dlm_message *ms) in dlm_message_out() argument 88 header_out(&ms->m_header); in dlm_message_out() 90 ms->m_type = cpu_to_le32(ms->m_type); in dlm_message_out() 91 ms->m_nodeid = cpu_to_le32(ms->m_nodeid); in dlm_message_out() 92 ms->m_pid = cpu_to_le32(ms->m_pid); in dlm_message_out() 93 ms->m_lkid = cpu_to_le32(ms->m_lkid); in dlm_message_out() 94 ms->m_remid = cpu_to_le32(ms->m_remid); in dlm_message_out() 95 ms->m_parent_lkid = cpu_to_le32(ms->m_parent_lkid); in dlm_message_out() 96 ms->m_parent_remid = cpu_to_le32(ms->m_parent_remid); in dlm_message_out() 97 ms->m_exflags = cpu_to_le32(ms->m_exflags); in dlm_message_out() [all …]
|
D | requestqueue.c | 34 void dlm_add_requestqueue(struct dlm_ls *ls, int nodeid, struct dlm_message *ms) in dlm_add_requestqueue() argument 37 int length = ms->m_header.h_length - sizeof(struct dlm_message); in dlm_add_requestqueue() 47 memcpy(&e->request, ms, ms->m_header.h_length); in dlm_add_requestqueue() 68 struct dlm_message *ms; in dlm_process_requestqueue() local 82 ms = &e->request; in dlm_process_requestqueue() 86 ms->m_type, ms->m_header.h_nodeid, in dlm_process_requestqueue() 87 ms->m_lkid, ms->m_remid, ms->m_result, in dlm_process_requestqueue() 130 static int purge_request(struct dlm_ls *ls, struct dlm_message *ms, int nodeid) in purge_request() argument 132 uint32_t type = ms->m_type; in purge_request() 157 struct dlm_message *ms; in dlm_purge_requestqueue() local [all …]
|
D | lock.c | 89 struct dlm_message *ms); 90 static int receive_extralen(struct dlm_message *ms); 1512 struct dlm_message *ms) in _remove_from_waiters() argument 1551 is_overlap_cancel(lkb) && ms && !ms->m_result) { in _remove_from_waiters() 1569 lkb->lkb_id, ms ? ms->m_header.h_nodeid : 0, lkb->lkb_remid, in _remove_from_waiters() 1610 static int remove_from_waiters_ms(struct dlm_lkb *lkb, struct dlm_message *ms) in remove_from_waiters_ms() argument 1615 if (ms->m_flags != DLM_IFL_STUB_MS) in remove_from_waiters_ms() 1617 error = _remove_from_waiters(lkb, ms->m_type, ms); in remove_from_waiters_ms() 1618 if (ms->m_flags != DLM_IFL_STUB_MS) in remove_from_waiters_ms() 2029 struct dlm_message *ms) in set_lvb_lock_pc() argument [all …]
|
D | util.h | 16 void dlm_message_out(struct dlm_message *ms); 17 void dlm_message_in(struct dlm_message *ms);
|
D | requestqueue.h | 16 void dlm_add_requestqueue(struct dlm_ls *ls, int nodeid, struct dlm_message *ms);
|
D | lock.h | 19 void dlm_receive_message_saved(struct dlm_ls *ls, struct dlm_message *ms,
|
/linux-4.1.27/drivers/md/ |
D | dm-raid1.c | 42 struct mirror_set *ms; member 90 struct mirror_set *ms = context; in wakeup_mirrord() local 92 queue_work(ms->kmirrord_wq, &ms->kmirrord_work); in wakeup_mirrord() 97 struct mirror_set *ms = (struct mirror_set *) data; in delayed_wake_fn() local 99 clear_bit(0, &ms->timer_pending); in delayed_wake_fn() 100 wakeup_mirrord(ms); in delayed_wake_fn() 103 static void delayed_wake(struct mirror_set *ms) in delayed_wake() argument 105 if (test_and_set_bit(0, &ms->timer_pending)) in delayed_wake() 108 ms->timer.expires = jiffies + HZ / 5; in delayed_wake() 109 ms->timer.data = (unsigned long) ms; in delayed_wake() [all …]
|
/linux-4.1.27/Documentation/fb/ |
D | viafb.modes | 15 # Sync Width 3.813 us 0.064 ms 17 # Front Porch 0.636 us 0.318 ms 19 # Back Porch 1.907 us 1.048 ms 21 # Active Time 25.422 us 15.253 ms 23 # Blank Time 6.356 us 1.430 ms 40 # Sync Width 2.032 us 0.080 ms 42 # Front Porch 0.508 us 0.027 ms 44 # Back Porch 3.810 us 0.427 ms 46 # Active Time 20.317 us 12.800 ms 48 # Blank Time 6.349 us 0.533 ms [all …]
|
/linux-4.1.27/kernel/ |
D | module_signing.c | 190 struct module_signature ms; in mod_verify_sig() local 198 if (modlen <= sizeof(ms)) in mod_verify_sig() 201 memcpy(&ms, mod + (modlen - sizeof(ms)), sizeof(ms)); in mod_verify_sig() 202 modlen -= sizeof(ms); in mod_verify_sig() 204 sig_len = be32_to_cpu(ms.sig_len); in mod_verify_sig() 208 if ((size_t)ms.signer_len + ms.key_id_len >= modlen) in mod_verify_sig() 210 modlen -= (size_t)ms.signer_len + ms.key_id_len; in mod_verify_sig() 216 if (ms.algo != PKEY_ALGO_RSA || in mod_verify_sig() 217 ms.id_type != PKEY_ID_X509) in mod_verify_sig() 220 if (ms.hash >= PKEY_HASH__LAST || in mod_verify_sig() [all …]
|
/linux-4.1.27/net/mac80211/ |
D | rc80211_minstrel_debugfs.c | 60 struct minstrel_debugfs_info *ms; in minstrel_stats_read() local 62 ms = file->private_data; in minstrel_stats_read() 63 return simple_read_from_buffer(buf, len, ppos, ms->buf, ms->len); in minstrel_stats_read() 77 struct minstrel_debugfs_info *ms; in minstrel_stats_open() local 81 ms = kmalloc(2048, GFP_KERNEL); in minstrel_stats_open() 82 if (!ms) in minstrel_stats_open() 85 file->private_data = ms; in minstrel_stats_open() 86 p = ms->buf; in minstrel_stats_open() 133 ms->len = p - ms->buf; in minstrel_stats_open() 135 WARN_ON(ms->len + sizeof(*ms) > 2048); in minstrel_stats_open() [all …]
|
D | rc80211_minstrel_ht_debugfs.c | 112 struct minstrel_debugfs_info *ms; in minstrel_ht_stats_open() local 124 ms = kmalloc(32768, GFP_KERNEL); in minstrel_ht_stats_open() 125 if (!ms) in minstrel_ht_stats_open() 128 file->private_data = ms; in minstrel_ht_stats_open() 129 p = ms->buf; in minstrel_ht_stats_open() 152 ms->len = p - ms->buf; in minstrel_ht_stats_open() 153 WARN_ON(ms->len + sizeof(*ms) > 32768); in minstrel_ht_stats_open() 262 struct minstrel_debugfs_info *ms; in minstrel_ht_stats_csv_open() local 274 ms = kmalloc(32768, GFP_KERNEL); in minstrel_ht_stats_csv_open() 276 if (!ms) in minstrel_ht_stats_csv_open() [all …]
|
/linux-4.1.27/mm/ |
D | sparse.c | 108 int __section_nr(struct mem_section* ms) in __section_nr() argument 118 if ((ms >= root) && (ms < (root + SECTIONS_PER_ROOT))) in __section_nr() 124 return (root_nr * SECTIONS_PER_ROOT) + (ms - root); in __section_nr() 178 struct mem_section *ms; in memory_present() local 183 ms = __nr_to_section(section); in memory_present() 184 if (!ms->section_mem_map) in memory_present() 185 ms->section_mem_map = sparse_encode_early_nid(nid) | in memory_present() 232 static int __meminit sparse_init_one_section(struct mem_section *ms, in sparse_init_one_section() argument 236 if (!present_section(ms)) in sparse_init_one_section() 239 ms->section_mem_map &= ~SECTION_MAP_MASK; in sparse_init_one_section() [all …]
|
D | page_ext.c | 264 struct mem_section *ms; in __free_page_ext() local 267 ms = __pfn_to_section(pfn); in __free_page_ext() 268 if (!ms || !ms->page_ext) in __free_page_ext() 270 base = ms->page_ext + pfn; in __free_page_ext() 272 ms->page_ext = NULL; in __free_page_ext()
|
D | memory_hotplug.c | 188 struct mem_section *ms; in register_page_bootmem_info_section() local 192 ms = __nr_to_section(section_nr); in register_page_bootmem_info_section() 195 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr); in register_page_bootmem_info_section() 222 struct mem_section *ms; in register_page_bootmem_info_section() local 229 ms = __nr_to_section(section_nr); in register_page_bootmem_info_section() 231 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr); in register_page_bootmem_info_section() 527 struct mem_section *ms; in find_smallest_section_pfn() local 530 ms = __pfn_to_section(start_pfn); in find_smallest_section_pfn() 532 if (unlikely(!valid_section(ms))) in find_smallest_section_pfn() 552 struct mem_section *ms; in find_biggest_section_pfn() local [all …]
|
D | sparse-vmemmap.c | 214 struct mem_section *ms; in sparse_mem_maps_populate_node() local 222 ms = __nr_to_section(pnum); in sparse_mem_maps_populate_node() 225 ms->section_mem_map = 0; in sparse_mem_maps_populate_node()
|
/linux-4.1.27/Documentation/devicetree/bindings/input/touchscreen/ |
D | brcm,iproc-touchscreen.txt | 14 - settling_timeout: The settling duration (in ms) is the amount of time 18 0 = 0.008 ms 19 1 = 0.01 ms 20 2 = 0.02 ms 21 3 = 0.04 ms 22 4 = 0.08 ms 23 5 = 0.16 ms 24 6 = 0.32 ms 25 7 = 0.64 ms 26 8 = 1.28 ms [all …]
|
D | stmpe.txt | 18 100 us, 3 -> 500 us, 4-> 1 ms, 5 -> 5 ms, 6 -> 10 ms, 7 -> 50 ms) recommended 21 -> 1 ms, 4 -> 5 ms, 5 -> 10 ms, 6 for 50 ms, 7 -> 100 ms) recommended is 2
|
D | tsc2005.txt | 14 - ti,esd-recovery-timeout-ms : integer, if the touchscreen does not respond after 40 ti,esd-recovery-timeout-ms = <8000>;
|
/linux-4.1.27/arch/ia64/kernel/ |
D | mca.c | 896 const pal_min_state_area_t *ms = sos->pal_min_state; in finish_pt_regs() local 903 regs->cr_iip = ms->pmsa_iip; in finish_pt_regs() 904 regs->cr_ipsr = ms->pmsa_ipsr; in finish_pt_regs() 905 regs->cr_ifs = ms->pmsa_ifs; in finish_pt_regs() 907 regs->cr_iip = ms->pmsa_xip; in finish_pt_regs() 908 regs->cr_ipsr = ms->pmsa_xpsr; in finish_pt_regs() 909 regs->cr_ifs = ms->pmsa_xfs; in finish_pt_regs() 911 sos->iip = ms->pmsa_iip; in finish_pt_regs() 912 sos->ipsr = ms->pmsa_ipsr; in finish_pt_regs() 913 sos->ifs = ms->pmsa_ifs; in finish_pt_regs() [all …]
|
D | mca_asm.S | 409 #define ms r4 macro 457 add ms=MCA_SOS_OFFSET+8, r3 464 add temp2=temp2, ms // struct ia64_sal_os_state+8 on MCA or INIT stack 927 ld8 ms=[temp2] // pal_min_state, physical 929 dep temp1=-1,ms,62,2 // set region 6 1071 #undef ms
|
/linux-4.1.27/net/netfilter/ipvs/ |
D | ip_vs_sync.c | 298 sb_dequeue(struct netns_ipvs *ipvs, struct ipvs_master_sync_state *ms) in sb_dequeue() argument 303 if (list_empty(&ms->sync_queue)) { in sb_dequeue() 307 sb = list_entry(ms->sync_queue.next, struct ip_vs_sync_buff, in sb_dequeue() 310 ms->sync_queue_len--; in sb_dequeue() 311 if (!ms->sync_queue_len) in sb_dequeue() 312 ms->sync_queue_delay = 0; in sb_dequeue() 355 struct ipvs_master_sync_state *ms) in sb_queue_tail() argument 357 struct ip_vs_sync_buff *sb = ms->sync_buff; in sb_queue_tail() 361 ms->sync_queue_len < sysctl_sync_qlen_max(ipvs)) { in sb_queue_tail() 362 if (!ms->sync_queue_len) in sb_queue_tail() [all …]
|
/linux-4.1.27/arch/mips/kernel/ |
D | spinlock_test.c | 93 struct spin_multi_state ms; in multi_get() local 96 ms.lock = __RAW_SPIN_LOCK_UNLOCKED("multi_get"); in multi_get() 97 ms.loops = 1000000; in multi_get() 99 atomic_set(&ms.start_wait, 2); in multi_get() 100 atomic_set(&ms.enter_wait, 2); in multi_get() 101 atomic_set(&ms.exit_wait, 2); in multi_get() 102 t1.state = &ms; in multi_get() 103 t2.state = &ms; in multi_get()
|
/linux-4.1.27/drivers/scsi/bfa/ |
D | bfa_fcs_lport.c | 1477 struct bfa_fcs_lport_s *port = fdmi->ms->port; in bfa_fcs_lport_fdmi_sm_offline() 1517 struct bfa_fcs_lport_s *port = fdmi->ms->port; in bfa_fcs_lport_fdmi_sm_sending_rhba() 1542 struct bfa_fcs_lport_s *port = fdmi->ms->port; in bfa_fcs_lport_fdmi_sm_rhba() 1591 struct bfa_fcs_lport_s *port = fdmi->ms->port; in bfa_fcs_lport_fdmi_sm_rhba_retry() 1622 struct bfa_fcs_lport_s *port = fdmi->ms->port; in bfa_fcs_lport_fdmi_sm_sending_rprt() 1647 struct bfa_fcs_lport_s *port = fdmi->ms->port; in bfa_fcs_lport_fdmi_sm_rprt() 1694 struct bfa_fcs_lport_s *port = fdmi->ms->port; in bfa_fcs_lport_fdmi_sm_rprt_retry() 1725 struct bfa_fcs_lport_s *port = fdmi->ms->port; in bfa_fcs_lport_fdmi_sm_sending_rpa() 1750 struct bfa_fcs_lport_s *port = fdmi->ms->port; in bfa_fcs_lport_fdmi_sm_rpa() 1795 struct bfa_fcs_lport_s *port = fdmi->ms->port; in bfa_fcs_lport_fdmi_sm_rpa_retry() [all …]
|
D | bfa_fcs.h | 92 struct bfa_fcs_lport_ms_s *ms; /* parent ms */ member 115 struct bfa_fcs_lport_ms_s ms; /* MS component of port */ member 164 #define BFA_FCS_GET_MS_FROM_PORT(port) (&port->port_topo.pfab.ms) 165 #define BFA_FCS_GET_FDMI_FROM_PORT(port) (&port->port_topo.pfab.ms.fdmi) 317 void bfa_fcs_lport_fdmi_init(struct bfa_fcs_lport_ms_s *ms); 318 void bfa_fcs_lport_fdmi_offline(struct bfa_fcs_lport_ms_s *ms); 319 void bfa_fcs_lport_fdmi_online(struct bfa_fcs_lport_ms_s *ms);
|
/linux-4.1.27/Documentation/scheduler/ |
D | sched-bwc.txt | 31 cpu.cfs_period_us=100ms 40 The minimum quota allowed for the quota or period is 1ms. There is also an 59 /proc/sys/kernel/sched_cfs_bandwidth_slice_us (default=5ms) 97 If period is 250ms and quota is also 250ms, the group will get 98 1 CPU worth of runtime every 250ms. 100 # echo 250000 > cpu.cfs_quota_us /* quota = 250ms */ 101 # echo 250000 > cpu.cfs_period_us /* period = 250ms */ 105 With 500ms period and 1000ms quota, the group can get 2 CPUs worth of 106 runtime every 500ms. 108 # echo 1000000 > cpu.cfs_quota_us /* quota = 1000ms */ [all …]
|
D | sched-deadline.txt | 373 executes for 10ms every 100ms. The second one, scheduled at SCHED_FIFO 374 priority 10, executes for 20ms every 150ms. The test will run for a total 396 of 10ms every 100ms (note that parameters are expressed in microseconds). 490 /* This creates a 10ms/30ms reservation */
|
/linux-4.1.27/drivers/net/ethernet/qlogic/qlcnic/ |
D | qlcnic_hw.c | 1316 struct qlcnic_ms_reg_ctrl *ms) in qlcnic_set_ms_controls() argument 1318 ms->control = QLCNIC_MS_CTRL; in qlcnic_set_ms_controls() 1319 ms->low = QLCNIC_MS_ADDR_LO; in qlcnic_set_ms_controls() 1320 ms->hi = QLCNIC_MS_ADDR_HI; in qlcnic_set_ms_controls() 1322 ms->wd[0] = QLCNIC_MS_WRTDATA_LO; in qlcnic_set_ms_controls() 1323 ms->rd[0] = QLCNIC_MS_RDDATA_LO; in qlcnic_set_ms_controls() 1324 ms->wd[1] = QLCNIC_MS_WRTDATA_HI; in qlcnic_set_ms_controls() 1325 ms->rd[1] = QLCNIC_MS_RDDATA_HI; in qlcnic_set_ms_controls() 1326 ms->wd[2] = QLCNIC_MS_WRTDATA_ULO; in qlcnic_set_ms_controls() 1327 ms->wd[3] = QLCNIC_MS_WRTDATA_UHI; in qlcnic_set_ms_controls() [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/input/ |
D | lpc32xx-key.txt | 11 - nxp,debounce-delay-ms: Debounce delay in ms 12 - nxp,scan-delay-ms: Repeated scan period in ms 28 nxp,debounce-delay-ms = <3>; 29 nxp,scan-delay-ms = <34>;
|
D | nvidia,tegra20-kbc.txt | 29 - nvidia,debounce-delay-ms: delay in milliseconds per row scan for debouncing 30 - nvidia,repeat-delay-ms: delay in milliseconds before repeat starts 44 nvidia,debounce-delay-ms = <640>;
|
D | input-reset.txt | 18 timeout-ms: duration keys must be pressed together in milliseconds before 29 timeout-ms = <3000>;
|
D | gpio-matrix-keypad.txt | 23 - debounce-delay-ms: debounce interval in milliseconds 30 debounce-delay-ms = <5>;
|
D | pxa27x-keypad.txt | 10 interval for matrix key. The value is in binary number of 2ms
|
/linux-4.1.27/drivers/staging/lustre/include/linux/libcfs/ |
D | libcfs_fail.h | 46 int __cfs_fail_timeout_set(__u32 id, __u32 value, int ms, int set); 123 static inline int cfs_fail_timeout_set(__u32 id, __u32 value, int ms, int set) in cfs_fail_timeout_set() argument 126 return __cfs_fail_timeout_set(id, value, ms, set); in cfs_fail_timeout_set() 134 #define CFS_FAIL_TIMEOUT_MS(id, ms) \ argument 135 cfs_fail_timeout_set(id, 0, ms, CFS_FAIL_LOC_NOSET) 142 #define CFS_FAIL_TIMEOUT_MS_ORSET(id, value, ms) \ argument 143 cfs_fail_timeout_set(id, value, ms, CFS_FAIL_LOC_ORSET)
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | procfs-diskstats | 14 7 - time spent reading (ms) 18 11 - time spent writing (ms) 20 13 - time spent doing I/Os (ms) 21 14 - weighted time spent doing I/Os (ms)
|
D | sysfs-class-led-driver-lm3533 | 28 1 - 262 ms 29 2 - 524 ms
|
D | sysfs-driver-hid-picolcd | 24 Reading/Writing: It is expressed in ms and permitted range is 25 0..30000ms.
|
D | sysfs-class-uwb_rc-wusbhc | 18 within 'wusb_trust_timeout' ms are considered to have 20 4000 ms is the value required by the WUSB
|
D | sysfs-driver-xen-blkback | 17 removing 5% of max_persistent_grants every 100ms.
|
D | debugfs-driver-genwqe | 70 Description: Default VF timeout 250ms. Testing might require 1000ms.
|
D | sysfs-block | 10 4 - time spent reading (ms) 14 8 - time spent writing (ms) 16 10 - time spent doing I/Os (ms) 17 11 - weighted time spent doing I/Os (ms)
|
D | sysfs-class-uwb_rc | 19 (~197 ms) as required by the specification. 107 The time (using the radio controllers internal 1 ms
|
D | sysfs-tty | 90 Show the closing delay time for this port in ms. 99 Show the close wait time for this port in ms.
|
D | sysfs-class-backlight-driver-adp8870 | 37 This value is updated every 80 ms (when the light sensor
|
/linux-4.1.27/fs/minix/ |
D | inode.c | 124 struct minix_super_block * ms; in minix_remount() local 127 ms = sbi->s_ms; in minix_remount() 131 if (ms->s_state & MINIX_VALID_FS || in minix_remount() 136 ms->s_state = sbi->s_mount_state; in minix_remount() 141 sbi->s_mount_state = ms->s_state; in minix_remount() 142 ms->s_state &= ~MINIX_VALID_FS; in minix_remount() 162 struct minix_super_block *ms; in minix_fill_super() local 183 ms = (struct minix_super_block *) bh->b_data; in minix_fill_super() 184 sbi->s_ms = ms; in minix_fill_super() 186 sbi->s_mount_state = ms->s_state; in minix_fill_super() [all …]
|
/linux-4.1.27/tools/power/cpupower/bench/ |
D | README-BENCH | 41 This part of the configuration file will create 25ms load/sleep turns, 48 Will increase load and sleep time by 25ms 5 times. 50 25ms load/sleep time repeated 20 times (cycles). 51 50ms load/sleep time repeated 20 times (cycles). 53 100ms load/sleep time repeated 20 times (cycles). 70 25 ms | 25 ms | 1 71 50 ms | 50 ms | 2 73 For example if ondemand governor is configured to have a 50ms 87 50 50 50 50ms ->time
|
/linux-4.1.27/tools/perf/ui/browsers/ |
D | annotate.c | 221 struct map_symbol *ms = ab->b.priv; in annotate_browser__draw_current_jump() local 222 struct symbol *sym = ms->sym; in annotate_browser__draw_current_jump() 345 struct map_symbol *ms = browser->b.priv; in annotate_browser__calc_percent() local 346 struct symbol *sym = ms->sym; in annotate_browser__calc_percent() 448 struct map_symbol *ms = browser->b.priv; in annotate_browser__callq() local 452 .map = ms->map, in annotate_browser__callq() 453 .addr = map__objdump_2mem(ms->map, dl->ops.target.addr), in annotate_browser__callq() 480 sym_title(ms->sym, ms->map, title, sizeof(title)); in annotate_browser__callq() 489 struct map_symbol *ms = browser->b.priv; in annotate_browser__find_offset() local 490 struct symbol *sym = ms->sym; in annotate_browser__find_offset() [all …]
|
D | hists.c | 63 if (he->ms.unfolded) in hist_browser__get_folding() 139 static char map_symbol__folded(const struct map_symbol *ms) in map_symbol__folded() argument 141 return ms->has_children ? tree__folded_sign(ms->unfolded) : ' '; in map_symbol__folded() 146 return map_symbol__folded(&he->ms); in hist_entry__folded() 151 return map_symbol__folded(&cl->ms); in callchain_list__folded() 154 static void map_symbol__set_folding(struct map_symbol *ms, bool unfold) in map_symbol__set_folding() argument 156 ms->unfolded = unfold ? ms->has_children : false; in map_symbol__set_folding() 192 unfolded = chain->ms.unfolded; in callchain_node__count_rows() 214 static bool map_symbol__toggle_fold(struct map_symbol *ms) in map_symbol__toggle_fold() argument 216 if (!ms) in map_symbol__toggle_fold() [all …]
|
/linux-4.1.27/arch/m68k/fpsp040/ |
D | sgetem.S | 94 movel LOCAL_HI(%a0),%d0 |load ms mant in d0 97 movel %d0,LOCAL_HI(%a0) |put ms mant back on stack 106 | ms mantissa part in d0 111 tstl %d0 |if any bits set in ms mant 113 | ;else no bits set in ms mant 119 exg %d0,%d1 |shift ls mant to ms mant 121 lsll %d3,%d0 |shift first 1 to integer bit in ms mant 128 lsll %d3,%d0 |shift ms mant until j-bit is set 134 | ;be shifted into ms mant 135 orl %d6,%d0 |shift the ls mant bits into the ms mant
|
D | x_store.S | 118 | extended -> |s| exp | |1| ms mant | | ls mant | 154 movel LOCAL_HI(%a1),%d1 |get ms mantissa 155 bfextu %d1{#1:#20},%d1 |get upper 20 bits of ms 156 orl %d1,%d0 |put these bits in ms word of double 158 movel LOCAL_HI(%a1),%d1 |get ms mantissa
|
D | round.S | 299 | FP_SCR1 = exponent, ms mantissa part, ls mantissa part 327 lsll %d0,%d1 |shift ms mant by count 332 orl %d6,%d1 |shift the ls mant bits into the ms mant 365 movel LOCAL_HI(%a0),%d0 |d0 has ms mant 375 | ;be shifted into ms mant 376 orl %d1,%d0 |shift the ls mant bits into the ms mant 377 movel %d0,LOCAL_HI(%a0) |store ms mant into memory 382 | We get here if ms mant was = 0, and we assume ls mant has bits 388 subw #32,%d0 |account for ms mant being all zeros 391 lsll %d7,%d1 |shift first 1 to integer bit in ms mant [all …]
|
D | x_operr.S | 163 bsr check_upper |check if exp and ms mant are special 190 bsr check_upper |check if exp and ms mant are special
|
D | get_op.S | 503 tstl ETEMP_HI(%a6) |check ms mantissa 555 tstl ETEMP_HI(%a6) |check ms mantissa
|
/linux-4.1.27/kernel/time/ |
D | timer_stats.c | 284 unsigned long ms; in tstats_show() local 299 ms = period.tv_nsec / 1000000; in tstats_show() 302 seq_printf(m, "Sample period: %ld.%03ld s\n", period.tv_sec, ms); in tstats_show() 325 ms += period.tv_sec * 1000; in tstats_show() 326 if (!ms) in tstats_show() 327 ms = 1; in tstats_show() 331 events, events * 1000 / ms, in tstats_show() 332 (events * 1000000 / ms) % 1000); in tstats_show()
|
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmsmac/ |
D | brcms_trace_brcmsmac.h | 43 __field(uint, ms) 48 __entry->ms = t->ms; 54 __entry->ms, __entry->set, __entry->periodic
|
D | mac80211_if.h | 41 uint ms; member 107 void brcms_add_timer(struct brcms_timer *timer, uint ms, int periodic);
|
D | phy_shim.c | 74 wlapi_add_timer(struct wlapi_timer *t, uint ms, int periodic) in wlapi_add_timer() argument 76 brcms_add_timer((struct brcms_timer *)t, ms, periodic); in wlapi_add_timer()
|
D | phy_shim.h | 137 void wlapi_add_timer(struct wlapi_timer *t, uint ms, int periodic);
|
D | mac80211_if.c | 1442 msecs_to_jiffies(t->ms)); in _brcms_timer() 1493 void brcms_add_timer(struct brcms_timer *t, uint ms, int periodic) in brcms_add_timer() argument 1503 t->ms = ms; in brcms_add_timer() 1510 ieee80211_queue_delayed_work(hw, &t->dly_wrk, msecs_to_jiffies(ms)); in brcms_add_timer()
|
/linux-4.1.27/drivers/mmc/core/ |
D | core.h | 58 static inline void mmc_delay(unsigned int ms) in mmc_delay() argument 60 if (ms < 1000 / HZ) { in mmc_delay() 62 mdelay(ms); in mmc_delay() 64 msleep(ms); in mmc_delay()
|
/linux-4.1.27/Documentation/hwmon/ |
D | ds1621 | 92 DS1621 - 750ms (older devices may take up to 1000ms) 93 DS1625 - 500ms 94 DS1631 - 93ms..750ms for 9..12 bits resolution, respectively. 95 DS1721 - 93ms..750ms for 9..12 bits resolution, respectively. 96 DS1731 - 93ms..750ms for 9..12 bits resolution, respectively. 99 On the DS1621, internal access to non-volatile registers may last for 10ms 187 -> 93.75ms = minimum conversion time
|
D | htu21 | 39 bit for temperature, which results in typical measurement times of 11 ms for 40 humidity and 44 ms for temperature. To keep self heating below 0.1 degree
|
D | sht21 | 43 bit for temperature, which results in typical measurement times of 22 ms for 44 humidity and 66 ms for temperature. To keep self heating below 0.1 degree
|
D | ina2xx | 63 lower limit of the update_interval is 2 ms, the upper limit is 2253 ms.
|
D | zl6100 | 100 bus accesses. According to Intersil, the minimum interval is 2 ms, though 1 ms
|
D | sht15 | 42 sensors. Disabling the reload of those coefficients allows saving 10ms for each
|
/linux-4.1.27/Documentation/leds/ |
D | ledtrig-oneshot.txt | 28 Default to 100 ms. 32 Default to 100 ms. 35 ms, then blink off for delay_off ms, leaving the LED normally off. If 36 set to 1, blink off for delay_off ms, then blink on for delay_on ms,
|
/linux-4.1.27/tools/perf/util/ |
D | callchain.c | 464 call->ms.sym = cursor_node->sym; in fill_node() 465 call->ms.map = cursor_node->map; in fill_node() 493 if (cnode->ms.sym && sym && in match_chain() 495 return cnode->ms.sym->start - sym->start; in match_chain() 701 list->ms.map, list->ms.sym); in merge_chain_branch() 829 if (cl->ms.sym) { in callchain_list__sym_name() 831 cl->ms.map && !cl->srcline) in callchain_list__sym_name() 832 cl->srcline = get_srcline(cl->ms.map->dso, in callchain_list__sym_name() 833 map__rip_2objdump(cl->ms.map, in callchain_list__sym_name() 835 cl->ms.sym, false); in callchain_list__sym_name() [all …]
|
D | hist.c | 67 if (h->ms.sym) { in hists__calc_col_len() 68 symlen = h->ms.sym->namelen + 4; in hists__calc_col_len() 82 if (h->ms.map) { in hists__calc_col_len() 83 len = dso__name_len(h->ms.map->dso); in hists__calc_col_len() 319 if (he->ms.map) in hist_entry__new() 320 he->ms.map->referenced = true; in hist_entry__new() 412 if (he->ms.map != entry->ms.map) { in add_hist_entry() 413 he->ms.map = entry->ms.map; in add_hist_entry() 414 if (he->ms.map) in add_hist_entry() 415 he->ms.map->referenced = true; in add_hist_entry() [all …]
|
D | sort.c | 148 return _sort__dso_cmp(right->ms.map, left->ms.map); in sort__dso_cmp() 166 return _hist_entry__dso_snprintf(he->ms.map, bf, size, width); in hist_entry__dso_snprintf() 204 if (!left->ms.sym && !right->ms.sym) in sort__sym_cmp() 217 return _sort__sym_cmp(left->ms.sym, right->ms.sym); in sort__sym_cmp() 223 if (!left->ms.sym || !right->ms.sym) in sort__sym_sort() 224 return cmp_null(left->ms.sym, right->ms.sym); in sort__sym_sort() 226 return strcmp(right->ms.sym->name, left->ms.sym->name); in sort__sym_sort() 271 return _hist_entry__sym_snprintf(he->ms.map, he->ms.sym, he->ip, in hist_entry__sym_snprintf() 289 if (!left->ms.map) in sort__srcline_cmp() 292 struct map *map = left->ms.map; in sort__srcline_cmp() [all …]
|
D | hist.h | 306 int map_symbol__tui_annotate(struct map_symbol *ms, struct perf_evsel *evsel, 327 static inline int map_symbol__tui_annotate(struct map_symbol *ms __maybe_unused, in map_symbol__tui_annotate()
|
D | sort.h | 87 struct map_symbol ms; member
|
D | callchain.h | 74 struct map_symbol ms; member
|
/linux-4.1.27/drivers/staging/dgnc/ |
D | dgnc_utils.c | 13 int dgnc_ms_sleep(ulong ms) in dgnc_ms_sleep() argument 16 schedule_timeout((ms * HZ) / 1000); in dgnc_ms_sleep()
|
D | dgnc_utils.h | 4 int dgnc_ms_sleep(ulong ms);
|
/linux-4.1.27/drivers/staging/lustre/lustre/libcfs/ |
D | fail.c | 124 int __cfs_fail_timeout_set(__u32 id, __u32 value, int ms, int set) in __cfs_fail_timeout_set() argument 131 id, ms); in __cfs_fail_timeout_set() 133 schedule_timeout(cfs_time_seconds(ms) / 1000); in __cfs_fail_timeout_set()
|
/linux-4.1.27/Documentation/devicetree/bindings/serial/ |
D | pl011.txt | 32 - poll-rate-ms: 34 default 100ms. 35 - poll-timeout-ms: 37 3000ms.
|
/linux-4.1.27/Documentation/video4linux/cx2341x/ |
D | fw-upload.txt | 25 - Sleep for 10ms. 27 - Sleep for 10ms. 34 - Sleep for 10ms. 39 - Sleep for 512ms. (600ms is recommended)
|
/linux-4.1.27/drivers/media/platform/vivid/ |
D | vivid-rds-gen.c | 76 data[1].lsb |= (rds->ta << 4) | (rds->ms << 3); in vivid_rds_generate() 122 data[1].lsb |= (rds->ta << 4) | (rds->ms << 3); in vivid_rds_generate() 129 data[3].lsb |= (rds->ta << 4) | (rds->ms << 3); in vivid_rds_generate() 155 rds->ms = true; in vivid_rds_gen_fill()
|
D | vivid-rds-gen.h | 44 bool ms; member
|
D | vivid-radio-common.c | 90 rds->ms = dev->radio_tx_rds_ms->cur.val; in vivid_radio_rds_init() 105 v4l2_ctrl_s_ctrl(dev->radio_rx_rds_ms, rds->ms); in vivid_radio_rds_init()
|
D | vivid-kthread-cap.c | 426 unsigned ms; in vivid_fillbuff() local 490 ms = dev->ms_vid_cap; in vivid_fillbuff() 493 (ms / (60 * 60 * 1000)) % 24, in vivid_fillbuff() 494 (ms / (60 * 1000)) % 60, in vivid_fillbuff() 495 (ms / 1000) % 60, in vivid_fillbuff() 496 ms % 1000, in vivid_fillbuff()
|
/linux-4.1.27/tools/perf/tests/ |
D | hists_link.c | 170 he->thread, he->ms.map, he->ms.sym)) { in __validate_match() 222 he->thread, he->ms.map, he->ms.sym) && in __validate_link() 225 he->thread, he->ms.map, he->ms.sym)) { in __validate_link()
|
D | hists_common.c | 174 he->ms.map->dso->short_name, in print_hists_in() 175 he->ms.sym->name, he->stat.period); in print_hists_in() 201 he->ms.map->dso->short_name, in print_hists_out() 202 he->ms.sym->name, he->stat.period, in print_hists_out()
|
D | hists_cumulate.c | 150 #define DSO(he) (he->ms.map->dso->short_name) 151 #define SYM(he) (he->ms.sym->name) 155 #define CDSO(cl) (cl->ms.map->dso->short_name) 156 #define CSYM(cl) (cl->ms.sym->name)
|
/linux-4.1.27/tools/perf/ |
D | builtin-top.c | 96 if (!he || !he->ms.sym) in perf_top__parse_source() 99 sym = he->ms.sym; in perf_top__parse_source() 100 map = he->ms.map; in perf_top__parse_source() 141 struct symbol *sym = he->ms.sym; in __zero_source_counters() 180 if (he == NULL || he->ms.sym == NULL || in perf_top__record_precise_ip() 182 top->sym_filter_entry->ms.sym != he->ms.sym) && use_browser != 1)) in perf_top__record_precise_ip() 185 sym = he->ms.sym; in perf_top__record_precise_ip() 191 ip = he->ms.map->map_ip(he->ms.map, ip); in perf_top__record_precise_ip() 204 if (err == -ERANGE && !he->ms.map->erange_warned) in perf_top__record_precise_ip() 205 ui__warn_map_erange(he->ms.map, sym, ip); in perf_top__record_precise_ip() [all …]
|
D | builtin-annotate.c | 110 return symbol__tty_annotate(he->ms.sym, he->ms.map, evsel, in hist_entry__tty_annotate() 125 if (he->ms.sym == NULL || he->ms.map->dso->annotate_warned) in hists__find_annotations() 128 notes = symbol__annotation(he->ms.sym); in hists__find_annotations()
|
/linux-4.1.27/drivers/scsi/aic94xx/ |
D | aic94xx_sds.c | 683 static int asd_validate_ms(struct asd_manuf_sec *ms) in asd_validate_ms() argument 685 if (ms->sig[0] != 'S' || ms->sig[1] != 'M') { in asd_validate_ms() 687 ms->sig[0], ms->sig[1]); in asd_validate_ms() 690 if (ms->maj != 0) { in asd_validate_ms() 692 ms->maj); in asd_validate_ms() 695 ms->offs_next = le16_to_cpu((__force __le16) ms->offs_next); in asd_validate_ms() 696 ms->chksum = le16_to_cpu((__force __le16) ms->chksum); in asd_validate_ms() 697 ms->size = le16_to_cpu((__force __le16) ms->size); in asd_validate_ms() 699 if (asd_calc_flash_chksum((u16 *)ms, ms->size/2)) { in asd_validate_ms() 707 struct asd_manuf_sec *ms) in asd_ms_get_sas_addr() argument [all …]
|
/linux-4.1.27/Documentation/timers/ |
D | timers-howto.txt | 67 SLEEPING FOR ~USECS OR SMALL MSECS ( 10us - 20ms): 70 - Why not msleep for (1ms - 20ms)? 74 will often sleep longer (~20 ms actual sleep for any 75 value given in the 1~20ms range). In many cases this 96 SLEEPING FOR LARGER MSECS ( 10ms+ )
|
/linux-4.1.27/drivers/pinctrl/sh-pfc/ |
D | sh_pfc.h | 170 #define PINMUX_IPSR_NOGM(ispr, fn, ms) \ argument 171 PINMUX_DATA(fn##_MARK, FN_##fn, FN_##ms) 172 #define PINMUX_IPSR_NOFN(ipsr, fn, ms) \ argument 173 PINMUX_DATA(fn##_MARK, FN_##ipsr, FN_##ms) 174 #define PINMUX_IPSR_MSEL(ipsr, fn, ms) \ argument 175 PINMUX_DATA(fn##_MARK, FN_##fn, FN_##ipsr, FN_##ms) 176 #define PINMUX_IPSR_MODSEL_DATA(ipsr, fn, ms) \ argument 177 PINMUX_DATA(fn##_MARK, FN_##ms, FN_##ipsr, FN_##fn)
|
/linux-4.1.27/Documentation/devicetree/bindings/panel/ |
D | samsung,s6e8aa0.txt | 12 - power-on-delay: delay after turning regulators on [ms] 13 - reset-delay: delay after reset sequence [ms] 14 - init-delay: delay after initialization sequence [ms]
|
D | samsung,ld9040.txt | 14 - power-on-delay: delay after turning regulators on [ms] 15 - reset-delay: delay after reset sequence [ms]
|
/linux-4.1.27/Documentation/usb/ |
D | acm.txt | 78 E: Ad=81(I) Atr=03(Int.) MxPS= 8 Ivl=255ms 87 E: Ad=85(I) Atr=02(Bulk) MxPS= 64 Ivl= 0ms 88 E: Ad=04(O) Atr=02(Bulk) MxPS= 64 Ivl= 0ms 89 E: Ad=81(I) Atr=03(Int.) MxPS= 16 Ivl=128ms 92 E: Ad=81(I) Atr=03(Int.) MxPS= 16 Ivl=128ms 94 E: Ad=85(I) Atr=02(Bulk) MxPS= 64 Ivl= 0ms 95 E: Ad=04(O) Atr=02(Bulk) MxPS= 64 Ivl= 0ms
|
D | gadget_serial.txt | 204 E: Ad=83(I) Atr=03(Int.) MxPS= 8 Ivl=32ms 206 E: Ad=81(I) Atr=02(Bulk) MxPS= 512 Ivl=0ms 207 E: Ad=02(O) Atr=02(Bulk) MxPS= 512 Ivl=0ms 236 E: Ad=81(I) Atr=02(Bulk) MxPS= 512 Ivl=0ms 237 E: Ad=02(O) Atr=02(Bulk) MxPS= 512 Ivl=0ms
|
D | proc_usb_info.txt | 315 E: Ad=81(I) Atr=03(Int.) MxPS= 8 Ivl=255ms 322 E: Ad=81(I) Atr=03(Int.) MxPS= 1 Ivl=255ms 329 E: Ad=81(I) Atr=03(Int.) MxPS= 3 Ivl= 10ms 338 E: Ad=81(I) Atr=02(Bulk) MxPS= 64 Ivl= 16ms 339 E: Ad=01(O) Atr=02(Bulk) MxPS= 16 Ivl= 16ms 340 E: Ad=82(I) Atr=03(Int.) MxPS= 8 Ivl= 8ms
|
D | dwc3.txt | 8 As it turns out some DWC3-commands ~1ms to complete. Currently we spin
|
/linux-4.1.27/drivers/staging/rtl8712/ |
D | osdep_service.h | 80 static inline void sleep_schedulable(int ms) in sleep_schedulable() argument 84 delta = msecs_to_jiffies(ms);/*(ms)*/ in sleep_schedulable()
|
/linux-4.1.27/Documentation/devicetree/bindings/mmc/ |
D | pxa-mmc.txt | 10 - marvell,detect-delay-ms: sets the detection delay timeout in ms.
|
/linux-4.1.27/Documentation/device-mapper/ |
D | delay.txt | 17 # Create device delaying rw operation for 500ms 23 # Create device delaying only write operation for 500ms and
|
/linux-4.1.27/drivers/clk/rockchip/ |
D | clk.h | 216 #define COMPOSITE(_id, cname, pnames, f, mo, ms, mw, mf, ds, dw,\ argument 226 .mux_shift = ms, \ 274 #define COMPOSITE_NODIV(_id, cname, pnames, f, mo, ms, mw, mf, \ argument 284 .mux_shift = ms, \ 292 #define COMPOSITE_NOGATE(_id, cname, pnames, f, mo, ms, mw, mf, \ argument 302 .mux_shift = ms, \
|
/linux-4.1.27/Documentation/devicetree/bindings/gpio/ |
D | gpio-poweroff.txt | 12 triggering positive edge triggered power off. After a delay of 100ms, 14 triggering negative edge triggered power off. After another 100ms 16 the CPU still running after a 3000ms delay, a WARN_ON(1) is emitted.
|
D | gpio-restart.txt | 40 - active-delay: Delay (default 100) to wait after driving gpio active [ms] 41 - inactive-delay: Delay (default 100) to wait after driving gpio inactive [ms] 43 sequence [ms]
|
/linux-4.1.27/drivers/staging/rtl8723au/include/ |
D | rtw_pwrctrl.h | 207 #define _rtw_set_pwr_state_check_timer(pwrctrlpriv, ms) \ argument 209 msecs_to_jiffies(ms))) 233 void rtw_set_ips_deny23a(struct rtw_adapter *padapter, u32 ms);
|
D | rtw_mlme_ext.h | 579 #define set_survey_timer(mlmeext, ms) \ argument 581 mod_timer(&mlmeext->survey_timer, jiffies + msecs_to_jiffies(ms)); 583 #define set_link_timer(mlmeext, ms) \ argument 585 mod_timer(&mlmeext->link_timer, jiffies + msecs_to_jiffies(ms));
|
/linux-4.1.27/drivers/md/bcache/ |
D | io.c | 223 int ms = us / 1024; in bch_bbio_count_io_errors() local 226 ms = min(ms, CONGESTED_MAX + congested); in bch_bbio_count_io_errors() 227 atomic_sub(ms, &c->congested); in bch_bbio_count_io_errors()
|
D | sysfs.c | 53 sysfs_time_stats_attribute(btree_gc, sec, ms); 55 sysfs_time_stats_attribute(btree_sort, ms, us); 56 sysfs_time_stats_attribute(btree_read, ms, us); 532 sysfs_print_time_stats(&c->btree_gc_time, btree_gc, sec, ms); in SHOW() 534 sysfs_print_time_stats(&c->sort.time, btree_sort, ms, us); in SHOW() 535 sysfs_print_time_stats(&c->btree_read_time, btree_read, ms, us); in SHOW() 706 sysfs_time_stats_attribute_list(btree_gc, sec, ms) 708 sysfs_time_stats_attribute_list(btree_sort, ms, us) 709 sysfs_time_stats_attribute_list(btree_read, ms, us)
|
/linux-4.1.27/Documentation/devicetree/bindings/power_supply/ |
D | lp8727_charger.txt | 10 - debounce-ms: interrupt debounce time. (u32) 29 debounce-ms = <300>;
|
D | charger-manager.txt | 42 cm-fullbatt-vchkdrop-ms = <30000>;
|
/linux-4.1.27/arch/powerpc/kernel/ |
D | rtas.c | 477 unsigned int ms = 0; in rtas_busy_delay_time() local 480 ms = 1; in rtas_busy_delay_time() 483 for (ms = 1; order > 0; order--) in rtas_busy_delay_time() 484 ms *= 10; in rtas_busy_delay_time() 487 return ms; in rtas_busy_delay_time() 494 unsigned int ms; in rtas_busy_delay() local 497 ms = rtas_busy_delay_time(status); in rtas_busy_delay() 498 if (ms && need_resched()) in rtas_busy_delay() 499 msleep(ms); in rtas_busy_delay() 501 return ms; in rtas_busy_delay()
|
/linux-4.1.27/sound/core/seq/ |
D | seq_midi.c | 280 struct seq_midisynth *msynth, *ms; in snd_seq_midisynth_probe() local 343 ms = &msynth[p]; in snd_seq_midisynth_probe() 345 if (snd_seq_midisynth_new(ms, card, device, p) < 0) in snd_seq_midisynth_probe() 389 pcallbacks.private_data = ms; in snd_seq_midisynth_probe() 400 ms->seq_client = client->seq_client; in snd_seq_midisynth_probe() 401 ms->seq_port = port->addr.port; in snd_seq_midisynth_probe()
|
/linux-4.1.27/drivers/staging/rtl8188eu/include/ |
D | rtw_pwrctrl.h | 235 #define _rtw_set_pwr_state_check_timer(pwrctrlpriv, ms) \ argument 237 jiffies + msecs_to_jiffies(ms)) 260 void rtw_set_ips_deny(struct adapter *adapter, u32 ms);
|
D | rtw_mlme_ext.h | 652 #define set_survey_timer(mlmeext, ms) \ argument 654 msecs_to_jiffies(ms)) 656 #define set_link_timer(mlmeext, ms) \ argument 658 msecs_to_jiffies(ms))
|
/linux-4.1.27/Documentation/input/ |
D | cma3000_d0x.txt | 109 X: (X & 0x70) * 100 ms (MDTMR) 110 (X & 0x0F) * 2.5 ms (FFTMR 400 Hz) 111 (X & 0x0F) * 10 ms (FFTMR 100 Hz)
|
D | iforce-protocol.txt | 80 03-04 Duration of effect (little endian encoding, in ms) 92 0c-0d Delay before execution of effect (little endian encoding, in ms) 101 02-03 Duration of attack (little endian encoding, in ms) 119 05-06 Period (little endian encoding, in ms)
|
D | xpad.txt | 198 E: Ad=81(I) Atr=03(Int.) MxPS= 32 Ivl= 10ms 199 E: Ad=02(O) Atr=03(Int.) MxPS= 32 Ivl= 10ms 209 E: Ad=82(I) Atr=03(Int.) MxPS= 32 Ivl=4ms 210 E: Ad=02(O) Atr=03(Int.) MxPS= 32 Ivl=4ms
|
/linux-4.1.27/drivers/input/serio/ |
D | i8042-sparcio.h | 71 struct platform_device *ms = of_find_device_by_node(dp); in sparc_i8042_probe() local 72 unsigned int irq = ms->archdata.irqs[0]; in sparc_i8042_probe()
|
/linux-4.1.27/drivers/net/wimax/i2400m/ |
D | control.c | 388 const struct i2400m_tlv_media_status *ms) in i2400m_report_tlv_media_status() argument 393 enum i2400m_media_status status = le32_to_cpu(ms->media_status); in i2400m_report_tlv_media_status() 395 d_fnstart(3, dev, "(i2400m %p ms %p [%u])\n", i2400m, ms, status); in i2400m_report_tlv_media_status() 417 i2400m, ms, status); in i2400m_report_tlv_media_status() 437 const struct i2400m_tlv_media_status *ms; in i2400m_report_state_parse_tlv() local 458 if (0 == i2400m_tlv_match(tlv, I2400M_TLV_MEDIA_STATUS, sizeof(*ms))) { in i2400m_report_state_parse_tlv() 459 ms = container_of(tlv, typeof(*ms), hdr); in i2400m_report_state_parse_tlv() 461 tag, le32_to_cpu(ms->media_status)); in i2400m_report_state_parse_tlv() 462 i2400m_report_tlv_media_status(i2400m, ms); in i2400m_report_state_parse_tlv()
|
D | i2400m.h | 958 void __i2400m_msleep(unsigned ms) in __i2400m_msleep() argument 962 msleep(ms); in __i2400m_msleep()
|
/linux-4.1.27/arch/x86/kernel/ |
D | tsc.c | 441 static unsigned long pit_calibrate_tsc(u32 latch, unsigned long ms, int loopmin) in pit_calibrate_tsc() argument 489 do_div(delta, ms); in pit_calibrate_tsc() 651 unsigned long flags, latch, ms, fast_calibrate; in native_calibrate_tsc() local 694 ms = CAL_MS; in native_calibrate_tsc() 708 tsc_pit_khz = pit_calibrate_tsc(latch, ms, loopmin); in native_calibrate_tsc() 755 ms = CAL2_MS; in native_calibrate_tsc()
|
/linux-4.1.27/drivers/video/fbdev/aty/ |
D | radeonfb.h | 379 static inline void _radeon_msleep(struct radeonfb_info *rinfo, unsigned long ms) in _radeon_msleep() argument 382 mdelay(ms); in _radeon_msleep() 384 msleep(ms); in _radeon_msleep() 590 #define radeon_msleep(ms) _radeon_msleep(rinfo,ms) argument
|
/linux-4.1.27/Documentation/devicetree/bindings/staging/iio/adc/ |
D | mxs-lradc.txt | 18 2 kHz and its default is 2 (= 1 ms) 21 10 (= 5 ms)
|
/linux-4.1.27/drivers/mtd/tests/ |
D | speedtest.c | 182 long ms; in calc_speed() local 184 ms = (finish.tv_sec - start.tv_sec) * 1000 + in calc_speed() 186 if (ms == 0) in calc_speed() 189 do_div(k, ms); in calc_speed()
|
D | torturetest.c | 333 long ms; in tort_init() local 336 ms = (finish.tv_sec - start.tv_sec) * 1000 + in tort_init() 340 erase_cycles, ms, ms / 1000); in tort_init()
|
/linux-4.1.27/drivers/ssb/ |
D | ssb_private.h | 229 extern u32 ssb_chipco_watchdog_timer_set_ms(struct bcm47xx_wdt *wdt, u32 ms); 252 extern u32 ssb_extif_watchdog_timer_set_ms(struct bcm47xx_wdt *wdt, u32 ms); 260 u32 ms) in ssb_extif_watchdog_timer_set_ms() argument
|
D | driver_extif.c | 122 u32 ssb_extif_watchdog_timer_set_ms(struct bcm47xx_wdt *wdt, u32 ms) in ssb_extif_watchdog_timer_set_ms() argument 125 u32 ticks = (SSB_EXTIF_WATCHDOG_CLK / 1000) * ms; in ssb_extif_watchdog_timer_set_ms()
|
/linux-4.1.27/arch/arm/mach-pxa/include/mach/ |
D | regs-lcd.h | 196 #define SMART_DELAY(ms) (SMART_CMD_DELAY | ((ms) & 0xff)) argument
|
/linux-4.1.27/drivers/staging/rts5208/ |
D | Makefile | 6 rtsx_card.o general.o sd.o xd.o ms.o spi.o trace.o
|
/linux-4.1.27/drivers/leds/ |
D | leds-asic3.c | 28 #define MS_TO_CLK(ms) DIV_ROUND_CLOSEST(((ms)*1024), 32000) argument
|
/linux-4.1.27/drivers/clocksource/ |
D | tegra20_timer.c | 117 u32 ms = readl(rtc_base + RTC_MILLISECONDS); in tegra_rtc_read_ms() local 119 return (u64)s * MSEC_PER_SEC + ms; in tegra_rtc_read_ms()
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-timechart.txt | 71 to see very small and fast IO. It's possible to specify ms or us 73 Default value is 1ms. 77 It's possible to specify ms or us suffix to specify time in
|
D | perf-trace.txt | 83 Show only events that had a duration greater than N.M ms. 157 …1416.547 ( 0.000 ms): python/20235 majfault [CRYPTO_push_info_+0x0] => /lib/x86_64-linux-gnu/libcr…
|
/linux-4.1.27/include/linux/ |
D | ktime.h | 290 static inline ktime_t ms_to_ktime(u64 ms) in ms_to_ktime() argument 294 return ktime_add_ms(ktime_zero, ms); in ms_to_ktime()
|
D | nvme.h | 120 u16 ms; member
|
D | memory_hotplug.h | 275 extern void sparse_remove_one_section(struct zone *zone, struct mem_section *ms);
|
/linux-4.1.27/drivers/usb/storage/ |
D | scsiglue.c | 524 unsigned short ms; in max_sectors_store() local 526 if (sscanf(buf, "%hu", &ms) > 0) { in max_sectors_store() 527 blk_queue_max_hw_sectors(sdev->request_queue, ms); in max_sectors_store()
|
/linux-4.1.27/Documentation/ |
D | IRQ-affinity.txt | 33 round-trip min/avg/max = 0.1/0.1/0.4 ms 50 round-trip min/avg/max = 0.1/0.5/585.4 ms
|
D | workqueue.txt | 262 w0 burns CPU for 5ms then sleeps for 10ms then burns CPU for 5ms 263 again before finishing. w1 and w2 burn CPU for 5ms then sleep for 264 10ms.
|
/linux-4.1.27/arch/s390/kernel/vdso32/ |
D | clock_gettime.S | 44 2: ms %r0,__VDSO_TK_MULT(%r5) /* * tk->mult */ 107 12: ms %r0,__VDSO_TK_MULT(%r5) /* * tk->mult */
|
D | gettimeofday.S | 39 3: ms %r0,__VDSO_TK_MULT(%r5) /* * tk->mult */
|
/linux-4.1.27/drivers/cpufreq/ |
D | pmac32-cpufreq.c | 89 static inline void local_delay(unsigned long ms) in local_delay() argument 92 mdelay(ms); in local_delay() 94 msleep(ms); in local_delay()
|
/linux-4.1.27/drivers/tty/hvc/ |
D | hvsi_lib.c | 247 static void maybe_msleep(unsigned long ms) in maybe_msleep() argument 251 mdelay(ms); in maybe_msleep() 253 msleep(ms); in maybe_msleep()
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | phy3250.dts | 182 nxp,debounce-delay-ms = <3>; 183 nxp,scan-delay-ms = <34>;
|
D | armada-39x.dtsi | 158 timeout-ms = <1000>; 169 timeout-ms = <1000>; 180 timeout-ms = <1000>; 191 timeout-ms = <1000>;
|
D | armada-370-xp.dtsi | 178 timeout-ms = <1000>; 188 timeout-ms = <1000>;
|
D | ste-href-tvk1281618.dtsi | 65 debounce-delay-ms = <4>;
|
/linux-4.1.27/arch/x86/kernel/cpu/ |
D | perf_event_intel_rapl.c | 586 u64 ms; in rapl_cpu_prepare() local 611 ms = (1000 / (2 * 100)) * (1ULL << (32 - rapl_hw_unit[0] - 1)); in rapl_cpu_prepare() 613 ms = 2; in rapl_cpu_prepare() 615 pmu->timer_interval = ms_to_ktime(ms); in rapl_cpu_prepare()
|
D | amd.c | 858 u32 ms; in cpu_has_amd_erratum() local 875 ms = (cpu->x86_model << 4) | cpu->x86_mask; in cpu_has_amd_erratum() 878 (ms >= AMD_MODEL_RANGE_START(range)) && in cpu_has_amd_erratum() 879 (ms <= AMD_MODEL_RANGE_END(range))) in cpu_has_amd_erratum()
|
/linux-4.1.27/arch/s390/include/asm/ |
D | nmi.h | 37 __u32 ms : 1; /* 21 psw mask and key validity */ member
|
/linux-4.1.27/sound/isa/wavefront/ |
D | wavefront_synth.c | 1210 num_samples = (1<<(header->hdr.ms.NumberOfSamples&7)); in wavefront_send_multisample() 1211 msample_hdr[2] = (unsigned char) header->hdr.ms.NumberOfSamples; in wavefront_send_multisample() 1215 header->hdr.ms.NumberOfSamples, in wavefront_send_multisample() 1220 i, header->hdr.ms.SampleNumber[i]); in wavefront_send_multisample() 1221 munge_int32 (header->hdr.ms.SampleNumber[i], in wavefront_send_multisample() 1263 header->hdr.ms.NumberOfSamples = log_ns[0]; in wavefront_fetch_multisample() 1287 header->hdr.ms.SampleNumber[i] = in wavefront_fetch_multisample() 1291 i, header->hdr.ms.SampleNumber[i]); in wavefront_fetch_multisample()
|
/linux-4.1.27/Documentation/devicetree/bindings/mfd/ |
D | tc3589x.txt | 50 - debounce-delay-ms : debounce interval in milliseconds 83 debounce-delay-ms = <4>;
|
D | stmpe.txt | 15 - st,autosleep-timeout : Valid entries (ms); 4, 16, 32, 64, 128, 256, 512 and 1024
|
D | twl4030-audio.txt | 15 from the start of the recorded sample (in ms)
|
/linux-4.1.27/drivers/hwmon/ |
D | ina2xx.c | 170 int ms; in ina226_set_update_interval() local 172 ms = ina226_reg_to_interval(data->curr_config); in ina226_set_update_interval() 173 data->update_interval = msecs_to_jiffies(ms); in ina226_set_update_interval()
|
D | applesmc.c | 624 int ms, ret; in applesmc_init_smcreg() local 626 for (ms = 0; ms < INIT_TIMEOUT_MSECS; ms += INIT_WAIT_MSECS) { in applesmc_init_smcreg() 629 if (ms) in applesmc_init_smcreg() 630 pr_info("init_smcreg() took %d ms\n", ms); in applesmc_init_smcreg()
|
/linux-4.1.27/drivers/gpu/drm/via/ |
D | via_video.c | 86 (fx->ms / 10) * (HZ / 100), *lock != fx->val); in via_decoder_futex()
|
/linux-4.1.27/Documentation/devicetree/bindings/i2c/ |
D | i2c-gpio.txt | 13 - i2c-gpio,timeout-ms: timeout to get data
|
/linux-4.1.27/Documentation/block/ |
D | deadline-iosched.txt | 17 read_expire (in ms) 27 write_expire (in ms)
|
D | cfq-iosched.txt | 61 value of this is 248ms. 66 value of this is 124ms. In case to favor synchronous requests over asynchronous 82 Default value for this parameter is 8ms. 108 Default value for target_latency is 300ms. 113 default value is 40ms. 132 value is 100ms. 269 100ms each. If a REQ_NOIDLE request comes in, it will be scheduled
|
/linux-4.1.27/drivers/media/pci/solo6x10/ |
D | solo6x10-core.c | 299 unsigned long ms; in p2m_timeout_store() local 300 int ret = kstrtoul(buf, 10, &ms); in p2m_timeout_store() 302 if (ret < 0 || ms > 200) in p2m_timeout_store() 304 solo_dev->p2m_jiffies = msecs_to_jiffies(ms); in p2m_timeout_store()
|
/linux-4.1.27/tools/perf/ui/gtk/ |
D | annotate.c | 233 return symbol__gtk_annotate(he->ms.sym, he->ms.map, evsel, hbt); in hist_entry__gtk_annotate()
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | emu10k1-jack.txt | 18 channels. With a post 2.6.9 Linux kernel, latencies down to 64 (1.33 ms) or 19 even 32 (0.66ms) frames should work well.
|
D | timestamping.txt | 169 Example 1 shows that the timestamp at the DMA level is close to 1ms 180 shows how compensating for the delay exposes a 1ms accuracy (due to 183 Example 3: DMA timestamp, no compensation for delay, delta of ~5ms 193 Example 4: DMA timestamp, compensation for delay, delay of ~1ms
|
/linux-4.1.27/Documentation/devicetree/bindings/iio/adc/ |
D | qcom,spmi-vadc.txt | 80 2ms * (value - 10) otherwise. 82 900 us and 1, 2, 4, 6, 8, 10 ms
|
/linux-4.1.27/drivers/video/fbdev/omap2/dss/ |
D | Kconfig | 125 bool "Sleep 20ms after VENC reset" 128 There is a 20ms sleep after VENC reset which seemed to fix the
|
/linux-4.1.27/include/linux/regulator/ |
D | consumer.h | 209 int regulator_disable_deferred(struct regulator *regulator, int ms); 390 int ms) in regulator_disable_deferred() argument
|
/linux-4.1.27/fs/isofs/ |
D | inode.c | 177 isofs_hashi_common(struct qstr *qstr, int ms) in isofs_hashi_common() argument 186 if (ms) { in isofs_hashi_common() 206 const struct qstr *name, int ms, int ci) in isofs_dentry_cmp_common() argument 213 if (ms) { in isofs_dentry_cmp_common() 249 isofs_hash_common(struct qstr *qstr, int ms) in isofs_hash_common() argument 256 if (ms) { in isofs_hash_common()
|
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb4vf/ |
D | t4vf_hw.c | 124 int i, ms, delay_idx; in t4vf_wr_mbox_core() local 172 ms = delay[0]; in t4vf_wr_mbox_core() 174 for (i = 0; i < FW_CMD_MAX_TIMEOUT; i += ms) { in t4vf_wr_mbox_core() 176 ms = delay[delay_idx]; in t4vf_wr_mbox_core() 179 msleep(ms); in t4vf_wr_mbox_core() 181 mdelay(ms); in t4vf_wr_mbox_core()
|
/linux-4.1.27/sound/ppc/ |
D | Kconfig | 48 int "Startup delay time in ms"
|
/linux-4.1.27/Documentation/devicetree/bindings/thermal/ |
D | st-thermal.txt | 31 defined, a polling delay of 1000ms will be used to read the
|
/linux-4.1.27/Documentation/devicetree/bindings/usb/ |
D | pxa-usb.txt | 20 - "marvell,power_on_delay" Power On to Power Good time - in ms.
|
/linux-4.1.27/drivers/block/ |
D | nvme-core.c | 567 integrity.tuple_size = ns->ms; in nvme_init_integrity() 800 } else if (ns->ms) in nvme_submit_iod() 828 if (ns->ms && !blk_integrity_rq(req)) { in nvme_queue_rq() 829 if (!(ns->pi_type && ns->ms == 8)) { in nvme_queue_rq() 1761 meta_len = (io.nblocks + 1) * ns->ms; in nvme_submit_io() 2013 old_ms = ns->ms; in nvme_revalidate_disk() 2016 ns->ms = le16_to_cpu(id->lbaf[lbaf].ms); in nvme_revalidate_disk() 2017 ns->ext = ns->ms && (id->flbas & NVME_NS_FLBAS_META_EXT); in nvme_revalidate_disk() 2028 pi_type = ns->ms == sizeof(struct t10_pi_tuple) ? in nvme_revalidate_disk() 2032 ns->ms != old_ms || in nvme_revalidate_disk() [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/video/backlight/ |
D | lp855x.txt | 33 /* Heavy smoothing, 24ms ramp time step */
|
/linux-4.1.27/Documentation/devicetree/bindings/sound/ |
D | ti,tas5086.txt | 20 When not specified, the hardware default of 1300ms
|
/linux-4.1.27/Documentation/isdn/ |
D | README.audio | 67 y = 0 ... 255 tone duration in units of 5ms. 68 Not for I4L soft decode (default 8, 40ms)
|
/linux-4.1.27/drivers/bcma/ |
D | driver_chipcommon.c | 67 u32 ms) in bcma_chipco_watchdog_timer_set_ms_wdt() argument 72 ticks = bcma_chipco_watchdog_timer_set(cc, cc->ticks_per_ms * ms); in bcma_chipco_watchdog_timer_set_ms_wdt()
|
/linux-4.1.27/drivers/staging/media/lirc/ |
D | lirc_sasem.c | 569 long ms; in incoming_packet() local 588 ms = (tv.tv_sec - context->presstime.tv_sec) * 1000 + in incoming_packet() 603 if ((ms < 250) && (context->codesaved != 0)) { in incoming_packet()
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/omap/ |
D | timer.txt | 16 ti,am335x-timer-1ms (applicable to AM335x devices)
|
/linux-4.1.27/Documentation/cpu-freq/ |
D | governors.txt | 134 If CONFIG_NO_HZ_COMMON is set, the limit is 10ms fixed. 137 HZ=1000: min=20000us (20ms) 138 HZ=250: min=80000us (80ms) 139 HZ=100: min=200000us (200ms)
|
/linux-4.1.27/drivers/s390/scsi/ |
D | zfcp_fc.h | 199 struct zfcp_fc_wka_port ms; member
|
/linux-4.1.27/include/uapi/drm/ |
D | via_drm.h | 153 __u32 ms; member
|
/linux-4.1.27/drivers/i2c/busses/ |
D | i2c-diolan-u2c.c | 268 static int diolan_set_clock_synch_timeout(struct i2c_diolan_u2c *dev, int ms) in diolan_set_clock_synch_timeout() argument 270 int to_val = ms * 10; in diolan_set_clock_synch_timeout()
|
/linux-4.1.27/arch/powerpc/boot/dts/ |
D | ac14xx.dts | 359 debounce-delay-ms = <5>; 363 col-switch-delay-ms = <200>;
|
/linux-4.1.27/arch/s390/kernel/ |
D | nmi.c | 223 if (!mci->ms || !mci->pm || !mci->ia) in s390_revalidate_registers()
|
/linux-4.1.27/arch/arm/mach-w90x900/ |
D | cpu.c | 58 static DEFINE_SUBCLK(ms, 0);
|
/linux-4.1.27/Documentation/devicetree/bindings/spi/ |
D | spi_pl022.txt | 13 - pl022,autosuspend-delay : delay in ms following transfer completion before
|
/linux-4.1.27/drivers/tty/ |
D | mxser.c | 1514 struct mxser_mstatus ms, __user *msu = argp; in mxser_ioctl_special() local 1519 memset(&ms, 0, sizeof(ms)); in mxser_ioctl_special() 1528 ms.cflag = ip->normal_termios.c_cflag; in mxser_ioctl_special() 1530 ms.cflag = tty->termios.c_cflag; in mxser_ioctl_special() 1536 ms.dcd = 1; in mxser_ioctl_special() 1538 ms.dsr = 1; in mxser_ioctl_special() 1540 ms.cts = 1; in mxser_ioctl_special() 1543 if (copy_to_user(msu, &ms, sizeof(ms))) in mxser_ioctl_special()
|
/linux-4.1.27/drivers/staging/rtl8723au/core/ |
D | rtw_pwrctrl.c | 468 inline void rtw_set_ips_deny23a(struct rtw_adapter *padapter, u32 ms) in rtw_set_ips_deny23a() argument 472 pwrpriv->ips_deny_time = jiffies + msecs_to_jiffies(ms); in rtw_set_ips_deny23a()
|
/linux-4.1.27/tools/perf/ui/stdio/ |
D | hist.c | 77 rem_hits.ms.sym = rem_sq_bracket; in init_rem_hits() 477 if (h->ms.map == NULL && verbose > 1) { in hists__fprintf()
|
/linux-4.1.27/drivers/block/paride/ |
D | pcd.c | 641 static int pcd_probe(struct pcd_unit *cd, int ms, char *id) in pcd_probe() argument 643 if (ms == -1) { in pcd_probe() 648 cd->drive = ms; in pcd_probe()
|
D | pg.c | 439 char *ms[2] = { "master", "slave" }; in pg_identify() local 454 printk("%s: %s %s, %s\n", dev->name, mf, id, ms[dev->drive]); in pg_identify()
|
/linux-4.1.27/Documentation/networking/ |
D | z8530drv.txt | 450 The delay (in units of 10 ms) after keying of the 472 expressed in units of 10 ms. About 200-300 ms (value 20-30) 483 sufficient, e.g. 40ms at 1200 baud. (value 4) 484 The value of this parameter is in 10 ms units. 509 The value of this parameter is in 10 ms units.
|
/linux-4.1.27/drivers/gpu/ipu-v3/ |
D | ipu-prv.h | 192 int ipu_wait_interrupt(struct ipu_soc *ipu, int irq, int ms);
|
/linux-4.1.27/drivers/media/i2c/m5mols/ |
D | m5mols_core.c | 299 int ms = timeout < 0 ? M5MOLS_BUSY_WAIT_DEF_TIMEOUT : timeout; in m5mols_busy_wait() local 300 unsigned long end = jiffies + msecs_to_jiffies(ms); in m5mols_busy_wait() 311 } while (ms > 0 && time_is_after_jiffies(end)); in m5mols_busy_wait()
|
/linux-4.1.27/drivers/w1/masters/ |
D | ds2490.c | 546 int ms = del<<4; in ds_set_pullup() local 555 if (delay == 0 || ms == dev->spu_sleep) in ds_set_pullup() 562 dev->spu_sleep = ms; in ds_set_pullup()
|
/linux-4.1.27/drivers/staging/rtl8188eu/core/ |
D | rtw_pwrctrl.c | 552 inline void rtw_set_ips_deny(struct adapter *padapter, u32 ms) in rtw_set_ips_deny() argument 555 pwrpriv->ips_deny_time = jiffies + msecs_to_jiffies(ms); in rtw_set_ips_deny()
|
/linux-4.1.27/drivers/input/touchscreen/ |
D | auo-pixcir-ts.c | 96 #define AUO_PIXCIR_POWER_IDLE_TIME(ms) ((ms & 0xf) << 4) argument
|