Home
last modified time | relevance | path

Searched +full:1 +full:ms (Results 1 – 25 of 1462) sorted by relevance

12345678910>>...59

/linux/Documentation/fb/
H A Dviafb.modes15 # 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
33 geometry 480 640 480 640 32 timings 39722 72 24 19 1 48 3 endmode
40 # Sync Width 2.032 us 0.080 ms
42 # Front Porch 0.508 us 0.027 ms
43 # 2 chars 1 lines
44 # Back Porch 3.810 us 0.427 ms
[all …]
/linux/tools/testing/selftests/tc-testing/tc-tests/qdiscs/
H A Dnetem.json14 "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root netem",
17 "matchPattern": "qdisc netem 1: root refcnt [0-9]+ limit",
18 "matchCount": "1",
20 "$TC qdisc del dev $DUMMY handle 1: root"
35 "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root netem limit 200",
38 "matchPattern": "qdisc netem 1: root refcnt [0-9]+ limit 200",
39 "matchCount": "1",
41 "$TC qdisc del dev $DUMMY handle 1: root"
56 "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root netem delay 100ms",
59 "matchPattern": "qdisc netem 1: root refcnt [0-9]+ .*delay 100ms",
[all …]
H A Dcodel.json14 "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root codel",
17 "matchPattern": "qdisc codel 1: root refcnt [0-9]+ limit 1000p target 5ms interval 100ms",
18 "matchCount": "1",
20 "$TC qdisc del dev $DUMMY handle 1: root"
35 "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root codel limit 1500",
38 "matchPattern": "qdisc codel 1: root refcnt [0-9]+ limit 1500p target 5ms interval 100ms",
39 "matchCount": "1",
41 "$TC qdisc del dev $DUMMY handle 1: root"
56 "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root codel target 100ms",
59 "matchPattern": "qdisc codel 1: root refcnt [0-9]+ limit 1000p target 100ms interval 100ms",
[all …]
H A Dfq_codel.json14 "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root fq_codel",
17 …"matchPattern": "qdisc fq_codel 1: root refcnt [0-9]+ limit 10240p flows 1024 quantum.*target 5ms
18 "matchCount": "1",
20 "$TC qdisc del dev $DUMMY handle 1: root"
35 "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root fq_codel limit 1000",
38 …"matchPattern": "qdisc fq_codel 1: root refcnt [0-9]+ limit 1000p flows 1024 quantum.*target 5ms i…
39 "matchCount": "1",
41 "$TC qdisc del dev $DUMMY handle 1: root"
56 "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root fq_codel memory_limit 100000",
59 …"matchPattern": "qdisc fq_codel 1: root refcnt [0-9]+ limit 10240p flows 1024 quantum.*target 5ms
[all …]
H A Dcake.json14 "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root cake",
17 …ttern": "qdisc cake 1: root refcnt [0-9]+ bandwidth unlimited diffserv3 triple-isolate nonat nowas…
18 "matchCount": "1",
20 "$TC qdisc del dev $DUMMY handle 1: root"
35 "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root cake bandwidth 1000",
38 …Pattern": "qdisc cake 1: root refcnt [0-9]+ bandwidth 1Kbit diffserv3 triple-isolate nonat nowash …
39 "matchCount": "1",
41 "$TC qdisc del dev $DUMMY handle 1: root"
56 "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root cake autorate-ingress",
59 …qdisc cake 1: root refcnt [0-9]+ bandwidth unlimited autorate-ingress diffserv3 triple-isolate non…
[all …]
H A Dhhf.json14 "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root hhf",
17 …"matchPattern": "qdisc hhf 1: root refcnt [0-9]+.*hh_limit 2048 reset_timeout 40ms admit_bytes 128…
18 "matchCount": "1",
20 "$TC qdisc del dev $DUMMY handle 1: root"
35 "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root hhf limit 1500",
38 …matchPattern": "qdisc hhf 1: root refcnt [0-9]+ limit 1500p.*hh_limit 2048 reset_timeout 40ms admi…
39 "matchCount": "1",
41 "$TC qdisc del dev $DUMMY handle 1: root"
56 "cmdUnderTest": "$TC qdisc add dev $DUMMY handle 1: root hhf quantum 9000",
59 …atchPattern": "qdisc hhf 1: root refcnt [0-9]+.*quantum 9000b hh_limit 2048 reset_timeout 40ms adm…
[all …]
/linux/lib/zstd/compress/
H A Dzstd_lazy.c30 void ZSTD_updateDUBT(ZSTD_MatchState_t* ms, in ZSTD_updateDUBT() argument
34 const ZSTD_compressionParameters* const cParams = &ms->cParams; in ZSTD_updateDUBT()
35 U32* const hashTable = ms->hashTable; in ZSTD_updateDUBT()
38 U32* const bt = ms->chainTable; in ZSTD_updateDUBT()
39 U32 const btLog = cParams->chainLog - 1; in ZSTD_updateDUBT()
40 U32 const btMask = (1 << btLog) - 1; in ZSTD_updateDUBT()
42 const BYTE* const base = ms->window.base; in ZSTD_updateDUBT()
44 U32 idx = ms->nextToUpdate; in ZSTD_updateDUBT()
48 idx, target, ms->window.dictLimit); in ZSTD_updateDUBT()
52 assert(idx >= ms->window.dictLimit); /* condition for valid base+idx */ in ZSTD_updateDUBT()
[all …]
H A Dzstd_double_fast.c19 void ZSTD_fillDoubleHashTableForCDict(ZSTD_MatchState_t* ms, in ZSTD_fillDoubleHashTableForCDict() argument
22 const ZSTD_compressionParameters* const cParams = &ms->cParams; in ZSTD_fillDoubleHashTableForCDict()
23 U32* const hashLarge = ms->hashTable; in ZSTD_fillDoubleHashTableForCDict()
26 U32* const hashSmall = ms->chainTable; in ZSTD_fillDoubleHashTableForCDict()
28 const BYTE* const base = ms->window.base; in ZSTD_fillDoubleHashTableForCDict()
29 const BYTE* ip = base + ms->nextToUpdate; in ZSTD_fillDoubleHashTableForCDict()
37 for (; ip + fastHashFillStep - 1 <= iend; ip += fastHashFillStep) { in ZSTD_fillDoubleHashTableForCDict()
57 void ZSTD_fillDoubleHashTableForCCtx(ZSTD_MatchState_t* ms, in ZSTD_fillDoubleHashTableForCCtx() argument
60 const ZSTD_compressionParameters* const cParams = &ms->cParams; in ZSTD_fillDoubleHashTableForCCtx()
61 U32* const hashLarge = ms->hashTable; in ZSTD_fillDoubleHashTableForCCtx()
[all …]
H A Dzstd_fast.c17 void ZSTD_fillHashTableForCDict(ZSTD_MatchState_t* ms, in ZSTD_fillHashTableForCDict() argument
21 const ZSTD_compressionParameters* const cParams = &ms->cParams; in ZSTD_fillHashTableForCDict()
22 U32* const hashTable = ms->hashTable; in ZSTD_fillHashTableForCDict()
25 const BYTE* const base = ms->window.base; in ZSTD_fillHashTableForCDict()
26 const BYTE* ip = base + ms->nextToUpdate; in ZSTD_fillHashTableForCDict()
45 for (p = 1; p < fastHashFillStep; ++p) { in ZSTD_fillHashTableForCDict()
54 void ZSTD_fillHashTableForCCtx(ZSTD_MatchState_t* ms, in ZSTD_fillHashTableForCCtx() argument
58 const ZSTD_compressionParameters* const cParams = &ms->cParams; in ZSTD_fillHashTableForCCtx()
59 U32* const hashTable = ms->hashTable; in ZSTD_fillHashTableForCCtx()
62 const BYTE* const base = ms->window.base; in ZSTD_fillHashTableForCCtx()
[all …]
H A Dzstd_opt.c21 #define ZSTD_MAX_PRICE (1<<30)
32 # define BITCOST_MULTIPLIER (1 << BITCOST_ACCURACY)
36 # define BITCOST_MULTIPLIER (1 << BITCOST_ACCURACY)
40 # define BITCOST_MULTIPLIER (1 << BITCOST_ACCURACY)
48 return (ZSTD_highbit32(stat+1) * BITCOST_MULTIPLIER); in ZSTD_bitWeight()
56 U32 const stat = rawStat + 1; in ZSTD_fracWeight()
60 * but it's effectively a value between 1 and 2 in ZSTD_fracWeight()
103 typedef enum { base_0possible=0, base_1guaranteed=1 } base_directive_e;
110 (unsigned)lastEltIndex+1, (unsigned)shift ); in ZSTD_downscaleStats()
112 for (s=0; s<lastEltIndex+1; s++) { in ZSTD_downscaleStats()
[all …]
/linux/sound/soc/codecs/
H A Dssm2518.c47 #define SSM2518_POWER1_MCS_MASK (0xf << 1)
48 #define SSM2518_POWER1_MCS_64FS (0x0 << 1)
49 #define SSM2518_POWER1_MCS_128FS (0x1 << 1)
50 #define SSM2518_POWER1_MCS_256FS (0x2 << 1)
51 #define SSM2518_POWER1_MCS_384FS (0x3 << 1)
52 #define SSM2518_POWER1_MCS_512FS (0x4 << 1)
53 #define SSM2518_POWER1_MCS_768FS (0x5 << 1)
54 #define SSM2518_POWER1_MCS_100FS (0x6 << 1)
55 #define SSM2518_POWER1_MCS_200FS (0x7 << 1)
56 #define SSM2518_POWER1_MCS_400FS (0x8 << 1)
[all...]
H A Dadau1761.c59 #define ADAU1761_PLAY_MONO_OUTPUT_VOL_UNMUTE BIT(1)
125 static const DECLARE_TLV_DB_SCALE(adau1761_sing_in_tlv, -1500, 300, 1);
128 static const DECLARE_TLV_DB_SCALE(adau1761_sidetone_tlv, -1800, 300, 1);
129 static const DECLARE_TLV_DB_SCALE(adau1761_boost_tlv, -600, 600, 1);
130 static const DECLARE_TLV_DB_SCALE(adau1761_pga_boost_tlv, -2000, 2000, 1);
159 ADAU17X1_REC_POWER_MGMT, 1, 0x3, adau1761_bias_select_text,
163 3, 0, 1, 2,
168 "24 ms",
169 "48 ms",
170 "96 ms",
[all...]
H A Dmax98388.c80 MAX98388_R210F_GLOBAL_EN, 1); in max98388_dac_event()
107 SOC_DAPM_SINGLE("Switch", MAX98388_R205F_PCM_TX_EN, 0, 1, 0);
119 MAX98388_R20A7_IV_DATA_EN, 1, 0),
123 MAX98388_R205D_PCM_TX_SRC_EN, 1, 0),
130 static DECLARE_TLV_DB_SCALE(max98388_digital_tlv, -6350, 50, 1);
134 "0dBFS", "-1dBFS", "-2dBFS", "-3dBFS", "-4dBFS", "-5dBFS",
175 "320us", "640us", "1.28ms", "2.56ms", "5.12ms", "10.24ms",
176 "20.48ms", "40.96ms", "81.92ms", "163.84ms"
186 "1.28ms", "2.56ms", "5.12ms", "10.24ms", "20.48ms", "40.96ms",
187 "81.92ms", "163.84ms", "327.68ms", "655.36ms"
[all …]
H A Dmax98373.c30 MAX98373_GLOBAL_EN_MASK, 1); in max98373_dac_event()
58 SOC_DAPM_SINGLE("Switch", MAX98373_R202C_PCM_TX_EN, 0, 1, 0);
61 SOC_DAPM_SINGLE("Switch", MAX98373_R2043_AMP_EN, 1, 1, 0);
73 MAX98373_R2047_IV_SENSE_ADC_EN, 1, 0),
85 static DECLARE_TLV_DB_SCALE(max98373_digital_tlv, -6350, 50, 1);
94 0, 1, TLV_DB_SCALE_ITEM(25, 25, 0),
101 0, 1, TLV_DB_SCALE_ITEM(-3000, 500, 0),
135 "45ms", "225ms", "45
[all...]
/linux/Documentation/sound/cards/
H A Dserial-u16550.rst8 * 1 - Midiator MS-124T support (1)
9 * 2 - Midiator MS-124W S/A mode (2)
10 * 3 - MS-124W M/B mode support (3)
13 For the Midiator MS-124W, you must set the physical M-S and A-B
19 number plus 1. Roland modules use this command to switch between different
36 In MS-124T mode, one raw MIDI substream is supported (midiCnD0); the outs
37 module parameter is automatically set to 1. The driver sends the same data to
41 Usage example for MS-124T, with A-B switch in A position:
45 /sbin/modprobe snd-serial-u16550 port=0x3f8 irq=4 adaptor=1 \
48 In MS-124W S/A mode, one raw MIDI substream is supported (midiCnD0);
[all …]
/linux/Documentation/devicetree/bindings/input/touchscreen/
H A Dbrcm,iproc-touchscreen.txt13 Should set to 1.
15 in reg property. Should set to 1.
18 - scanning_period: Time between scans. Each step is 1024 us. Valid 1-256.
20 - settling_timeout: The settling duration (in ms) is the amount of time
24 0 = 0.008 ms
25 1 = 0.01 ms
26 2 = 0.02 ms
27 3 = 0.04 ms
28 4 = 0.08 ms
29 5 = 0.16 ms
[all …]
H A Dazoteq,iqs7211.yaml26 maxItems: 1
29 maxItems: 1
36 maxItems: 1
50 enum: [0, 1]
52 Indicates if the device's OTP memory enables (1) or disables (0) forced
61 azoteq,rate-active-ms:
64 description: Specifies the report rate (in ms) during active mode.
66 azoteq,rate-touch-ms:
69 description: Specifies the report rate (in ms) during idle-touch mode.
71 azoteq,rate-idle-ms:
[all …]
/linux/sound/pci/ice1712/
H A Dwm8776.c20 u8 bus_addr = addr << 1 | data >> 8; /* addr + 9th data bit */ in snd_wm8776_write()
87 case 1: /* Limiter */ in snd_wm8776_set_agc()
119 static const DECLARE_TLV_DB_SCALE(wm8776_hp_tlv, -7400, 100, 1);
120 static const DECLARE_TLV_DB_SCALE(wm8776_dac_tlv, -12750, 50, 1);
121 static const DECLARE_TLV_DB_SCALE(wm8776_adc_tlv, -10350, 50, 1);
287 .enum_names = { "0.25 ms", "0.5 ms", "1 ms", "2 ms", "4 ms",
288 "8 ms", "16 ms", "32 ms", "64 ms", "128 ms", "256 ms" },
297 .enum_names = { "1.2 ms", "2.4 ms", "4.8 ms", "9.6 ms",
298 "19.2 ms", "38.4 ms", "76.8 ms", "154 ms", "307 ms",
299 "614 ms", "1.23 s" },
[all …]
/linux/Documentation/devicetree/bindings/sound/
H A Dcirrus,cs42l42.yaml27 maxItems: 1
53 maxItems: 1
58 maxItems: 1
67 1 - Open when unplugged, shorted to tip when plugged.
73 maximum: 1
80 0 - 0ms
81 1 - 125ms
82 2 - 250ms
83 3 - 500ms
84 4 - 750ms
[all …]
/linux/drivers/usb/typec/
H A Dmode_selection.c36 * @timeout: Timeout for a mode entry attempt, ms
37 * @delay: Delay between mode entry/exit attempts, ms
74 return 1; in activate_altmode()
104 struct mode_state *ms, *tmp; in mode_list_clean() local
106 list_for_each_entry_safe(ms, tmp, &sel->mode_list, list) { in mode_list_clean()
107 list_del(&ms->list); in mode_list_clean()
108 kfree(ms); in mode_list_clean()
122 * stored in the `ms->error` field:
124 * - `ms->error` value of 0 signifies that the mode has not yet been activated.
134 struct mode_state *ms; in mode_selection_work_fn() local
[all …]
/linux/fs/dlm/
H A Dlock.c31 Stage 1 (lock, unlock) is mainly about checking input args and
89 const struct dlm_message *ms, bool local);
90 static int receive_extralen(const struct dlm_message *ms);
99 * Usage: matrix[grmode+1][rqmode+1] (although m[rq+1][gr+1] is the same)
104 {1, 1, 1, 1, 1, 1, 1, 0}, /* UN */
105 {1, 1, 1, 1, 1, 1, 1, 0}, /* NL */
106 {1, 1, 1, 1, 1, 1, 0, 0}, /* CR */
107 {1, 1, 1, 1, 0, 0, 0, 0}, /* CW */
108 {1, 1, 1, 0, 1, 0, 0, 0}, /* PR */
109 {1, 1, 1, 0, 0, 0, 0, 0}, /* PW */
[all …]
H A Drequestqueue.c34 const struct dlm_message *ms) in dlm_add_requestqueue() argument
37 int length = le16_to_cpu(ms->m_header.h_length) - in dlm_add_requestqueue()
48 memcpy(&e->request, ms, sizeof(*ms)); in dlm_add_requestqueue()
49 memcpy(&e->request.m_extra, ms->m_extra, length); in dlm_add_requestqueue()
68 struct dlm_message *ms; in dlm_process_requestqueue() local
80 ms = &e->request; in dlm_process_requestqueue()
84 le32_to_cpu(ms->m_type), in dlm_process_requestqueue()
85 le32_to_cpu(ms->m_header.h_nodeid), in dlm_process_requestqueue()
86 le32_to_cpu(ms->m_lkid), le32_to_cpu(ms->m_remid), in dlm_process_requestqueue()
87 from_dlm_errno(le32_to_cpu(ms->m_result)), in dlm_process_requestqueue()
[all …]
/linux/net/mac80211/
H A Drc80211_minstrel_ht_debugfs.c22 struct minstrel_debugfs_info *ms; in minstrel_stats_read() local
24 ms = file->private_data; in minstrel_stats_read()
25 return simple_read_from_buffer(buf, len, ppos, ms->buf, ms->len); in minstrel_stats_read()
87 p += sprintf(p, "1 "); in minstrel_ht_stats_dump()
91 p += sprintf(p, "1 "); in minstrel_ht_stats_dump()
95 *(p++) = (idx == mi->max_tp_rate[1]) ? 'B' : ' '; in minstrel_ht_stats_dump()
102 p += sprintf(p, " MCS%-2u", (mg->streams - 1) * 8 + j); in minstrel_ht_stats_dump()
104 p += sprintf(p, " MCS%-1u/%1u", j, mg->streams); in minstrel_ht_stats_dump()
113 p += sprintf(p, " %2u.%1uM", r / 10, r % 10); in minstrel_ht_stats_dump()
128 p += sprintf(p, "%4u.%1u %4u.%1u %3u.%1u" in minstrel_ht_stats_dump()
[all …]
/linux/tools/perf/util/annotate-arch/
H A Dannotate-loongarch.c18 struct map_symbol *ms, in loongarch_call__parse() argument
22 struct map *map = ms->map; in loongarch_call__parse()
27 return -1; in loongarch_call__parse()
36 return -1; in loongarch_call__parse()
40 return -1; in loongarch_call__parse()
47 return -1; in loongarch_call__parse()
50 .ms = { .map = map__get(map), }, in loongarch_call__parse()
54 if (maps__find_ams(thread__maps(ms->thread), &target) == 0 && in loongarch_call__parse()
55 map__rip_2objdump(target.ms.map, map__map_ip(target.ms.map, target.addr)) == ops->target.addr) in loongarch_call__parse()
56 ops->target.sym = target.ms.sym; in loongarch_call__parse()
[all …]
/linux/Documentation/translations/zh_CN/scheduler/
H A Dsched-bwc.rst39 (U = \Sum u_i) <= 1
41 这既保证了每个最后期限的实现,也保证了系统的稳定。毕竟,如果U>1,那么每一秒钟的壁钟时间,我
78 cpu.cfs_period_us=100ms
79 cpu.cfs_quota_us=-1
82 cpu.cfs_quota_us的值为-1表示该组没有任何带宽限制,这样的组被描述为无限制的带宽组。这代表
104 /proc/sys/kernel/sched_cfs_bandwidth_slice_us (default=5ms)
144 1ms以外的所有时间片都可以返回到全局池中。这是在编译时由min_cfs_rq_runtime变量配置的。这
170 1. 限制一个组的运行时间为1个CPU的价值::
174 # echo 250000 > cpu.cfs_quota_us /* quota = 250ms */
175 # echo 250000 > cpu.cfs_period_us /* period = 250ms */
[all …]

12345678910>>...59