| /OK3568_Linux_fs/kernel/drivers/net/wireless/intel/iwlwifi/fw/api/ |
| H A D | sf.h | 97 #define SF_SINGLE_UNICAST_AGING_TIMER_DEF 400 /* 0.4 mSec */ 99 #define SF_AGG_UNICAST_AGING_TIMER_DEF 400 /* 0.4 mSec */ 100 #define SF_MCAST_IDLE_TIMER_DEF 160 /* 150 mSec */ 101 #define SF_MCAST_AGING_TIMER_DEF 400 /* 0.4 mSec */ 103 #define SF_BA_AGING_TIMER_DEF 400 /* 0.4 mSec */ 105 #define SF_TX_RE_AGING_TIMER_DEF 400 /* 0.4 mSec */ 109 #define SF_SINGLE_UNICAST_AGING_TIMER 2016 /* 2 mSec */ 111 #define SF_AGG_UNICAST_AGING_TIMER 2016 /* 2 mSec */ 112 #define SF_MCAST_IDLE_TIMER 2016 /* 2 mSec */ 113 #define SF_MCAST_AGING_TIMER 10016 /* 10 mSec */ [all …]
|
| /OK3568_Linux_fs/kernel/drivers/watchdog/ |
| H A D | npcm_wdt.c | 29 * 170 msec: WTCLK=01 WTIS=00 VAL= 0x400 30 * 670 msec: WTCLK=01 WTIS=01 VAL= 0x410 31 * 1360 msec: WTCLK=10 WTIS=00 VAL= 0x800 32 * 2700 msec: WTCLK=01 WTIS=10 VAL= 0x420 33 * 5360 msec: WTCLK=10 WTIS=01 VAL= 0x810 34 * 10700 msec: WTCLK=01 WTIS=11 VAL= 0x430 35 * 21600 msec: WTCLK=10 WTIS=10 VAL= 0x820 36 * 43000 msec: WTCLK=11 WTIS=00 VAL= 0xC00 37 * 85600 msec: WTCLK=10 WTIS=11 VAL= 0x830 38 * 172000 msec: WTCLK=11 WTIS=01 VAL= 0xC10 [all …]
|
| H A D | dw_wdt.c | 80 unsigned int msec; member 165 u64 msec; in dw_wdt_get_max_timeout_ms() local 167 msec = (u64)timeout->sec * MSEC_PER_SEC + timeout->msec; in dw_wdt_get_max_timeout_ms() 169 return msec < UINT_MAX ? msec : UINT_MAX; in dw_wdt_get_max_timeout_ms() 430 u64 msec; in dw_wdt_handle_tops() local 441 msec = (u64)tops[val] * MSEC_PER_SEC; in dw_wdt_handle_tops() 442 do_div(msec, dw_wdt->rate); in dw_wdt_handle_tops() 443 tout.msec = msec - ((u64)tout.sec * MSEC_PER_SEC); in dw_wdt_handle_tops() 452 tout.msec >= dst->msec)) in dw_wdt_handle_tops()
|
| /OK3568_Linux_fs/kernel/sound/synth/emux/ |
| H A D | emux_nrpn.c | 96 #define fx_env1_delay fx_delay /* [0,5900] 4msec */ 97 #define fx_env1_attack fx_attack /* [0,5940] 1msec */ 98 #define fx_env1_hold fx_hold /* [0,8191] 1msec */ 99 #define fx_env1_decay fx_decay /* [0,5940] 4msec */ 100 #define fx_env1_release fx_decay /* [0,5940] 4msec */ 105 #define fx_env2_delay fx_delay /* [0,5900] 4msec */ 106 #define fx_env2_attack fx_attack /* [0,5940] 1msec */ 107 #define fx_env2_hold fx_hold /* [0,8191] 1msec */ 108 #define fx_env2_decay fx_decay /* [0,5940] 4msec */ 109 #define fx_env2_release fx_decay /* [0,5940] 4msec */ [all …]
|
| /OK3568_Linux_fs/buildroot/package/dahdi-linux/ |
| H A D | 0002-fix-build-with-32-bits-kernel.patch | 31 + s64 msec = 0; 34 + msec = div_s64_rem(q->worst_lag_usec, 1000, &rem); 41 + q->worst_count, q->overflows, msec, rem); 88 + s64 msec = 0; 96 + msec = div_s64_rem(usec, 1000, &rem); 98 - snprintf(prefix, ARRAY_SIZE(prefix), " %3d> %5lld.%03lld msec", 100 + snprintf(prefix, ARRAY_SIZE(prefix), " %3d> %5lld.%03d msec", 101 + i++, msec, rem); 109 + s64 msec = 0; 119 + msec = div_s64_rem(q->worst_lag_usec, 1000, &rem); [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/corelocation/ |
| H A D | qgeopositioninfosource_cl.mm | 130 void QGeoPositionInfoSourceCL::setUpdateInterval(int msec) 132 // If msec is 0 we send updates as data becomes available, otherwise we force msec to be equal 134 if (msec != 0 && msec < minimumUpdateInterval()) 135 msec = minimumUpdateInterval(); 137 QGeoPositionInfoSource::setUpdateInterval(msec); 140 m_updateTimeout = msec; 225 void QGeoPositionInfoSourceCL::setTimeoutInterval(int msec) 229 if (msec > 0) m_updateTimer = startTimer(msec);
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/simulator/ |
| H A D | qgeopositioninfosource_simulator.cpp | 103 void QGeoPositionInfoSourceSimulator::setUpdateInterval(int msec) in setUpdateInterval() argument 105 // If msec is 0 we send updates as data becomes available, otherwise we force msec to be equal in setUpdateInterval() 107 if (msec != 0 && msec < minimumUpdateInterval()) in setUpdateInterval() 108 msec = minimumUpdateInterval(); in setUpdateInterval() 110 QGeoPositionInfoSource::setUpdateInterval(msec); in setUpdateInterval() 112 timer->setInterval(msec); in setUpdateInterval()
|
| H A D | qgeosatelliteinfosource_simulator.cpp | 91 void QGeoSatelliteInfoSourceSimulator::setUpdateInterval(int msec) in setUpdateInterval() argument 93 // msec should be equal to or larger than the minimum update interval; 0 is a special case in setUpdateInterval() 95 if (msec != 0 && msec < minimumUpdateInterval()) in setUpdateInterval() 96 msec = minimumUpdateInterval(); in setUpdateInterval() 98 QGeoSatelliteInfoSource::setUpdateInterval(msec); in setUpdateInterval() 100 timer->setInterval(msec); in setUpdateInterval()
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | pm_wakeup.h | 113 extern void pm_wakeup_ws_event(struct wakeup_source *ws, unsigned int msec, bool hard); 114 extern void pm_wakeup_dev_event(struct device *dev, unsigned int msec, bool hard); 188 unsigned int msec, bool hard) {} in pm_wakeup_ws_event() argument 190 static inline void pm_wakeup_dev_event(struct device *dev, unsigned int msec, in pm_wakeup_dev_event() argument 195 static inline void __pm_wakeup_event(struct wakeup_source *ws, unsigned int msec) in __pm_wakeup_event() argument 197 return pm_wakeup_ws_event(ws, msec, false); in __pm_wakeup_event() 200 static inline void pm_wakeup_event(struct device *dev, unsigned int msec) in pm_wakeup_event() argument 202 return pm_wakeup_dev_event(dev, msec, false); in pm_wakeup_event()
|
| H A D | dim.h | 71 * @ppms: Packets per msec 72 * @bpms: Bytes per msec 73 * @epms: Events per msec 74 * @cpms: Completions per msec 78 int ppms; /* packets per msec */ 79 int bpms; /* bytes per msec */ 80 int epms; /* events per msec */ 81 int cpms; /* completions per msec */
|
| H A D | input-polldev.h | 22 * Defaults to 500 msec unless overridden when registering the device. 40 unsigned int poll_interval; /* msec */ 41 unsigned int poll_interval_max; /* msec */ 42 unsigned int poll_interval_min; /* msec */
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/positionpluginV1/ |
| H A D | plugin.cpp | 52 void setUpdateInterval(int msec); 90 void DummySource::setUpdateInterval(int msec) in setUpdateInterval() argument 92 if (msec == 0) { in setUpdateInterval() 94 } else if (msec < 1000) { in setUpdateInterval() 95 msec = 1000; in setUpdateInterval() 96 timer->setInterval(msec); in setUpdateInterval() 98 timer->setInterval(msec); in setUpdateInterval() 101 QGeoPositionInfoSource::setUpdateInterval(msec); in setUpdateInterval()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/android/src/ |
| H A D | qgeosatelliteinfosource_android.cpp | 77 void QGeoSatelliteInfoSourceAndroid::setUpdateInterval(int msec) in setUpdateInterval() argument 80 …msec = (((msec > 0) && (msec < minimumUpdateInterval())) || msec < 0)? minimumUpdateInterval() : m… in setUpdateInterval() 82 if (msec == previousInterval) in setUpdateInterval() 85 QGeoSatelliteInfoSource::setUpdateInterval(msec); in setUpdateInterval()
|
| H A D | qgeopositioninfosource_android.cpp | 75 void QGeoPositionInfoSourceAndroid::setUpdateInterval(int msec) in setUpdateInterval() argument 78 …msec = (((msec > 0) && (msec < minimumUpdateInterval())) || msec < 0)? minimumUpdateInterval() : m… in setUpdateInterval() 80 if (msec == previousInterval) in setUpdateInterval() 83 QGeoPositionInfoSource::setUpdateInterval(msec); in setUpdateInterval()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/positionplugin/ |
| H A D | plugin.cpp | 53 void setUpdateInterval(int msec); 120 void DummySource::setUpdateInterval(int msec) in setUpdateInterval() argument 122 if (msec == 0) { in setUpdateInterval() 124 } else if (msec < 1000) { in setUpdateInterval() 125 msec = 1000; in setUpdateInterval() 126 timer->setInterval(msec); in setUpdateInterval() 128 timer->setInterval(msec); in setUpdateInterval() 131 QGeoPositionInfoSource::setUpdateInterval(msec); in setUpdateInterval()
|
| /OK3568_Linux_fs/u-boot/arch/arm/cpu/armv7/iproc-common/ |
| H A D | timer.c | 55 /* default arm clk is 1GHz, periph_clk=arm_clk/2, tick per msec */ in get_timer() 64 /* returns msec */ in get_timer() 116 * On ARM it just returns the timer value in msec. 124 * This is used in conjuction with get_ticks, which returns msec as ticks. 125 * Here we just return ticks/sec = msec/sec = 1000
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/iio/accel/ |
| H A D | lis302.txt | 30 - st,click-click-time-limit: click time limit, from 0 to 127.5msec 31 with step of 0.5 msec 32 - st,click-latency: click latency, from 0 to 255 msec with 33 step of 1 msec. 34 - st,click-window: click window, from 0 to 255 msec with 35 step of 1 msec.
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/serialnmea/ |
| H A D | qnmeasatelliteinfosource.cpp | 100 void requestUpdate(int msec); 318 void QNmeaSatelliteInfoSourcePrivate::requestUpdate(int msec) in requestUpdate() argument 323 if (msec <= 0 || msec < m_source->minimumUpdateInterval()) { in requestUpdate() 339 m_requestTimer->start(msec); in requestUpdate() 512 void QNmeaSatelliteInfoSource::setUpdateInterval(int msec) in setUpdateInterval() argument 514 int interval = msec; in setUpdateInterval() 516 interval = qMax(msec, minimumUpdateInterval()); in setUpdateInterval() 544 void QNmeaSatelliteInfoSource::requestUpdate(int msec) in requestUpdate() argument 546 d->requestUpdate(msec == 0 ? 60000 * 5 : msec); // 5min default timeout in requestUpdate()
|
| /OK3568_Linux_fs/kernel/include/sound/ |
| H A D | soundfont.h | 108 int snd_sf_calc_parm_hold(int msec); 109 int snd_sf_calc_parm_attack(int msec); 110 int snd_sf_calc_parm_decay(int msec); 111 #define snd_sf_calc_parm_delay(msec) (0x8000 - (msec) * 1000 / 725) argument
|
| /OK3568_Linux_fs/kernel/kernel/power/ |
| H A D | suspend_test.c | 39 unsigned msec; in suspend_test_finish() local 41 msec = jiffies_to_msecs(abs(nj)); in suspend_test_finish() 43 msec / 1000, msec % 1000); in suspend_test_finish() 53 WARN(msec > (TEST_SUSPEND_SECONDS * 1000), in suspend_test_finish() 54 "Component: %s, time: %u\n", label, msec); in suspend_test_finish()
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/drivers/net/mlxsw/ |
| H A D | devlink_trap_l2_drops.sh | 104 $MZ $h1 -c 0 -p 100 -a $smac -b bcast -t ip -d 1msec -q & 130 $MZ $h1 "$opt" -c 0 -p 100 -a own -b $dmac -t ip -d 1msec -q & 190 $MZ $h1 -Q $vid -c 0 -p 100 -a own -b $dmac -t ip -d 1msec -q & 233 $MZ $h1 -Q $vid -c 0 -p 100 -a own -b $dmac -t ip -d 1msec -q & 303 $MZ $h1 -c 0 -p 100 -a own -b $dmac -t ip -d 1msec -q & 348 $MZ $h1 -c 0 -p 100 -a own -b $dmac -t ip -B $dip -d 1msec -q & 394 $MZ $h1 -c 0 -p 100 -a own -b $dmac -t ip -d 1msec -q &
|
| H A D | devlink_trap_l3_drops.sh | 177 $MZ $h1 -c 0 -p 100 -d 1msec -B $h2_ipv4 -q "$rp1mac $h1mac \ 207 -B $dip -d 1msec -q & 242 -b $rp1mac -B $dip -d 1msec -q & 276 -B $dip -d 1msec -q & 311 -b $rp1mac -B $dip -d 1msec -q & 342 -B $h2_ipv4 -d 1msec -q & 395 $MZ $h1 -c 0 -d 1msec -a $h1mac -b $rp1mac -q p=$payload & 441 $MZ $h1 -c 0 -d 1msec -a $h1mac -b $rp1mac -q p=$payload & 479 "33:33:00:00:00:00" -B $dip -d 1msec -q & 504 "33:33:00:00:00:00" -B $dip -d 1msec -q & [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/ssv6xxx/platforms/ |
| H A D | atm7039-actions-generic-wlan.c | 117 int wifi_set_power(int on, unsigned long msec) in wifi_set_power() argument 122 if (msec) in wifi_set_power() 123 msleep(msec); in wifi_set_power() 126 int wifi_set_reset(int on, unsigned long msec) in wifi_set_reset() argument 131 if (msec) in wifi_set_reset() 132 msleep(msec); in wifi_set_reset()
|
| H A D | h8-generic-wlan.c | 109 int wifi_set_power(int on, unsigned long msec) in wifi_set_power() argument 114 if (msec) in wifi_set_power() 115 msleep(msec); in wifi_set_power() 118 int wifi_set_reset(int on, unsigned long msec) in wifi_set_reset() argument 123 if (msec) in wifi_set_reset() 124 msleep(msec); in wifi_set_reset()
|
| H A D | h3-generic-wlan.c | 109 int wifi_set_power(int on, unsigned long msec) in wifi_set_power() argument 114 if (msec) in wifi_set_power() 115 msleep(msec); in wifi_set_power() 118 int wifi_set_reset(int on, unsigned long msec) in wifi_set_reset() argument 123 if (msec) in wifi_set_reset() 124 msleep(msec); in wifi_set_reset()
|