Skip to content

Commit 8fb712e

Browse files
committed
style: cargo fmt neon.rs
1 parent c7c864c commit 8fb712e

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

src/simd/aarch64/neon.rs

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -150,10 +150,8 @@ pub fn forward_dct_8x8_neon(
150150

151151
// Pass 1
152152
dct_pass(
153-
token,
154-
&mut col0, &mut col1, &mut col2, &mut col3,
155-
&mut col4, &mut col5, &mut col6, &mut col7,
156-
consts_lo, consts_hi, consts2, true,
153+
token, &mut col0, &mut col1, &mut col2, &mut col3, &mut col4, &mut col5, &mut col6,
154+
&mut col7, consts_lo, consts_hi, consts2, true,
157155
);
158156

159157
// Transpose again
@@ -195,10 +193,8 @@ pub fn forward_dct_8x8_neon(
195193

196194
// Pass 2
197195
dct_pass(
198-
token,
199-
&mut col0, &mut col1, &mut col2, &mut col3,
200-
&mut col4, &mut col5, &mut col6, &mut col7,
201-
consts_lo, consts_hi, consts2, false,
196+
token, &mut col0, &mut col1, &mut col2, &mut col3, &mut col4, &mut col5, &mut col6,
197+
&mut col7, consts_lo, consts_hi, consts2, false,
202198
);
203199

204200
// Store results - use chunks to get mutable array references
@@ -214,8 +210,14 @@ pub fn forward_dct_8x8_neon(
214210
#[rite]
215211
fn dct_pass(
216212
token: NeonToken,
217-
v0: &mut int16x8_t, v1: &mut int16x8_t, v2: &mut int16x8_t, v3: &mut int16x8_t,
218-
v4: &mut int16x8_t, v5: &mut int16x8_t, v6: &mut int16x8_t, v7: &mut int16x8_t,
213+
v0: &mut int16x8_t,
214+
v1: &mut int16x8_t,
215+
v2: &mut int16x8_t,
216+
v3: &mut int16x8_t,
217+
v4: &mut int16x8_t,
218+
v5: &mut int16x8_t,
219+
v6: &mut int16x8_t,
220+
v7: &mut int16x8_t,
219221
consts_lo: int16x4_t,
220222
consts_hi: int16x4_t,
221223
consts2: int16x4_t,

0 commit comments

Comments
 (0)