Skip to content

Commit 2323a85

Browse files
RalfJunggnzlbg
authored andcommitted
fix rustdoc link failures
1 parent 9ee7f75 commit 2323a85

File tree

2 files changed

+84
-84
lines changed

2 files changed

+84
-84
lines changed

crates/core_arch/src/acle/dsp.rs

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@
44
//!
55
//! Intrinsics that could live here:
66
//!
7-
//! - [x] __smulbb
8-
//! - [x] __smulbt
9-
//! - [x] __smultb
10-
//! - [x] __smultt
11-
//! - [x] __smulwb
12-
//! - [x] __smulwt
13-
//! - [x] __qadd
14-
//! - [x] __qsub
15-
//! - [x] __qdbl
16-
//! - [x] __smlabb
17-
//! - [x] __smlabt
18-
//! - [x] __smlatb
19-
//! - [x] __smlatt
20-
//! - [x] __smlawb
21-
//! - [x] __smlawt
7+
//! - \[x\] __smulbb
8+
//! - \[x\] __smulbt
9+
//! - \[x\] __smultb
10+
//! - \[x\] __smultt
11+
//! - \[x\] __smulwb
12+
//! - \[x\] __smulwt
13+
//! - \[x\] __qadd
14+
//! - \[x\] __qsub
15+
//! - \[x\] __qdbl
16+
//! - \[x\] __smlabb
17+
//! - \[x\] __smlabt
18+
//! - \[x\] __smlatb
19+
//! - \[x\] __smlatt
20+
//! - \[x\] __smlawb
21+
//! - \[x\] __smlawt
2222
2323
#[cfg(test)]
2424
use stdsimd_test::assert_instr;
@@ -99,7 +99,7 @@ pub unsafe fn __smultb(a: int16x2_t, b: int16x2_t) -> i32 {
9999
/// Insert a SMULTB instruction
100100
///
101101
/// Returns the equivalent of a\[1\] * b\[0\]
102-
/// where [0] is the lower 16 bits and [1] is the upper 16 bits.
102+
/// where \[0\] is the lower 16 bits and \[1\] is the upper 16 bits.
103103
#[inline]
104104
#[cfg_attr(test, assert_instr(smulbt))]
105105
pub unsafe fn __smulbt(a: int16x2_t, b: int16x2_t) -> i32 {
@@ -109,7 +109,7 @@ pub unsafe fn __smulbt(a: int16x2_t, b: int16x2_t) -> i32 {
109109
/// Insert a SMULTT instruction
110110
///
111111
/// Returns the equivalent of a\[1\] * b\[1\]
112-
/// where [0] is the lower 16 bits and [1] is the upper 16 bits.
112+
/// where \[0\] is the lower 16 bits and \[1\] is the upper 16 bits.
113113
#[inline]
114114
#[cfg_attr(test, assert_instr(smultt))]
115115
pub unsafe fn __smultt(a: int16x2_t, b: int16x2_t) -> i32 {
@@ -171,7 +171,7 @@ pub unsafe fn __qdbl(a: i32) -> i32 {
171171
/// Insert a SMLABB instruction
172172
///
173173
/// Returns the equivalent of a\[0\] * b\[0\] + c
174-
/// where [0] is the lower 16 bits and [1] is the upper 16 bits.
174+
/// where \[0\] is the lower 16 bits and \[1\] is the upper 16 bits.
175175
/// Sets the Q flag if overflow occurs on the addition.
176176
#[inline]
177177
#[cfg_attr(test, assert_instr(smlabb))]
@@ -182,7 +182,7 @@ pub unsafe fn __smlabb(a: int16x2_t, b: int16x2_t, c: i32) -> i32 {
182182
/// Insert a SMLABT instruction
183183
///
184184
/// Returns the equivalent of a\[0\] * b\[1\] + c
185-
/// where [0] is the lower 16 bits and [1] is the upper 16 bits.
185+
/// where \[0\] is the lower 16 bits and \[1\] is the upper 16 bits.
186186
/// Sets the Q flag if overflow occurs on the addition.
187187
#[inline]
188188
#[cfg_attr(test, assert_instr(smlabt))]
@@ -193,7 +193,7 @@ pub unsafe fn __smlabt(a: int16x2_t, b: int16x2_t, c: i32) -> i32 {
193193
/// Insert a SMLATB instruction
194194
///
195195
/// Returns the equivalent of a\[1\] * b\[0\] + c
196-
/// where [0] is the lower 16 bits and [1] is the upper 16 bits.
196+
/// where \[0\] is the lower 16 bits and \[1\] is the upper 16 bits.
197197
/// Sets the Q flag if overflow occurs on the addition.
198198
#[inline]
199199
#[cfg_attr(test, assert_instr(smlatb))]
@@ -204,7 +204,7 @@ pub unsafe fn __smlatb(a: int16x2_t, b: int16x2_t, c: i32) -> i32 {
204204
/// Insert a SMLATT instruction
205205
///
206206
/// Returns the equivalent of a\[1\] * b\[1\] + c
207-
/// where [0] is the lower 16 bits and [1] is the upper 16 bits.
207+
/// where \[0\] is the lower 16 bits and \[1\] is the upper 16 bits.
208208
/// Sets the Q flag if overflow occurs on the addition.
209209
#[inline]
210210
#[cfg_attr(test, assert_instr(smlatt))]
@@ -214,8 +214,8 @@ pub unsafe fn __smlatt(a: int16x2_t, b: int16x2_t, c: i32) -> i32 {
214214

215215
/// Insert a SMLAWB instruction
216216
///
217-
/// Returns the equivalent of (a * b[0] + (c << 16)) >> 16
218-
/// where [0] is the lower 16 bits and [1] is the upper 16 bits.
217+
/// Returns the equivalent of (a * b\[0\] + (c << 16)) >> 16
218+
/// where \[0\] is the lower 16 bits and \[1\] is the upper 16 bits.
219219
/// Sets the Q flag if overflow occurs on the addition.
220220
#[inline]
221221
#[cfg_attr(test, assert_instr(smlawb))]
@@ -225,8 +225,8 @@ pub unsafe fn __smlawb(a: i32, b: int16x2_t, c: i32) -> i32 {
225225

226226
/// Insert a SMLAWT instruction
227227
///
228-
/// Returns the equivalent of (a * b[1] + (c << 16)) >> 16
229-
/// where [0] is the lower 16 bits and [1] is the upper 16 bits.
228+
/// Returns the equivalent of (a * b\[1\] + (c << 16)) >> 16
229+
/// where \[0\] is the lower 16 bits and \[1\] is the upper 16 bits.
230230
/// Sets the Q flag if overflow occurs on the addition.
231231
#[inline]
232232
#[cfg_attr(test, assert_instr(smlawt))]

crates/core_arch/src/acle/simd32.rs

Lines changed: 59 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -4,63 +4,63 @@
44
//!
55
//! Intrinsics that could live here
66
//!
7-
//! - [x] __sel
8-
//! - [ ] __ssat16
9-
//! - [ ] __usat16
10-
//! - [ ] __sxtab16
11-
//! - [ ] __sxtb16
12-
//! - [ ] __uxtab16
13-
//! - [ ] __uxtb16
14-
//! - [x] __qadd8
15-
//! - [x] __qsub8
16-
//! - [x] __sadd8
17-
//! - [x] __shadd8
18-
//! - [x] __shsub8
19-
//! - [x] __ssub8
20-
//! - [ ] __uadd8
21-
//! - [ ] __uhadd8
22-
//! - [ ] __uhsub8
23-
//! - [ ] __uqadd8
24-
//! - [ ] __uqsub8
25-
//! - [x] __usub8
26-
//! - [x] __usad8
27-
//! - [x] __usada8
28-
//! - [x] __qadd16
29-
//! - [x] __qasx
30-
//! - [x] __qsax
31-
//! - [x] __qsub16
32-
//! - [x] __sadd16
33-
//! - [x] __sasx
34-
//! - [x] __shadd16
35-
//! - [ ] __shasx
36-
//! - [ ] __shsax
37-
//! - [x] __shsub16
38-
//! - [ ] __ssax
39-
//! - [ ] __ssub16
40-
//! - [ ] __uadd16
41-
//! - [ ] __uasx
42-
//! - [ ] __uhadd16
43-
//! - [ ] __uhasx
44-
//! - [ ] __uhsax
45-
//! - [ ] __uhsub16
46-
//! - [ ] __uqadd16
47-
//! - [ ] __uqasx
48-
//! - [x] __uqsax
49-
//! - [ ] __uqsub16
50-
//! - [ ] __usax
51-
//! - [ ] __usub16
52-
//! - [x] __smlad
53-
//! - [ ] __smladx
54-
//! - [ ] __smlald
55-
//! - [ ] __smlaldx
56-
//! - [x] __smlsd
57-
//! - [ ] __smlsdx
58-
//! - [ ] __smlsld
59-
//! - [ ] __smlsldx
60-
//! - [x] __smuad
61-
//! - [x] __smuadx
62-
//! - [x] __smusd
63-
//! - [x] __smusdx
7+
//! - \[x\] __sel
8+
//! - \[ \] __ssat16
9+
//! - \[ \] __usat16
10+
//! - \[ \] __sxtab16
11+
//! - \[ \] __sxtb16
12+
//! - \[ \] __uxtab16
13+
//! - \[ \] __uxtb16
14+
//! - \[x\] __qadd8
15+
//! - \[x\] __qsub8
16+
//! - \[x\] __sadd8
17+
//! - \[x\] __shadd8
18+
//! - \[x\] __shsub8
19+
//! - \[x\] __ssub8
20+
//! - \[ \] __uadd8
21+
//! - \[ \] __uhadd8
22+
//! - \[ \] __uhsub8
23+
//! - \[ \] __uqadd8
24+
//! - \[ \] __uqsub8
25+
//! - \[x\] __usub8
26+
//! - \[x\] __usad8
27+
//! - \[x\] __usada8
28+
//! - \[x\] __qadd16
29+
//! - \[x\] __qasx
30+
//! - \[x\] __qsax
31+
//! - \[x\] __qsub16
32+
//! - \[x\] __sadd16
33+
//! - \[x\] __sasx
34+
//! - \[x\] __shadd16
35+
//! - \[ \] __shasx
36+
//! - \[ \] __shsax
37+
//! - \[x\] __shsub16
38+
//! - \[ \] __ssax
39+
//! - \[ \] __ssub16
40+
//! - \[ \] __uadd16
41+
//! - \[ \] __uasx
42+
//! - \[ \] __uhadd16
43+
//! - \[ \] __uhasx
44+
//! - \[ \] __uhsax
45+
//! - \[ \] __uhsub16
46+
//! - \[ \] __uqadd16
47+
//! - \[ \] __uqasx
48+
//! - \[x\] __uqsax
49+
//! - \[ \] __uqsub16
50+
//! - \[ \] __usax
51+
//! - \[ \] __usub16
52+
//! - \[x\] __smlad
53+
//! - \[ \] __smladx
54+
//! - \[ \] __smlald
55+
//! - \[ \] __smlaldx
56+
//! - \[x\] __smlsd
57+
//! - \[ \] __smlsdx
58+
//! - \[ \] __smlsld
59+
//! - \[ \] __smlsldx
60+
//! - \[x\] __smuad
61+
//! - \[x\] __smuadx
62+
//! - \[x\] __smusd
63+
//! - \[x\] __smusdx
6464
6565
#[cfg(test)]
6666
use stdsimd_test::assert_instr;
@@ -349,7 +349,7 @@ pub unsafe fn __shsub8(a: int8x4_t, b: int8x4_t) -> int8x4_t {
349349
/// res\[2\] = a\[2\] - a\[2\]
350350
/// res\[3\] = a\[3\] - a\[3\]
351351
///
352-
/// where [0] is the lower 8 bits and [3] is the upper 8 bits.
352+
/// where \[0\] is the lower 8 bits and \[3\] is the upper 8 bits.
353353
/// The GE bits of the APSR are set.
354354
#[inline]
355355
#[cfg_attr(test, assert_instr(usub8))]
@@ -366,7 +366,7 @@ pub unsafe fn __usub8(a: uint8x4_t, b: uint8x4_t) -> uint8x4_t {
366366
/// res\[2\] = a\[2\] - a\[2\]
367367
/// res\[3\] = a\[3\] - a\[3\]
368368
///
369-
/// where [0] is the lower 8 bits and [3] is the upper 8 bits.
369+
/// where \[0\] is the lower 8 bits and \[3\] is the upper 8 bits.
370370
/// The GE bits of the APSR are set.
371371
#[inline]
372372
#[cfg_attr(test, assert_instr(ssub8))]

0 commit comments

Comments
 (0)