Home
last modified time | relevance | path

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

12345678910>>...43

/linux/drivers/spi/
H A Dspi-mpc52xx.c36 #define SPI_CTRL1_SPIE (1 << 7)
37 #define SPI_CTRL1_SPE (1 << 6)
38 #define SPI_CTRL1_MSTR (1 << 4)
39 #define SPI_CTRL1_CPOL (1 << 3)
40 #define SPI_CTRL1_CPHA (1 << 2)
41 #define SPI_CTRL1_SSOE (1 << 1)
42 #define SPI_CTRL1_LSBFE (1 << 0)
48 #define SPI_STATUS_SPIF (1 << 7)
49 #define SPI_STATUS_WCOL (1 << 6)
50 #define SPI_STATUS_MODF (1 << 4)
[all …]
/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/drivers/scsi/
H A Dmesh.c52 #if 1
82 #define ALLOW_SYNC(tgt) ((sync_targets >> (tgt)) & 1)
83 #define ALLOW_RESEL(tgt) ((resel_targets >> (tgt)) & 1)
84 #define ALLOW_DEBUG(tgt) ((debug_targets >> (tgt)) & 1)
186 static void mesh_done(struct mesh_state *ms, int start_next);
187 static void mesh_interrupt(struct mesh_state *ms);
188 static void cmd_complete(struct mesh_state *ms);
189 static void set_dma_cmds(struct mesh_state *ms, struct scsi_cmnd *cmd);
190 static void halt_dma(struct mesh_state *ms);
191 static void phase_mismatch(struct mesh_state *ms);
[all …]
/linux/include/crypto/
H A Dgf128mul.h24 1. distributions of this source code include the above copyright
61 * The elements of GF(2^128) := GF(2)[X]/(X^128-X^7-X^2-X^1-1) can
70 * b[0] b[1] b[2] b[3] b[13] b[14] b[15]
75 * The above buffer represents the polynomial 1, and X^7+X^2+X^1+1 looks
82 * represents X^127. X^7+X^2+X^1+1 looks like 00000000 .... 10000111,
105 * MS x[0] LS MS x[1] LS
106 * ms ls ms ls ms ls ms ls ms ls ms ls ms ls ms ls
109 * MS x[2] LS MS x[3] LS
110 * ms ls ms ls ms ls ms ls ms ls ms ls ms ls ms ls
115 * MS x[0] LS MS x[1] LS
[all …]
/linux/drivers/md/
H A Ddm-raid1.c27 #define MAX_RECOVERY 1 /* Maximum number of regions recovered in parallel. */
29 #define MAX_NR_MIRRORS (DM_KCOPYD_MAX_REGIONS + 1)
51 struct mirror_set *ms; member
99 struct mirror_set *ms = context; in wakeup_mirrord() local
101 queue_work(ms->kmirrord_wq, &ms->kmirrord_work); in wakeup_mirrord()
106 struct mirror_set *ms = timer_container_of(ms, t, timer); in delayed_wake_fn() local
108 clear_bit(0, &ms->timer_pending); in delayed_wake_fn()
109 wakeup_mirrord(ms); in delayed_wake_fn()
112 static void delayed_wake(struct mirror_set *ms) in delayed_wake() argument
114 if (test_and_set_bit(0, &ms->timer_pending)) in delayed_wake()
[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 …]
/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 …]
/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.c81 MAX98388_R210F_GLOBAL_EN, 1); in max98388_dac_event()
108 SOC_DAPM_SINGLE("Switch", MAX98388_R205F_PCM_TX_EN, 0, 1, 0);
120 MAX98388_R20A7_IV_DATA_EN, 1, 0),
124 MAX98388_R205D_PCM_TX_SRC_EN, 1, 0),
131 static DECLARE_TLV_DB_SCALE(max98388_digital_tlv, -6350, 50, 1);
135 "0dBFS", "-1dBFS", "-2dBFS", "-3dBFS", "-4dBFS", "-5dBFS",
176 "320us", "640us", "1.28ms", "2.56ms", "5.12ms", "10.24ms",
177 "20.48ms", "40.96ms", "81.92ms", "163.84ms"
187 "1.28ms", "2.56ms", "5.12ms", "10.24ms", "20.48ms", "40.96ms",
188 "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", "450ms", "1150ms",
136 "2250ms", "3100ms", "4500ms", "6750ms"
145 "160us", "320us", "640us", "1.28ms",
[all …]
/linux/drivers/hid/
H A Dhid-microsoft.c23 #define MS_ERGONOMY BIT(1)
42 #define ENABLE_STRONG BIT(1)
62 struct ms_data *ms = hid_get_drvdata(hdev); in ms_report_fixup() local
63 unsigned long quirks = ms->quirks; in ms_report_fixup()
89 * the MS office kb labelled "Office Home" and "Task Pane". in ms_ergonomy_kb_quirk()
93 return 1; in ms_ergonomy_kb_quirk()
96 return 1; in ms_ergonomy_kb_quirk()
121 * (this usage is found on interface 1). in ms_ergonomy_kb_quirk()
126 return -1; in ms_ergonomy_kb_quirk()
139 return 1; in ms_ergonomy_kb_quirk()
[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/accounting/
H A Ddelay-accounting.rst111 … 39 156000000 156576579 2111069 0.054ms 0.212296ms 0.031307ms
113 0 0 0.000ms 0.000000ms 0.000000ms
115 0 0 0.000ms 0.000000ms 0.000000ms
117 0 0 0.000ms 0.000000ms 0.000000ms
119 0 0 0.000ms 0.000000ms 0.000000ms
121 0 0 0.000ms 0.000000ms 0.000000ms
123 156 11215873 0.072ms 0.207403ms 0.033913ms
125 0 0 0.000ms 0.000000ms 0.000000ms
127 Get IO accounting for pid 1, it works only with -p::
129 # ./getdelays -i -p 1
[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 …]
/linux/Documentation/scheduler/
H A Dsched-bwc.rst32 (U = \Sum u_i) <= 1
35 stable. After all, if U were > 1, then for every second of walltime,
84 cpu.cfs_period_us=100ms
85 cpu.cfs_quota_us=-1
88 A value of -1 for cpu.cfs_quota_us indicates that the group does not have any
95 period is 1ms. There is also an upper bound on the period length of 1s.
120 /proc/sys/kernel/sched_cfs_bandwidth_slice_us (default=5ms)
163 Once a slice is assigned to a cpu it does not expire. However all but 1ms of
181 1ms per cpu or as defined by min_cfs_rq_runtime). This slight burst only
186 also limits the burst ability to no more than 1ms per cpu. This provides
[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/mm/
H A Dsparse.c24 * 1) mem_section - memory sections, mem_map's for valid memory
132 unsigned long max_sparsemem_pfn = (DIRECT_MAP_PHYSMEM_END + 1) >> PAGE_SHIFT; in mminit_validate_memmodel_limits()
142 WARN_ON_ONCE(1); in mminit_validate_memmodel_limits()
149 WARN_ON_ONCE(1); in mminit_validate_memmodel_limits()
164 static void __section_mark_present(struct mem_section *ms, in __section_mark_present() argument
170 ms->section_mem_map |= SECTION_MARKED_PRESENT; in __section_mark_present()
175 return next_present_section_nr(-1); in first_present_section_nr()
183 int end = subsection_map_index(pfn + nr_pages - 1); in subsection_mask_set()
185 bitmap_set(map, idx, end - idx + 1); in subsection_mask_set()
190 int end_sec_nr = pfn_to_section_nr(pfn + nr_pages - 1); in subsection_map_init()
[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 …]
/linux/Documentation/translations/sp_SP/scheduler/
H A Dsched-bwc.rst46 (U = \Sum u_i) <= 1
49 y que el sistema es estable. De todas formas, si U fuese > 1, entonces
107 cpu.cfs_period_us=100ms
108 cpu.cfs_quota_us=-1
111 Un valor de -1 para cpu.cfs_quota_us indica que el grupo no tiene ninguna
118 la cuota o periodo es 1ms. Hay también un límite superior en la duración del
119 periodo de 1s. Existen restricciones adicionales cuando los límites de
146 /proc/sys/kernel/sched_cfs_bandwidth_slice_us (valor por defecto=5ms)
194 excepto las "slices" menos las de 1ms, puede ser devueltas a la reserva global
213 (típicamente como mucho 1ms por cada cpu o lo que se ha definido como
[all …]
/linux/drivers/gpu/drm/amd/display/dc/dml2/dml21/src/dml2_core/
H A Ddml2_core_dcn4_calcs.c65 if (!fail_only || support->LinkRateDoesNotMatchDPVersion == 1) in dml2_print_mode_support_info()
67 if (!fail_only || support->LinkRateForMultistreamNotIndicated == 1) in dml2_print_mode_support_info()
69 if (!fail_only || support->BPPForMultistreamNotIndicated == 1) in dml2_print_mode_support_info()
71 if (!fail_only || support->MultistreamWithHDMIOreDP == 1) in dml2_print_mode_support_info()
73 if (!fail_only || support->ExceededMultistreamSlots == 1) in dml2_print_mode_support_info()
75 if (!fail_only || support->MSOOrODMSplitWithNonDPLink == 1) in dml2_print_mode_support_info()
77 if (!fail_only || support->NotEnoughLanesForMSO == 1) in dml2_print_mode_support_info()
79 if (!fail_only || support->P2IWith420 == 1) in dml2_print_mode_support_info()
81 if (!fail_only || support->DSC422NativeNotSupported == 1) in dml2_print_mode_support_info()
85 if (!fail_only || support->NotEnoughDSCUnits == 1) in dml2_print_mode_support_info()
[all …]
/linux/drivers/net/wireless/ath/ath9k/
H A Dar9003_mac.c37 (1 << AR_TxRxDesc_S) | in ar9003_set_txdesc()
38 (1 << AR_CtrlStat_S) | in ar9003_set_txdesc()
49 checksum += i->buf_addr[1]; in ar9003_set_txdesc()
50 WRITE_ONCE(ads->data1, i->buf_addr[1]); in ar9003_set_txdesc()
58 checksum += (val = (i->buf_len[1] << AR_BufLen_S) & AR_BufLen); in ar9003_set_txdesc()
70 | set11nTries(i->rates, 1) in ar9003_set_txdesc()
77 | set11nRate(i->rates, 1) in ar9003_set_txdesc()
142 | set11nPktDurRTSCTS(i->rates, 1)); in ar9003_set_txdesc()
149 | set11nRateFlags(i->rates, 1) | set11nChainSel(i->rates, 1) in ar9003_set_txdesc()
156 WRITE_ONCE(ads->ctl20, SM(i->txpower[1], AR_XmitPower1)); in ar9003_set_txdesc()
[all …]

12345678910>>...43