fiat_crypto/
p448_solinas_32.rs

1//! Autogenerated: 'src/ExtractionOCaml/unsaturated_solinas' --lang Rust --inline p448 32 16 '2^448 - 2^224 - 1' carry_mul carry_square carry add sub opp selectznz to_bytes from_bytes relax
2//! curve description: p448
3//! machine_wordsize = 32 (from "32")
4//! requested operations: carry_mul, carry_square, carry, add, sub, opp, selectznz, to_bytes, from_bytes, relax
5//! n = 16 (from "16")
6//! s-c = 2^448 - [(2^224, 1), (1, 1)] (from "2^448 - 2^224 - 1")
7//! tight_bounds_multiplier = 1 (from "")
8//!
9//! Computed values:
10//!   carry_chain = [7, 15, 8, 0, 9, 1, 10, 2, 11, 3, 12, 4, 13, 5, 14, 6, 15, 7, 8, 0]
11//!   eval z = z[0] + (z[1] << 28) + (z[2] << 56) + (z[3] << 84) + (z[4] << 112) + (z[5] << 140) + (z[6] << 168) + (z[7] << 196) + (z[8] << 224) + (z[9] << 252) + (z[10] << 0x118) + (z[11] << 0x134) + (z[12] << 0x150) + (z[13] << 0x16c) + (z[14] << 0x188) + (z[15] << 0x1a4)
12//!   bytes_eval z = z[0] + (z[1] << 8) + (z[2] << 16) + (z[3] << 24) + (z[4] << 32) + (z[5] << 40) + (z[6] << 48) + (z[7] << 56) + (z[8] << 64) + (z[9] << 72) + (z[10] << 80) + (z[11] << 88) + (z[12] << 96) + (z[13] << 104) + (z[14] << 112) + (z[15] << 120) + (z[16] << 128) + (z[17] << 136) + (z[18] << 144) + (z[19] << 152) + (z[20] << 160) + (z[21] << 168) + (z[22] << 176) + (z[23] << 184) + (z[24] << 192) + (z[25] << 200) + (z[26] << 208) + (z[27] << 216) + (z[28] << 224) + (z[29] << 232) + (z[30] << 240) + (z[31] << 248) + (z[32] << 256) + (z[33] << 0x108) + (z[34] << 0x110) + (z[35] << 0x118) + (z[36] << 0x120) + (z[37] << 0x128) + (z[38] << 0x130) + (z[39] << 0x138) + (z[40] << 0x140) + (z[41] << 0x148) + (z[42] << 0x150) + (z[43] << 0x158) + (z[44] << 0x160) + (z[45] << 0x168) + (z[46] << 0x170) + (z[47] << 0x178) + (z[48] << 0x180) + (z[49] << 0x188) + (z[50] << 0x190) + (z[51] << 0x198) + (z[52] << 0x1a0) + (z[53] << 0x1a8) + (z[54] << 0x1b0) + (z[55] << 0x1b8)
13//!   balance = [0x1ffffffe, 0x1ffffffe, 0x1ffffffe, 0x1ffffffe, 0x1ffffffe, 0x1ffffffe, 0x1ffffffe, 0x1ffffffe, 0x1ffffffc, 0x1ffffffe, 0x1ffffffe, 0x1ffffffe, 0x1ffffffe, 0x1ffffffe, 0x1ffffffe, 0x1ffffffe]
14
15#![allow(unused_parens)]
16#![allow(non_camel_case_types)]
17
18/// Since `Index` and `IndexMut` aren't callable in `const` contexts yet, this helper type helps unify
19/// arrays and user-defined array-wrapper types into a single type which can be indexed in `const`
20/// contexts. Once `const trait`s are stabilized this type can go away
21struct IndexConst<T: ?Sized>(T);
22
23impl<'a, T, const N: usize> IndexConst<&'a [T; N]> {
24    #[inline(always)]
25    #[allow(unused)]
26    const fn index(self, i: usize) -> &'a T {
27        &self.0[i]
28    }
29}
30impl<'a, 'b, T, const N: usize> IndexConst<&'a mut &'b mut [T; N]> {
31    #[inline(always)]
32    #[allow(unused)]
33    const fn index_mut(self, i: usize) -> &'a mut T {
34        &mut self.0[i]
35    }
36}
37
38/** fiat_p448_u1 represents values of 1 bits, stored in one byte. */
39pub type fiat_p448_u1 = u8;
40/** fiat_p448_i1 represents values of 1 bits, stored in one byte. */
41pub type fiat_p448_i1 = i8;
42/** fiat_p448_u2 represents values of 2 bits, stored in one byte. */
43pub type fiat_p448_u2 = u8;
44/** fiat_p448_i2 represents values of 2 bits, stored in one byte. */
45pub type fiat_p448_i2 = i8;
46
47/** The type fiat_p448_loose_field_element is a field element with loose bounds. */
48/** Bounds: [[0x0 ~> 0x30000000], [0x0 ~> 0x30000000], [0x0 ~> 0x30000000], [0x0 ~> 0x30000000], [0x0 ~> 0x30000000], [0x0 ~> 0x30000000], [0x0 ~> 0x30000000], [0x0 ~> 0x30000000], [0x0 ~> 0x30000000], [0x0 ~> 0x30000000], [0x0 ~> 0x30000000], [0x0 ~> 0x30000000], [0x0 ~> 0x30000000], [0x0 ~> 0x30000000], [0x0 ~> 0x30000000], [0x0 ~> 0x30000000]] */
49#[derive(Clone, Copy)]
50pub struct fiat_p448_loose_field_element(pub [u32; 16]);
51
52impl core::ops::Index<usize> for fiat_p448_loose_field_element {
53    type Output = u32;
54    #[inline]
55    fn index(&self, index: usize) -> &Self::Output {
56        &self.0[index]
57    }
58}
59
60impl core::ops::IndexMut<usize> for fiat_p448_loose_field_element {
61    #[inline]
62    fn index_mut(&mut self, index: usize) -> &mut Self::Output {
63        &mut self.0[index]
64    }
65}
66
67impl<'a> IndexConst<&'a fiat_p448_loose_field_element> {
68    #[allow(unused)]
69    #[inline(always)]
70    const fn index(self, i: usize) -> &'a u32 {
71        &self.0.0[i]
72    }
73}
74
75impl<'a, 'b> IndexConst<&'a mut &'b mut fiat_p448_loose_field_element> {
76    #[allow(unused)]
77    #[inline(always)]
78    const fn index_mut(self, i: usize) -> &'a mut u32 {
79        &mut self.0.0[i]
80    }
81}
82
83/** The type fiat_p448_tight_field_element is a field element with tight bounds. */
84/** Bounds: [[0x0 ~> 0x10000000], [0x0 ~> 0x10000000], [0x0 ~> 0x10000000], [0x0 ~> 0x10000000], [0x0 ~> 0x10000000], [0x0 ~> 0x10000000], [0x0 ~> 0x10000000], [0x0 ~> 0x10000000], [0x0 ~> 0x10000000], [0x0 ~> 0x10000000], [0x0 ~> 0x10000000], [0x0 ~> 0x10000000], [0x0 ~> 0x10000000], [0x0 ~> 0x10000000], [0x0 ~> 0x10000000], [0x0 ~> 0x10000000]] */
85#[derive(Clone, Copy)]
86pub struct fiat_p448_tight_field_element(pub [u32; 16]);
87
88impl core::ops::Index<usize> for fiat_p448_tight_field_element {
89    type Output = u32;
90    #[inline]
91    fn index(&self, index: usize) -> &Self::Output {
92        &self.0[index]
93    }
94}
95
96impl core::ops::IndexMut<usize> for fiat_p448_tight_field_element {
97    #[inline]
98    fn index_mut(&mut self, index: usize) -> &mut Self::Output {
99        &mut self.0[index]
100    }
101}
102
103impl<'a> IndexConst<&'a fiat_p448_tight_field_element> {
104    #[allow(unused)]
105    #[inline(always)]
106    const fn index(self, i: usize) -> &'a u32 {
107        &self.0.0[i]
108    }
109}
110
111impl<'a, 'b> IndexConst<&'a mut &'b mut fiat_p448_tight_field_element> {
112    #[allow(unused)]
113    #[inline(always)]
114    const fn index_mut(self, i: usize) -> &'a mut u32 {
115        &mut self.0.0[i]
116    }
117}
118
119
120/// The function fiat_p448_addcarryx_u28 is an addition with carry.
121///
122/// Postconditions:
123///   out1 = (arg1 + arg2 + arg3) mod 2^28
124///   out2 = ⌊(arg1 + arg2 + arg3) / 2^28⌋
125///
126/// Input Bounds:
127///   arg1: [0x0 ~> 0x1]
128///   arg2: [0x0 ~> 0xfffffff]
129///   arg3: [0x0 ~> 0xfffffff]
130/// Output Bounds:
131///   out1: [0x0 ~> 0xfffffff]
132///   out2: [0x0 ~> 0x1]
133#[inline]
134pub const fn fiat_p448_addcarryx_u28(out1: &mut u32, out2: &mut fiat_p448_u1, arg1: fiat_p448_u1, arg2: u32, arg3: u32) {
135  let x1: u32 = (((arg1 as u32) + arg2) + arg3);
136  let x2: u32 = (x1 & 0xfffffff);
137  let x3: fiat_p448_u1 = ((x1 >> 28) as fiat_p448_u1);
138  *out1 = x2;
139  *out2 = x3;
140}
141
142/// The function fiat_p448_subborrowx_u28 is a subtraction with borrow.
143///
144/// Postconditions:
145///   out1 = (-arg1 + arg2 + -arg3) mod 2^28
146///   out2 = -⌊(-arg1 + arg2 + -arg3) / 2^28⌋
147///
148/// Input Bounds:
149///   arg1: [0x0 ~> 0x1]
150///   arg2: [0x0 ~> 0xfffffff]
151///   arg3: [0x0 ~> 0xfffffff]
152/// Output Bounds:
153///   out1: [0x0 ~> 0xfffffff]
154///   out2: [0x0 ~> 0x1]
155#[inline]
156pub const fn fiat_p448_subborrowx_u28(out1: &mut u32, out2: &mut fiat_p448_u1, arg1: fiat_p448_u1, arg2: u32, arg3: u32) {
157  let x1: i32 = ((((((arg2 as i64) - (arg1 as i64)) as i32) as i64) - (arg3 as i64)) as i32);
158  let x2: fiat_p448_i1 = ((x1 >> 28) as fiat_p448_i1);
159  let x3: u32 = (((x1 as i64) & (0xfffffff as i64)) as u32);
160  *out1 = x3;
161  *out2 = (((0x0 as fiat_p448_i2) - (x2 as fiat_p448_i2)) as fiat_p448_u1);
162}
163
164/// The function fiat_p448_cmovznz_u32 is a single-word conditional move.
165///
166/// Postconditions:
167///   out1 = (if arg1 = 0 then arg2 else arg3)
168///
169/// Input Bounds:
170///   arg1: [0x0 ~> 0x1]
171///   arg2: [0x0 ~> 0xffffffff]
172///   arg3: [0x0 ~> 0xffffffff]
173/// Output Bounds:
174///   out1: [0x0 ~> 0xffffffff]
175#[inline]
176pub const fn fiat_p448_cmovznz_u32(out1: &mut u32, arg1: fiat_p448_u1, arg2: u32, arg3: u32) {
177  let x1: fiat_p448_u1 = (!(!arg1));
178  let x2: u32 = ((((((0x0 as fiat_p448_i2) - (x1 as fiat_p448_i2)) as fiat_p448_i1) as i64) & (0xffffffff as i64)) as u32);
179  let x3: u32 = ((x2 & arg3) | ((!x2) & arg2));
180  *out1 = x3;
181}
182
183/// The function fiat_p448_carry_mul multiplies two field elements and reduces the result.
184///
185/// Postconditions:
186///   eval out1 mod m = (eval arg1 * eval arg2) mod m
187///
188#[inline]
189pub const fn fiat_p448_carry_mul(mut out1: &mut fiat_p448_tight_field_element, arg1: &fiat_p448_loose_field_element, arg2: &fiat_p448_loose_field_element) {
190  let x1: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
191  let x2: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
192  let x3: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
193  let x4: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
194  let x5: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
195  let x6: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
196  let x7: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
197  let x8: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
198  let x9: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
199  let x10: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
200  let x11: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
201  let x12: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
202  let x13: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
203  let x14: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
204  let x15: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
205  let x16: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
206  let x17: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
207  let x18: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
208  let x19: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
209  let x20: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
210  let x21: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
211  let x22: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
212  let x23: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
213  let x24: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
214  let x25: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
215  let x26: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
216  let x27: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
217  let x28: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
218  let x29: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
219  let x30: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
220  let x31: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
221  let x32: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
222  let x33: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
223  let x34: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
224  let x35: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
225  let x36: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
226  let x37: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
227  let x38: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
228  let x39: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
229  let x40: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
230  let x41: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
231  let x42: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
232  let x43: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
233  let x44: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
234  let x45: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
235  let x46: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
236  let x47: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
237  let x48: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
238  let x49: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
239  let x50: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
240  let x51: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
241  let x52: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
242  let x53: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
243  let x54: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
244  let x55: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
245  let x56: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
246  let x57: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
247  let x58: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
248  let x59: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
249  let x60: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
250  let x61: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
251  let x62: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
252  let x63: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
253  let x64: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
254  let x65: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(7)) as u64));
255  let x66: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(6)) as u64));
256  let x67: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(5)) as u64));
257  let x68: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(4)) as u64));
258  let x69: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(3)) as u64));
259  let x70: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(2)) as u64));
260  let x71: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(1)) as u64));
261  let x72: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
262  let x73: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
263  let x74: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
264  let x75: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
265  let x76: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
266  let x77: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
267  let x78: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
268  let x79: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
269  let x80: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(7)) as u64));
270  let x81: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(6)) as u64));
271  let x82: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(5)) as u64));
272  let x83: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(4)) as u64));
273  let x84: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(3)) as u64));
274  let x85: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(2)) as u64));
275  let x86: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
276  let x87: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
277  let x88: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
278  let x89: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
279  let x90: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
280  let x91: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
281  let x92: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
282  let x93: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
283  let x94: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(7)) as u64));
284  let x95: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(6)) as u64));
285  let x96: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(5)) as u64));
286  let x97: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(4)) as u64));
287  let x98: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(3)) as u64));
288  let x99: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
289  let x100: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
290  let x101: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
291  let x102: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
292  let x103: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
293  let x104: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
294  let x105: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
295  let x106: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
296  let x107: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(7)) as u64));
297  let x108: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(6)) as u64));
298  let x109: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(5)) as u64));
299  let x110: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(4)) as u64));
300  let x111: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
301  let x112: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
302  let x113: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
303  let x114: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
304  let x115: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
305  let x116: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
306  let x117: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
307  let x118: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
308  let x119: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(7)) as u64));
309  let x120: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(6)) as u64));
310  let x121: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(5)) as u64));
311  let x122: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
312  let x123: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
313  let x124: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
314  let x125: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
315  let x126: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
316  let x127: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
317  let x128: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
318  let x129: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
319  let x130: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(7)) as u64));
320  let x131: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(6)) as u64));
321  let x132: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
322  let x133: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
323  let x134: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
324  let x135: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
325  let x136: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
326  let x137: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
327  let x138: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
328  let x139: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
329  let x140: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(7)) as u64));
330  let x141: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
331  let x142: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
332  let x143: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
333  let x144: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
334  let x145: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
335  let x146: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
336  let x147: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
337  let x148: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
338  let x149: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
339  let x150: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
340  let x151: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
341  let x152: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
342  let x153: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
343  let x154: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
344  let x155: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
345  let x156: u64 = (((*IndexConst(arg1).index(6)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
346  let x157: u64 = (((*IndexConst(arg1).index(6)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
347  let x158: u64 = (((*IndexConst(arg1).index(6)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
348  let x159: u64 = (((*IndexConst(arg1).index(6)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
349  let x160: u64 = (((*IndexConst(arg1).index(6)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
350  let x161: u64 = (((*IndexConst(arg1).index(6)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
351  let x162: u64 = (((*IndexConst(arg1).index(5)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
352  let x163: u64 = (((*IndexConst(arg1).index(5)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
353  let x164: u64 = (((*IndexConst(arg1).index(5)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
354  let x165: u64 = (((*IndexConst(arg1).index(5)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
355  let x166: u64 = (((*IndexConst(arg1).index(5)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
356  let x167: u64 = (((*IndexConst(arg1).index(4)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
357  let x168: u64 = (((*IndexConst(arg1).index(4)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
358  let x169: u64 = (((*IndexConst(arg1).index(4)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
359  let x170: u64 = (((*IndexConst(arg1).index(4)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
360  let x171: u64 = (((*IndexConst(arg1).index(3)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
361  let x172: u64 = (((*IndexConst(arg1).index(3)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
362  let x173: u64 = (((*IndexConst(arg1).index(3)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
363  let x174: u64 = (((*IndexConst(arg1).index(2)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
364  let x175: u64 = (((*IndexConst(arg1).index(2)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
365  let x176: u64 = (((*IndexConst(arg1).index(1)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
366  let x177: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
367  let x178: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(7)) as u64));
368  let x179: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(6)) as u64));
369  let x180: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(5)) as u64));
370  let x181: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(4)) as u64));
371  let x182: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(3)) as u64));
372  let x183: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(2)) as u64));
373  let x184: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(1)) as u64));
374  let x185: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
375  let x186: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
376  let x187: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(7)) as u64));
377  let x188: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(6)) as u64));
378  let x189: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(5)) as u64));
379  let x190: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(4)) as u64));
380  let x191: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(3)) as u64));
381  let x192: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(2)) as u64));
382  let x193: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
383  let x194: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
384  let x195: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
385  let x196: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(7)) as u64));
386  let x197: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(6)) as u64));
387  let x198: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(5)) as u64));
388  let x199: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(4)) as u64));
389  let x200: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(3)) as u64));
390  let x201: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
391  let x202: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
392  let x203: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
393  let x204: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
394  let x205: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(7)) as u64));
395  let x206: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(6)) as u64));
396  let x207: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(5)) as u64));
397  let x208: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(4)) as u64));
398  let x209: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
399  let x210: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
400  let x211: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
401  let x212: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
402  let x213: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
403  let x214: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(7)) as u64));
404  let x215: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(6)) as u64));
405  let x216: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(5)) as u64));
406  let x217: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
407  let x218: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
408  let x219: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
409  let x220: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
410  let x221: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
411  let x222: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
412  let x223: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(7)) as u64));
413  let x224: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(6)) as u64));
414  let x225: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
415  let x226: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
416  let x227: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
417  let x228: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
418  let x229: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
419  let x230: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
420  let x231: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
421  let x232: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(7)) as u64));
422  let x233: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
423  let x234: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
424  let x235: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
425  let x236: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
426  let x237: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
427  let x238: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
428  let x239: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
429  let x240: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
430  let x241: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
431  let x242: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
432  let x243: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
433  let x244: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
434  let x245: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
435  let x246: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
436  let x247: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
437  let x248: u64 = (((*IndexConst(arg1).index(6)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
438  let x249: u64 = (((*IndexConst(arg1).index(6)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
439  let x250: u64 = (((*IndexConst(arg1).index(6)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
440  let x251: u64 = (((*IndexConst(arg1).index(6)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
441  let x252: u64 = (((*IndexConst(arg1).index(6)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
442  let x253: u64 = (((*IndexConst(arg1).index(6)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
443  let x254: u64 = (((*IndexConst(arg1).index(5)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
444  let x255: u64 = (((*IndexConst(arg1).index(5)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
445  let x256: u64 = (((*IndexConst(arg1).index(5)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
446  let x257: u64 = (((*IndexConst(arg1).index(5)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
447  let x258: u64 = (((*IndexConst(arg1).index(5)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
448  let x259: u64 = (((*IndexConst(arg1).index(4)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
449  let x260: u64 = (((*IndexConst(arg1).index(4)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
450  let x261: u64 = (((*IndexConst(arg1).index(4)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
451  let x262: u64 = (((*IndexConst(arg1).index(4)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
452  let x263: u64 = (((*IndexConst(arg1).index(3)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
453  let x264: u64 = (((*IndexConst(arg1).index(3)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
454  let x265: u64 = (((*IndexConst(arg1).index(3)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
455  let x266: u64 = (((*IndexConst(arg1).index(2)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
456  let x267: u64 = (((*IndexConst(arg1).index(2)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
457  let x268: u64 = (((*IndexConst(arg1).index(1)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
458  let x269: u64 = (((*IndexConst(arg1).index(15)) as u64) * ((*IndexConst(arg2).index(0)) as u64));
459  let x270: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(1)) as u64));
460  let x271: u64 = (((*IndexConst(arg1).index(14)) as u64) * ((*IndexConst(arg2).index(0)) as u64));
461  let x272: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(2)) as u64));
462  let x273: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(1)) as u64));
463  let x274: u64 = (((*IndexConst(arg1).index(13)) as u64) * ((*IndexConst(arg2).index(0)) as u64));
464  let x275: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(3)) as u64));
465  let x276: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(2)) as u64));
466  let x277: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(1)) as u64));
467  let x278: u64 = (((*IndexConst(arg1).index(12)) as u64) * ((*IndexConst(arg2).index(0)) as u64));
468  let x279: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(4)) as u64));
469  let x280: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(3)) as u64));
470  let x281: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(2)) as u64));
471  let x282: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(1)) as u64));
472  let x283: u64 = (((*IndexConst(arg1).index(11)) as u64) * ((*IndexConst(arg2).index(0)) as u64));
473  let x284: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(5)) as u64));
474  let x285: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(4)) as u64));
475  let x286: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(3)) as u64));
476  let x287: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(2)) as u64));
477  let x288: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(1)) as u64));
478  let x289: u64 = (((*IndexConst(arg1).index(10)) as u64) * ((*IndexConst(arg2).index(0)) as u64));
479  let x290: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(6)) as u64));
480  let x291: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(5)) as u64));
481  let x292: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(4)) as u64));
482  let x293: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(3)) as u64));
483  let x294: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(2)) as u64));
484  let x295: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(1)) as u64));
485  let x296: u64 = (((*IndexConst(arg1).index(9)) as u64) * ((*IndexConst(arg2).index(0)) as u64));
486  let x297: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(7)) as u64));
487  let x298: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(6)) as u64));
488  let x299: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(5)) as u64));
489  let x300: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(4)) as u64));
490  let x301: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(3)) as u64));
491  let x302: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(2)) as u64));
492  let x303: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(1)) as u64));
493  let x304: u64 = (((*IndexConst(arg1).index(8)) as u64) * ((*IndexConst(arg2).index(0)) as u64));
494  let x305: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
495  let x306: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg2).index(7)) as u64));
496  let x307: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg2).index(6)) as u64));
497  let x308: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg2).index(5)) as u64));
498  let x309: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg2).index(4)) as u64));
499  let x310: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg2).index(3)) as u64));
500  let x311: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg2).index(2)) as u64));
501  let x312: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg2).index(1)) as u64));
502  let x313: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg2).index(0)) as u64));
503  let x314: u64 = (((*IndexConst(arg1).index(6)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
504  let x315: u64 = (((*IndexConst(arg1).index(6)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
505  let x316: u64 = (((*IndexConst(arg1).index(6)) as u64) * ((*IndexConst(arg2).index(7)) as u64));
506  let x317: u64 = (((*IndexConst(arg1).index(6)) as u64) * ((*IndexConst(arg2).index(6)) as u64));
507  let x318: u64 = (((*IndexConst(arg1).index(6)) as u64) * ((*IndexConst(arg2).index(5)) as u64));
508  let x319: u64 = (((*IndexConst(arg1).index(6)) as u64) * ((*IndexConst(arg2).index(4)) as u64));
509  let x320: u64 = (((*IndexConst(arg1).index(6)) as u64) * ((*IndexConst(arg2).index(3)) as u64));
510  let x321: u64 = (((*IndexConst(arg1).index(6)) as u64) * ((*IndexConst(arg2).index(2)) as u64));
511  let x322: u64 = (((*IndexConst(arg1).index(6)) as u64) * ((*IndexConst(arg2).index(1)) as u64));
512  let x323: u64 = (((*IndexConst(arg1).index(6)) as u64) * ((*IndexConst(arg2).index(0)) as u64));
513  let x324: u64 = (((*IndexConst(arg1).index(5)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
514  let x325: u64 = (((*IndexConst(arg1).index(5)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
515  let x326: u64 = (((*IndexConst(arg1).index(5)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
516  let x327: u64 = (((*IndexConst(arg1).index(5)) as u64) * ((*IndexConst(arg2).index(7)) as u64));
517  let x328: u64 = (((*IndexConst(arg1).index(5)) as u64) * ((*IndexConst(arg2).index(6)) as u64));
518  let x329: u64 = (((*IndexConst(arg1).index(5)) as u64) * ((*IndexConst(arg2).index(5)) as u64));
519  let x330: u64 = (((*IndexConst(arg1).index(5)) as u64) * ((*IndexConst(arg2).index(4)) as u64));
520  let x331: u64 = (((*IndexConst(arg1).index(5)) as u64) * ((*IndexConst(arg2).index(3)) as u64));
521  let x332: u64 = (((*IndexConst(arg1).index(5)) as u64) * ((*IndexConst(arg2).index(2)) as u64));
522  let x333: u64 = (((*IndexConst(arg1).index(5)) as u64) * ((*IndexConst(arg2).index(1)) as u64));
523  let x334: u64 = (((*IndexConst(arg1).index(5)) as u64) * ((*IndexConst(arg2).index(0)) as u64));
524  let x335: u64 = (((*IndexConst(arg1).index(4)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
525  let x336: u64 = (((*IndexConst(arg1).index(4)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
526  let x337: u64 = (((*IndexConst(arg1).index(4)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
527  let x338: u64 = (((*IndexConst(arg1).index(4)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
528  let x339: u64 = (((*IndexConst(arg1).index(4)) as u64) * ((*IndexConst(arg2).index(7)) as u64));
529  let x340: u64 = (((*IndexConst(arg1).index(4)) as u64) * ((*IndexConst(arg2).index(6)) as u64));
530  let x341: u64 = (((*IndexConst(arg1).index(4)) as u64) * ((*IndexConst(arg2).index(5)) as u64));
531  let x342: u64 = (((*IndexConst(arg1).index(4)) as u64) * ((*IndexConst(arg2).index(4)) as u64));
532  let x343: u64 = (((*IndexConst(arg1).index(4)) as u64) * ((*IndexConst(arg2).index(3)) as u64));
533  let x344: u64 = (((*IndexConst(arg1).index(4)) as u64) * ((*IndexConst(arg2).index(2)) as u64));
534  let x345: u64 = (((*IndexConst(arg1).index(4)) as u64) * ((*IndexConst(arg2).index(1)) as u64));
535  let x346: u64 = (((*IndexConst(arg1).index(4)) as u64) * ((*IndexConst(arg2).index(0)) as u64));
536  let x347: u64 = (((*IndexConst(arg1).index(3)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
537  let x348: u64 = (((*IndexConst(arg1).index(3)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
538  let x349: u64 = (((*IndexConst(arg1).index(3)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
539  let x350: u64 = (((*IndexConst(arg1).index(3)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
540  let x351: u64 = (((*IndexConst(arg1).index(3)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
541  let x352: u64 = (((*IndexConst(arg1).index(3)) as u64) * ((*IndexConst(arg2).index(7)) as u64));
542  let x353: u64 = (((*IndexConst(arg1).index(3)) as u64) * ((*IndexConst(arg2).index(6)) as u64));
543  let x354: u64 = (((*IndexConst(arg1).index(3)) as u64) * ((*IndexConst(arg2).index(5)) as u64));
544  let x355: u64 = (((*IndexConst(arg1).index(3)) as u64) * ((*IndexConst(arg2).index(4)) as u64));
545  let x356: u64 = (((*IndexConst(arg1).index(3)) as u64) * ((*IndexConst(arg2).index(3)) as u64));
546  let x357: u64 = (((*IndexConst(arg1).index(3)) as u64) * ((*IndexConst(arg2).index(2)) as u64));
547  let x358: u64 = (((*IndexConst(arg1).index(3)) as u64) * ((*IndexConst(arg2).index(1)) as u64));
548  let x359: u64 = (((*IndexConst(arg1).index(3)) as u64) * ((*IndexConst(arg2).index(0)) as u64));
549  let x360: u64 = (((*IndexConst(arg1).index(2)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
550  let x361: u64 = (((*IndexConst(arg1).index(2)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
551  let x362: u64 = (((*IndexConst(arg1).index(2)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
552  let x363: u64 = (((*IndexConst(arg1).index(2)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
553  let x364: u64 = (((*IndexConst(arg1).index(2)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
554  let x365: u64 = (((*IndexConst(arg1).index(2)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
555  let x366: u64 = (((*IndexConst(arg1).index(2)) as u64) * ((*IndexConst(arg2).index(7)) as u64));
556  let x367: u64 = (((*IndexConst(arg1).index(2)) as u64) * ((*IndexConst(arg2).index(6)) as u64));
557  let x368: u64 = (((*IndexConst(arg1).index(2)) as u64) * ((*IndexConst(arg2).index(5)) as u64));
558  let x369: u64 = (((*IndexConst(arg1).index(2)) as u64) * ((*IndexConst(arg2).index(4)) as u64));
559  let x370: u64 = (((*IndexConst(arg1).index(2)) as u64) * ((*IndexConst(arg2).index(3)) as u64));
560  let x371: u64 = (((*IndexConst(arg1).index(2)) as u64) * ((*IndexConst(arg2).index(2)) as u64));
561  let x372: u64 = (((*IndexConst(arg1).index(2)) as u64) * ((*IndexConst(arg2).index(1)) as u64));
562  let x373: u64 = (((*IndexConst(arg1).index(2)) as u64) * ((*IndexConst(arg2).index(0)) as u64));
563  let x374: u64 = (((*IndexConst(arg1).index(1)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
564  let x375: u64 = (((*IndexConst(arg1).index(1)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
565  let x376: u64 = (((*IndexConst(arg1).index(1)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
566  let x377: u64 = (((*IndexConst(arg1).index(1)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
567  let x378: u64 = (((*IndexConst(arg1).index(1)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
568  let x379: u64 = (((*IndexConst(arg1).index(1)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
569  let x380: u64 = (((*IndexConst(arg1).index(1)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
570  let x381: u64 = (((*IndexConst(arg1).index(1)) as u64) * ((*IndexConst(arg2).index(7)) as u64));
571  let x382: u64 = (((*IndexConst(arg1).index(1)) as u64) * ((*IndexConst(arg2).index(6)) as u64));
572  let x383: u64 = (((*IndexConst(arg1).index(1)) as u64) * ((*IndexConst(arg2).index(5)) as u64));
573  let x384: u64 = (((*IndexConst(arg1).index(1)) as u64) * ((*IndexConst(arg2).index(4)) as u64));
574  let x385: u64 = (((*IndexConst(arg1).index(1)) as u64) * ((*IndexConst(arg2).index(3)) as u64));
575  let x386: u64 = (((*IndexConst(arg1).index(1)) as u64) * ((*IndexConst(arg2).index(2)) as u64));
576  let x387: u64 = (((*IndexConst(arg1).index(1)) as u64) * ((*IndexConst(arg2).index(1)) as u64));
577  let x388: u64 = (((*IndexConst(arg1).index(1)) as u64) * ((*IndexConst(arg2).index(0)) as u64));
578  let x389: u64 = (((*IndexConst(arg1).index(0)) as u64) * ((*IndexConst(arg2).index(15)) as u64));
579  let x390: u64 = (((*IndexConst(arg1).index(0)) as u64) * ((*IndexConst(arg2).index(14)) as u64));
580  let x391: u64 = (((*IndexConst(arg1).index(0)) as u64) * ((*IndexConst(arg2).index(13)) as u64));
581  let x392: u64 = (((*IndexConst(arg1).index(0)) as u64) * ((*IndexConst(arg2).index(12)) as u64));
582  let x393: u64 = (((*IndexConst(arg1).index(0)) as u64) * ((*IndexConst(arg2).index(11)) as u64));
583  let x394: u64 = (((*IndexConst(arg1).index(0)) as u64) * ((*IndexConst(arg2).index(10)) as u64));
584  let x395: u64 = (((*IndexConst(arg1).index(0)) as u64) * ((*IndexConst(arg2).index(9)) as u64));
585  let x396: u64 = (((*IndexConst(arg1).index(0)) as u64) * ((*IndexConst(arg2).index(8)) as u64));
586  let x397: u64 = (((*IndexConst(arg1).index(0)) as u64) * ((*IndexConst(arg2).index(7)) as u64));
587  let x398: u64 = (((*IndexConst(arg1).index(0)) as u64) * ((*IndexConst(arg2).index(6)) as u64));
588  let x399: u64 = (((*IndexConst(arg1).index(0)) as u64) * ((*IndexConst(arg2).index(5)) as u64));
589  let x400: u64 = (((*IndexConst(arg1).index(0)) as u64) * ((*IndexConst(arg2).index(4)) as u64));
590  let x401: u64 = (((*IndexConst(arg1).index(0)) as u64) * ((*IndexConst(arg2).index(3)) as u64));
591  let x402: u64 = (((*IndexConst(arg1).index(0)) as u64) * ((*IndexConst(arg2).index(2)) as u64));
592  let x403: u64 = (((*IndexConst(arg1).index(0)) as u64) * ((*IndexConst(arg2).index(1)) as u64));
593  let x404: u64 = (((*IndexConst(arg1).index(0)) as u64) * ((*IndexConst(arg2).index(0)) as u64));
594  let x405: u64 = (x397 + (x382 + (x368 + (x355 + (x343 + (x332 + (x322 + (x313 + (x141 + (x133 + (x124 + (x114 + (x103 + (x91 + (x78 + x64)))))))))))))));
595  let x406: u64 = (x405 >> 28);
596  let x407: u32 = ((x405 & (0xfffffff as u64)) as u32);
597  let x408: u64 = (x389 + (x374 + (x360 + (x347 + (x335 + (x324 + (x314 + (x305 + (x297 + (x290 + (x284 + (x279 + (x275 + (x272 + (x270 + (x269 + (x233 + (x225 + (x217 + (x209 + (x201 + (x193 + (x185 + x177)))))))))))))))))))))));
598  let x409: u64 = (x390 + (x375 + (x361 + (x348 + (x336 + (x325 + (x315 + (x306 + (x298 + (x291 + (x285 + (x280 + (x276 + (x273 + (x271 + (x241 + (x234 + (x226 + (x218 + (x210 + (x202 + (x194 + (x186 + (x178 + (x57 + x29)))))))))))))))))))))))));
599  let x410: u64 = (x391 + (x376 + (x362 + (x349 + (x337 + (x326 + (x316 + (x307 + (x299 + (x292 + (x286 + (x281 + (x277 + (x274 + (x248 + (x242 + (x235 + (x227 + (x219 + (x211 + (x203 + (x195 + (x187 + (x179 + (x72 + (x58 + (x36 + x30)))))))))))))))))))))))))));
600  let x411: u128 = ((x392 as u128) + ((x377 as u128) + ((x363 + (x350 + (x338 + (x327 + (x317 + (x308 + (x300 + (x293 + (x287 + (x282 + (x278 + (x254 + (x249 + (x243 + (x236 + (x228 + (x220 + (x212 + (x204 + (x196 + (x188 + (x180 + (x86 + (x73 + (x59 + (x42 + (x37 + x31))))))))))))))))))))))))))) as u128)));
601  let x412: u128 = ((x393 as u128) + ((x378 as u128) + ((x364 as u128) + ((x351 as u128) + ((x339 + (x328 + (x318 + (x309 + (x301 + (x294 + (x288 + (x283 + (x259 + (x255 + (x250 + (x244 + (x237 + (x229 + (x221 + (x213 + (x205 + (x197 + (x189 + (x181 + (x99 + (x87 + (x74 + (x60 + (x47 + (x43 + (x38 + x32))))))))))))))))))))))))))) as u128)))));
602  let x413: u128 = ((x394 as u128) + ((x379 as u128) + ((x365 as u128) + ((x352 as u128) + ((x340 as u128) + ((x329 as u128) + ((x319 + (x310 + (x302 + (x295 + (x289 + (x263 + (x260 + (x256 + (x251 + (x245 + (x238 + (x230 + (x222 + (x214 + (x206 + (x198 + (x190 + (x182 + (x111 + (x100 + (x88 + (x75 + (x61 + (x51 + (x48 + (x44 + (x39 + x33))))))))))))))))))))))))))) as u128)))))));
603  let x414: u128 = ((x395 as u128) + ((x380 as u128) + ((x366 as u128) + ((x353 as u128) + ((x341 as u128) + ((x330 as u128) + ((x320 as u128) + ((x311 as u128) + ((x303 + (x296 + (x266 + (x264 + (x261 + (x257 + (x252 + (x246 + (x239 + (x231 + (x223 + (x215 + (x207 + (x199 + (x191 + (x183 + (x122 + (x112 + (x101 + (x89 + (x76 + (x62 + (x54 + (x52 + (x49 + (x45 + (x40 + x34))))))))))))))))))))))))))) as u128)))))))));
604  let x415: u128 = ((x396 as u128) + ((x381 as u128) + ((x367 as u128) + ((x354 as u128) + ((x342 as u128) + ((x331 as u128) + ((x321 as u128) + ((x312 as u128) + ((x304 as u128) + ((x268 as u128) + ((x267 + (x265 + (x262 + (x258 + (x253 + (x247 + (x240 + (x232 + (x224 + (x216 + (x208 + (x200 + (x192 + (x184 + (x132 + (x123 + (x113 + (x102 + (x90 + (x77 + (x63 + (x56 + (x55 + (x53 + (x50 + (x46 + (x41 + x35))))))))))))))))))))))))))) as u128)))))))))));
605  let x416: u64 = (x398 + (x383 + (x369 + (x356 + (x344 + (x333 + (x323 + (x149 + (x142 + (x134 + (x125 + (x115 + (x104 + (x92 + (x79 + (x65 + x1))))))))))))))));
606  let x417: u64 = (x399 + (x384 + (x370 + (x357 + (x345 + (x334 + (x156 + (x150 + (x143 + (x135 + (x126 + (x116 + (x105 + (x93 + (x80 + (x66 + (x8 + x2)))))))))))))))));
607  let x418: u64 = (x400 + (x385 + (x371 + (x358 + (x346 + (x162 + (x157 + (x151 + (x144 + (x136 + (x127 + (x117 + (x106 + (x94 + (x81 + (x67 + (x14 + (x9 + x3))))))))))))))))));
608  let x419: u64 = (x401 + (x386 + (x372 + (x359 + (x167 + (x163 + (x158 + (x152 + (x145 + (x137 + (x128 + (x118 + (x107 + (x95 + (x82 + (x68 + (x19 + (x15 + (x10 + x4)))))))))))))))))));
609  let x420: u64 = (x402 + (x387 + (x373 + (x171 + (x168 + (x164 + (x159 + (x153 + (x146 + (x138 + (x129 + (x119 + (x108 + (x96 + (x83 + (x69 + (x23 + (x20 + (x16 + (x11 + x5))))))))))))))))))));
610  let x421: u64 = (x403 + (x388 + (x174 + (x172 + (x169 + (x165 + (x160 + (x154 + (x147 + (x139 + (x130 + (x120 + (x109 + (x97 + (x84 + (x70 + (x26 + (x24 + (x21 + (x17 + (x12 + x6)))))))))))))))))))));
611  let x422: u64 = (x404 + (x176 + (x175 + (x173 + (x170 + (x166 + (x161 + (x155 + (x148 + (x140 + (x131 + (x121 + (x110 + (x98 + (x85 + (x71 + (x28 + (x27 + (x25 + (x22 + (x18 + (x13 + x7))))))))))))))))))))));
612  let x423: u128 = ((x406 as u128) + x415);
613  let x424: u64 = (x408 >> 28);
614  let x425: u32 = ((x408 & (0xfffffff as u64)) as u32);
615  let x426: u128 = (x423 + (x424 as u128));
616  let x427: u64 = ((x426 >> 28) as u64);
617  let x428: u32 = ((x426 & (0xfffffff as u128)) as u32);
618  let x429: u64 = (x422 + x424);
619  let x430: u128 = ((x427 as u128) + x414);
620  let x431: u64 = (x429 >> 28);
621  let x432: u32 = ((x429 & (0xfffffff as u64)) as u32);
622  let x433: u64 = (x431 + x421);
623  let x434: u64 = ((x430 >> 28) as u64);
624  let x435: u32 = ((x430 & (0xfffffff as u128)) as u32);
625  let x436: u128 = ((x434 as u128) + x413);
626  let x437: u64 = (x433 >> 28);
627  let x438: u32 = ((x433 & (0xfffffff as u64)) as u32);
628  let x439: u64 = (x437 + x420);
629  let x440: u64 = ((x436 >> 28) as u64);
630  let x441: u32 = ((x436 & (0xfffffff as u128)) as u32);
631  let x442: u128 = ((x440 as u128) + x412);
632  let x443: u64 = (x439 >> 28);
633  let x444: u32 = ((x439 & (0xfffffff as u64)) as u32);
634  let x445: u64 = (x443 + x419);
635  let x446: u64 = ((x442 >> 28) as u64);
636  let x447: u32 = ((x442 & (0xfffffff as u128)) as u32);
637  let x448: u128 = ((x446 as u128) + x411);
638  let x449: u64 = (x445 >> 28);
639  let x450: u32 = ((x445 & (0xfffffff as u64)) as u32);
640  let x451: u64 = (x449 + x418);
641  let x452: u64 = ((x448 >> 28) as u64);
642  let x453: u32 = ((x448 & (0xfffffff as u128)) as u32);
643  let x454: u64 = (x452 + x410);
644  let x455: u64 = (x451 >> 28);
645  let x456: u32 = ((x451 & (0xfffffff as u64)) as u32);
646  let x457: u64 = (x455 + x417);
647  let x458: u64 = (x454 >> 28);
648  let x459: u32 = ((x454 & (0xfffffff as u64)) as u32);
649  let x460: u64 = (x458 + x409);
650  let x461: u64 = (x457 >> 28);
651  let x462: u32 = ((x457 & (0xfffffff as u64)) as u32);
652  let x463: u64 = (x461 + x416);
653  let x464: u64 = (x460 >> 28);
654  let x465: u32 = ((x460 & (0xfffffff as u64)) as u32);
655  let x466: u64 = (x464 + (x425 as u64));
656  let x467: u64 = (x463 >> 28);
657  let x468: u32 = ((x463 & (0xfffffff as u64)) as u32);
658  let x469: u64 = (x467 + (x407 as u64));
659  let x470: u32 = ((x466 >> 28) as u32);
660  let x471: u32 = ((x466 & (0xfffffff as u64)) as u32);
661  let x472: u32 = ((x469 >> 28) as u32);
662  let x473: u32 = ((x469 & (0xfffffff as u64)) as u32);
663  let x474: u32 = (x428 + x470);
664  let x475: u32 = (x432 + x470);
665  let x476: u32 = (x472 + x474);
666  let x477: fiat_p448_u1 = ((x476 >> 28) as fiat_p448_u1);
667  let x478: u32 = (x476 & 0xfffffff);
668  let x479: u32 = ((x477 as u32) + x435);
669  let x480: fiat_p448_u1 = ((x475 >> 28) as fiat_p448_u1);
670  let x481: u32 = (x475 & 0xfffffff);
671  let x482: u32 = ((x480 as u32) + x438);
672  *IndexConst(&mut out1).index_mut(0) = x481;
673  *IndexConst(&mut out1).index_mut(1) = x482;
674  *IndexConst(&mut out1).index_mut(2) = x444;
675  *IndexConst(&mut out1).index_mut(3) = x450;
676  *IndexConst(&mut out1).index_mut(4) = x456;
677  *IndexConst(&mut out1).index_mut(5) = x462;
678  *IndexConst(&mut out1).index_mut(6) = x468;
679  *IndexConst(&mut out1).index_mut(7) = x473;
680  *IndexConst(&mut out1).index_mut(8) = x478;
681  *IndexConst(&mut out1).index_mut(9) = x479;
682  *IndexConst(&mut out1).index_mut(10) = x441;
683  *IndexConst(&mut out1).index_mut(11) = x447;
684  *IndexConst(&mut out1).index_mut(12) = x453;
685  *IndexConst(&mut out1).index_mut(13) = x459;
686  *IndexConst(&mut out1).index_mut(14) = x465;
687  *IndexConst(&mut out1).index_mut(15) = x471;
688}
689
690/// The function fiat_p448_carry_square squares a field element and reduces the result.
691///
692/// Postconditions:
693///   eval out1 mod m = (eval arg1 * eval arg1) mod m
694///
695#[inline]
696pub const fn fiat_p448_carry_square(mut out1: &mut fiat_p448_tight_field_element, arg1: &fiat_p448_loose_field_element) {
697  let x1: u32 = (*IndexConst(arg1).index(15));
698  let x2: u32 = (*IndexConst(arg1).index(15));
699  let x3: u32 = (x1 * 0x2);
700  let x4: u32 = (x2 * 0x2);
701  let x5: u32 = ((*IndexConst(arg1).index(15)) * 0x2);
702  let x6: u32 = (*IndexConst(arg1).index(14));
703  let x7: u32 = (*IndexConst(arg1).index(14));
704  let x8: u32 = (x6 * 0x2);
705  let x9: u32 = (x7 * 0x2);
706  let x10: u32 = ((*IndexConst(arg1).index(14)) * 0x2);
707  let x11: u32 = (*IndexConst(arg1).index(13));
708  let x12: u32 = (*IndexConst(arg1).index(13));
709  let x13: u32 = (x11 * 0x2);
710  let x14: u32 = (x12 * 0x2);
711  let x15: u32 = ((*IndexConst(arg1).index(13)) * 0x2);
712  let x16: u32 = (*IndexConst(arg1).index(12));
713  let x17: u32 = (*IndexConst(arg1).index(12));
714  let x18: u32 = (x16 * 0x2);
715  let x19: u32 = (x17 * 0x2);
716  let x20: u32 = ((*IndexConst(arg1).index(12)) * 0x2);
717  let x21: u32 = (*IndexConst(arg1).index(11));
718  let x22: u32 = (*IndexConst(arg1).index(11));
719  let x23: u32 = (x21 * 0x2);
720  let x24: u32 = (x22 * 0x2);
721  let x25: u32 = ((*IndexConst(arg1).index(11)) * 0x2);
722  let x26: u32 = (*IndexConst(arg1).index(10));
723  let x27: u32 = (*IndexConst(arg1).index(10));
724  let x28: u32 = (x26 * 0x2);
725  let x29: u32 = (x27 * 0x2);
726  let x30: u32 = ((*IndexConst(arg1).index(10)) * 0x2);
727  let x31: u32 = (*IndexConst(arg1).index(9));
728  let x32: u32 = (*IndexConst(arg1).index(9));
729  let x33: u32 = (x31 * 0x2);
730  let x34: u32 = (x32 * 0x2);
731  let x35: u32 = ((*IndexConst(arg1).index(9)) * 0x2);
732  let x36: u32 = (*IndexConst(arg1).index(8));
733  let x37: u32 = (*IndexConst(arg1).index(8));
734  let x38: u32 = ((*IndexConst(arg1).index(8)) * 0x2);
735  let x39: u32 = ((*IndexConst(arg1).index(7)) * 0x2);
736  let x40: u32 = ((*IndexConst(arg1).index(6)) * 0x2);
737  let x41: u32 = ((*IndexConst(arg1).index(5)) * 0x2);
738  let x42: u32 = ((*IndexConst(arg1).index(4)) * 0x2);
739  let x43: u32 = ((*IndexConst(arg1).index(3)) * 0x2);
740  let x44: u32 = ((*IndexConst(arg1).index(2)) * 0x2);
741  let x45: u32 = ((*IndexConst(arg1).index(1)) * 0x2);
742  let x46: u64 = (((*IndexConst(arg1).index(15)) as u64) * (x1 as u64));
743  let x47: u64 = (((*IndexConst(arg1).index(14)) as u64) * (x3 as u64));
744  let x48: u64 = (((*IndexConst(arg1).index(14)) as u64) * (x6 as u64));
745  let x49: u64 = (((*IndexConst(arg1).index(13)) as u64) * (x3 as u64));
746  let x50: u64 = (((*IndexConst(arg1).index(13)) as u64) * (x8 as u64));
747  let x51: u64 = (((*IndexConst(arg1).index(13)) as u64) * (x11 as u64));
748  let x52: u64 = (((*IndexConst(arg1).index(12)) as u64) * (x3 as u64));
749  let x53: u64 = (((*IndexConst(arg1).index(12)) as u64) * (x8 as u64));
750  let x54: u64 = (((*IndexConst(arg1).index(12)) as u64) * (x13 as u64));
751  let x55: u64 = (((*IndexConst(arg1).index(12)) as u64) * (x16 as u64));
752  let x56: u64 = (((*IndexConst(arg1).index(11)) as u64) * (x3 as u64));
753  let x57: u64 = (((*IndexConst(arg1).index(11)) as u64) * (x8 as u64));
754  let x58: u64 = (((*IndexConst(arg1).index(11)) as u64) * (x13 as u64));
755  let x59: u64 = (((*IndexConst(arg1).index(10)) as u64) * (x3 as u64));
756  let x60: u64 = (((*IndexConst(arg1).index(10)) as u64) * (x8 as u64));
757  let x61: u64 = (((*IndexConst(arg1).index(9)) as u64) * (x3 as u64));
758  let x62: u64 = (((*IndexConst(arg1).index(15)) as u64) * (x1 as u64));
759  let x63: u64 = (((*IndexConst(arg1).index(14)) as u64) * (x3 as u64));
760  let x64: u64 = (((*IndexConst(arg1).index(14)) as u64) * (x6 as u64));
761  let x65: u64 = (((*IndexConst(arg1).index(13)) as u64) * (x3 as u64));
762  let x66: u64 = (((*IndexConst(arg1).index(13)) as u64) * (x8 as u64));
763  let x67: u64 = (((*IndexConst(arg1).index(13)) as u64) * (x11 as u64));
764  let x68: u64 = (((*IndexConst(arg1).index(12)) as u64) * (x3 as u64));
765  let x69: u64 = (((*IndexConst(arg1).index(12)) as u64) * (x8 as u64));
766  let x70: u64 = (((*IndexConst(arg1).index(12)) as u64) * (x13 as u64));
767  let x71: u64 = (((*IndexConst(arg1).index(12)) as u64) * (x16 as u64));
768  let x72: u64 = (((*IndexConst(arg1).index(11)) as u64) * (x3 as u64));
769  let x73: u64 = (((*IndexConst(arg1).index(11)) as u64) * (x8 as u64));
770  let x74: u64 = (((*IndexConst(arg1).index(11)) as u64) * (x13 as u64));
771  let x75: u64 = (((*IndexConst(arg1).index(10)) as u64) * (x3 as u64));
772  let x76: u64 = (((*IndexConst(arg1).index(10)) as u64) * (x8 as u64));
773  let x77: u64 = (((*IndexConst(arg1).index(9)) as u64) * (x3 as u64));
774  let x78: u64 = (((*IndexConst(arg1).index(15)) as u64) * (x2 as u64));
775  let x79: u64 = (((*IndexConst(arg1).index(14)) as u64) * (x4 as u64));
776  let x80: u64 = (((*IndexConst(arg1).index(14)) as u64) * (x7 as u64));
777  let x81: u64 = (((*IndexConst(arg1).index(13)) as u64) * (x4 as u64));
778  let x82: u64 = (((*IndexConst(arg1).index(13)) as u64) * (x9 as u64));
779  let x83: u64 = (((*IndexConst(arg1).index(13)) as u64) * (x12 as u64));
780  let x84: u64 = (((*IndexConst(arg1).index(12)) as u64) * (x4 as u64));
781  let x85: u64 = (((*IndexConst(arg1).index(12)) as u64) * (x9 as u64));
782  let x86: u64 = (((*IndexConst(arg1).index(12)) as u64) * (x14 as u64));
783  let x87: u64 = (((*IndexConst(arg1).index(12)) as u64) * (x17 as u64));
784  let x88: u64 = (((*IndexConst(arg1).index(11)) as u64) * (x4 as u64));
785  let x89: u64 = (((*IndexConst(arg1).index(11)) as u64) * (x9 as u64));
786  let x90: u64 = (((*IndexConst(arg1).index(11)) as u64) * (x14 as u64));
787  let x91: u64 = (((*IndexConst(arg1).index(11)) as u64) * (x19 as u64));
788  let x92: u64 = (((*IndexConst(arg1).index(11)) as u64) * (x18 as u64));
789  let x93: u64 = (((*IndexConst(arg1).index(11)) as u64) * (x22 as u64));
790  let x94: u64 = (((*IndexConst(arg1).index(11)) as u64) * (x21 as u64));
791  let x95: u64 = (((*IndexConst(arg1).index(10)) as u64) * (x4 as u64));
792  let x96: u64 = (((*IndexConst(arg1).index(10)) as u64) * (x9 as u64));
793  let x97: u64 = (((*IndexConst(arg1).index(10)) as u64) * (x14 as u64));
794  let x98: u64 = (((*IndexConst(arg1).index(10)) as u64) * (x13 as u64));
795  let x99: u64 = (((*IndexConst(arg1).index(10)) as u64) * (x19 as u64));
796  let x100: u64 = (((*IndexConst(arg1).index(10)) as u64) * (x18 as u64));
797  let x101: u64 = (((*IndexConst(arg1).index(10)) as u64) * (x24 as u64));
798  let x102: u64 = (((*IndexConst(arg1).index(10)) as u64) * (x23 as u64));
799  let x103: u64 = (((*IndexConst(arg1).index(10)) as u64) * (x27 as u64));
800  let x104: u64 = (((*IndexConst(arg1).index(10)) as u64) * (x26 as u64));
801  let x105: u64 = (((*IndexConst(arg1).index(9)) as u64) * (x4 as u64));
802  let x106: u64 = (((*IndexConst(arg1).index(9)) as u64) * (x9 as u64));
803  let x107: u64 = (((*IndexConst(arg1).index(9)) as u64) * (x8 as u64));
804  let x108: u64 = (((*IndexConst(arg1).index(9)) as u64) * (x14 as u64));
805  let x109: u64 = (((*IndexConst(arg1).index(9)) as u64) * (x13 as u64));
806  let x110: u64 = (((*IndexConst(arg1).index(9)) as u64) * (x19 as u64));
807  let x111: u64 = (((*IndexConst(arg1).index(9)) as u64) * (x18 as u64));
808  let x112: u64 = (((*IndexConst(arg1).index(9)) as u64) * (x24 as u64));
809  let x113: u64 = (((*IndexConst(arg1).index(9)) as u64) * (x23 as u64));
810  let x114: u64 = (((*IndexConst(arg1).index(9)) as u64) * (x29 as u64));
811  let x115: u64 = (((*IndexConst(arg1).index(9)) as u64) * (x28 as u64));
812  let x116: u64 = (((*IndexConst(arg1).index(9)) as u64) * (x32 as u64));
813  let x117: u64 = (((*IndexConst(arg1).index(9)) as u64) * (x31 as u64));
814  let x118: u64 = (((*IndexConst(arg1).index(8)) as u64) * (x4 as u64));
815  let x119: u64 = (((*IndexConst(arg1).index(8)) as u64) * (x3 as u64));
816  let x120: u64 = (((*IndexConst(arg1).index(8)) as u64) * (x9 as u64));
817  let x121: u64 = (((*IndexConst(arg1).index(8)) as u64) * (x8 as u64));
818  let x122: u64 = (((*IndexConst(arg1).index(8)) as u64) * (x14 as u64));
819  let x123: u64 = (((*IndexConst(arg1).index(8)) as u64) * (x13 as u64));
820  let x124: u64 = (((*IndexConst(arg1).index(8)) as u64) * (x19 as u64));
821  let x125: u64 = (((*IndexConst(arg1).index(8)) as u64) * (x18 as u64));
822  let x126: u64 = (((*IndexConst(arg1).index(8)) as u64) * (x24 as u64));
823  let x127: u64 = (((*IndexConst(arg1).index(8)) as u64) * (x23 as u64));
824  let x128: u64 = (((*IndexConst(arg1).index(8)) as u64) * (x29 as u64));
825  let x129: u64 = (((*IndexConst(arg1).index(8)) as u64) * (x28 as u64));
826  let x130: u64 = (((*IndexConst(arg1).index(8)) as u64) * (x34 as u64));
827  let x131: u64 = (((*IndexConst(arg1).index(8)) as u64) * (x33 as u64));
828  let x132: u64 = (((*IndexConst(arg1).index(8)) as u64) * (x37 as u64));
829  let x133: u64 = (((*IndexConst(arg1).index(8)) as u64) * (x36 as u64));
830  let x134: u64 = (((*IndexConst(arg1).index(7)) as u64) * (x4 as u64));
831  let x135: u64 = (((*IndexConst(arg1).index(7)) as u64) * (x3 as u64));
832  let x136: u64 = (((*IndexConst(arg1).index(7)) as u64) * (x9 as u64));
833  let x137: u64 = (((*IndexConst(arg1).index(7)) as u64) * (x8 as u64));
834  let x138: u64 = (((*IndexConst(arg1).index(7)) as u64) * (x14 as u64));
835  let x139: u64 = (((*IndexConst(arg1).index(7)) as u64) * (x13 as u64));
836  let x140: u64 = (((*IndexConst(arg1).index(7)) as u64) * (x19 as u64));
837  let x141: u64 = (((*IndexConst(arg1).index(7)) as u64) * (x18 as u64));
838  let x142: u64 = (((*IndexConst(arg1).index(7)) as u64) * (x24 as u64));
839  let x143: u64 = (((*IndexConst(arg1).index(7)) as u64) * (x23 as u64));
840  let x144: u64 = (((*IndexConst(arg1).index(7)) as u64) * (x29 as u64));
841  let x145: u64 = (((*IndexConst(arg1).index(7)) as u64) * (x28 as u64));
842  let x146: u64 = (((*IndexConst(arg1).index(7)) as u64) * (x34 as u64));
843  let x147: u64 = (((*IndexConst(arg1).index(7)) as u64) * (x33 as u64));
844  let x148: u64 = (((*IndexConst(arg1).index(7)) as u64) * (x38 as u64));
845  let x149: u64 = (((*IndexConst(arg1).index(7)) as u64) * ((*IndexConst(arg1).index(7)) as u64));
846  let x150: u64 = (((*IndexConst(arg1).index(6)) as u64) * (x4 as u64));
847  let x151: u64 = (((*IndexConst(arg1).index(6)) as u64) * (x3 as u64));
848  let x152: u64 = (((*IndexConst(arg1).index(6)) as u64) * (x9 as u64));
849  let x153: u64 = (((*IndexConst(arg1).index(6)) as u64) * (x8 as u64));
850  let x154: u64 = (((*IndexConst(arg1).index(6)) as u64) * (x14 as u64));
851  let x155: u64 = (((*IndexConst(arg1).index(6)) as u64) * (x13 as u64));
852  let x156: u64 = (((*IndexConst(arg1).index(6)) as u64) * (x19 as u64));
853  let x157: u64 = (((*IndexConst(arg1).index(6)) as u64) * (x18 as u64));
854  let x158: u64 = (((*IndexConst(arg1).index(6)) as u64) * (x24 as u64));
855  let x159: u64 = (((*IndexConst(arg1).index(6)) as u64) * (x23 as u64));
856  let x160: u64 = (((*IndexConst(arg1).index(6)) as u64) * (x29 as u64));
857  let x161: u64 = (((*IndexConst(arg1).index(6)) as u64) * (x28 as u64));
858  let x162: u64 = (((*IndexConst(arg1).index(6)) as u64) * (x35 as u64));
859  let x163: u64 = (((*IndexConst(arg1).index(6)) as u64) * (x38 as u64));
860  let x164: u64 = (((*IndexConst(arg1).index(6)) as u64) * (x39 as u64));
861  let x165: u64 = (((*IndexConst(arg1).index(6)) as u64) * ((*IndexConst(arg1).index(6)) as u64));
862  let x166: u64 = (((*IndexConst(arg1).index(5)) as u64) * (x4 as u64));
863  let x167: u64 = (((*IndexConst(arg1).index(5)) as u64) * (x3 as u64));
864  let x168: u64 = (((*IndexConst(arg1).index(5)) as u64) * (x9 as u64));
865  let x169: u64 = (((*IndexConst(arg1).index(5)) as u64) * (x8 as u64));
866  let x170: u64 = (((*IndexConst(arg1).index(5)) as u64) * (x14 as u64));
867  let x171: u64 = (((*IndexConst(arg1).index(5)) as u64) * (x13 as u64));
868  let x172: u64 = (((*IndexConst(arg1).index(5)) as u64) * (x19 as u64));
869  let x173: u64 = (((*IndexConst(arg1).index(5)) as u64) * (x18 as u64));
870  let x174: u64 = (((*IndexConst(arg1).index(5)) as u64) * (x24 as u64));
871  let x175: u64 = (((*IndexConst(arg1).index(5)) as u64) * (x23 as u64));
872  let x176: u64 = (((*IndexConst(arg1).index(5)) as u64) * (x30 as u64));
873  let x177: u64 = (((*IndexConst(arg1).index(5)) as u64) * (x35 as u64));
874  let x178: u64 = (((*IndexConst(arg1).index(5)) as u64) * (x38 as u64));
875  let x179: u64 = (((*IndexConst(arg1).index(5)) as u64) * (x39 as u64));
876  let x180: u64 = (((*IndexConst(arg1).index(5)) as u64) * (x40 as u64));
877  let x181: u64 = (((*IndexConst(arg1).index(5)) as u64) * ((*IndexConst(arg1).index(5)) as u64));
878  let x182: u64 = (((*IndexConst(arg1).index(4)) as u64) * (x4 as u64));
879  let x183: u64 = (((*IndexConst(arg1).index(4)) as u64) * (x3 as u64));
880  let x184: u64 = (((*IndexConst(arg1).index(4)) as u64) * (x9 as u64));
881  let x185: u64 = (((*IndexConst(arg1).index(4)) as u64) * (x8 as u64));
882  let x186: u64 = (((*IndexConst(arg1).index(4)) as u64) * (x14 as u64));
883  let x187: u64 = (((*IndexConst(arg1).index(4)) as u64) * (x13 as u64));
884  let x188: u64 = (((*IndexConst(arg1).index(4)) as u64) * (x19 as u64));
885  let x189: u64 = (((*IndexConst(arg1).index(4)) as u64) * (x18 as u64));
886  let x190: u64 = (((*IndexConst(arg1).index(4)) as u64) * (x25 as u64));
887  let x191: u64 = (((*IndexConst(arg1).index(4)) as u64) * (x30 as u64));
888  let x192: u64 = (((*IndexConst(arg1).index(4)) as u64) * (x35 as u64));
889  let x193: u64 = (((*IndexConst(arg1).index(4)) as u64) * (x38 as u64));
890  let x194: u64 = (((*IndexConst(arg1).index(4)) as u64) * (x39 as u64));
891  let x195: u64 = (((*IndexConst(arg1).index(4)) as u64) * (x40 as u64));
892  let x196: u64 = (((*IndexConst(arg1).index(4)) as u64) * (x41 as u64));
893  let x197: u64 = (((*IndexConst(arg1).index(4)) as u64) * ((*IndexConst(arg1).index(4)) as u64));
894  let x198: u64 = (((*IndexConst(arg1).index(3)) as u64) * (x4 as u64));
895  let x199: u64 = (((*IndexConst(arg1).index(3)) as u64) * (x3 as u64));
896  let x200: u64 = (((*IndexConst(arg1).index(3)) as u64) * (x9 as u64));
897  let x201: u64 = (((*IndexConst(arg1).index(3)) as u64) * (x8 as u64));
898  let x202: u64 = (((*IndexConst(arg1).index(3)) as u64) * (x14 as u64));
899  let x203: u64 = (((*IndexConst(arg1).index(3)) as u64) * (x13 as u64));
900  let x204: u64 = (((*IndexConst(arg1).index(3)) as u64) * (x20 as u64));
901  let x205: u64 = (((*IndexConst(arg1).index(3)) as u64) * (x25 as u64));
902  let x206: u64 = (((*IndexConst(arg1).index(3)) as u64) * (x30 as u64));
903  let x207: u64 = (((*IndexConst(arg1).index(3)) as u64) * (x35 as u64));
904  let x208: u64 = (((*IndexConst(arg1).index(3)) as u64) * (x38 as u64));
905  let x209: u64 = (((*IndexConst(arg1).index(3)) as u64) * (x39 as u64));
906  let x210: u64 = (((*IndexConst(arg1).index(3)) as u64) * (x40 as u64));
907  let x211: u64 = (((*IndexConst(arg1).index(3)) as u64) * (x41 as u64));
908  let x212: u64 = (((*IndexConst(arg1).index(3)) as u64) * (x42 as u64));
909  let x213: u64 = (((*IndexConst(arg1).index(3)) as u64) * ((*IndexConst(arg1).index(3)) as u64));
910  let x214: u64 = (((*IndexConst(arg1).index(2)) as u64) * (x4 as u64));
911  let x215: u64 = (((*IndexConst(arg1).index(2)) as u64) * (x3 as u64));
912  let x216: u64 = (((*IndexConst(arg1).index(2)) as u64) * (x9 as u64));
913  let x217: u64 = (((*IndexConst(arg1).index(2)) as u64) * (x8 as u64));
914  let x218: u64 = (((*IndexConst(arg1).index(2)) as u64) * (x15 as u64));
915  let x219: u64 = (((*IndexConst(arg1).index(2)) as u64) * (x20 as u64));
916  let x220: u64 = (((*IndexConst(arg1).index(2)) as u64) * (x25 as u64));
917  let x221: u64 = (((*IndexConst(arg1).index(2)) as u64) * (x30 as u64));
918  let x222: u64 = (((*IndexConst(arg1).index(2)) as u64) * (x35 as u64));
919  let x223: u64 = (((*IndexConst(arg1).index(2)) as u64) * (x38 as u64));
920  let x224: u64 = (((*IndexConst(arg1).index(2)) as u64) * (x39 as u64));
921  let x225: u64 = (((*IndexConst(arg1).index(2)) as u64) * (x40 as u64));
922  let x226: u64 = (((*IndexConst(arg1).index(2)) as u64) * (x41 as u64));
923  let x227: u64 = (((*IndexConst(arg1).index(2)) as u64) * (x42 as u64));
924  let x228: u64 = (((*IndexConst(arg1).index(2)) as u64) * (x43 as u64));
925  let x229: u64 = (((*IndexConst(arg1).index(2)) as u64) * ((*IndexConst(arg1).index(2)) as u64));
926  let x230: u64 = (((*IndexConst(arg1).index(1)) as u64) * (x4 as u64));
927  let x231: u64 = (((*IndexConst(arg1).index(1)) as u64) * (x3 as u64));
928  let x232: u64 = (((*IndexConst(arg1).index(1)) as u64) * (x10 as u64));
929  let x233: u64 = (((*IndexConst(arg1).index(1)) as u64) * (x15 as u64));
930  let x234: u64 = (((*IndexConst(arg1).index(1)) as u64) * (x20 as u64));
931  let x235: u64 = (((*IndexConst(arg1).index(1)) as u64) * (x25 as u64));
932  let x236: u64 = (((*IndexConst(arg1).index(1)) as u64) * (x30 as u64));
933  let x237: u64 = (((*IndexConst(arg1).index(1)) as u64) * (x35 as u64));
934  let x238: u64 = (((*IndexConst(arg1).index(1)) as u64) * (x38 as u64));
935  let x239: u64 = (((*IndexConst(arg1).index(1)) as u64) * (x39 as u64));
936  let x240: u64 = (((*IndexConst(arg1).index(1)) as u64) * (x40 as u64));
937  let x241: u64 = (((*IndexConst(arg1).index(1)) as u64) * (x41 as u64));
938  let x242: u64 = (((*IndexConst(arg1).index(1)) as u64) * (x42 as u64));
939  let x243: u64 = (((*IndexConst(arg1).index(1)) as u64) * (x43 as u64));
940  let x244: u64 = (((*IndexConst(arg1).index(1)) as u64) * (x44 as u64));
941  let x245: u64 = (((*IndexConst(arg1).index(1)) as u64) * ((*IndexConst(arg1).index(1)) as u64));
942  let x246: u64 = (((*IndexConst(arg1).index(0)) as u64) * (x5 as u64));
943  let x247: u64 = (((*IndexConst(arg1).index(0)) as u64) * (x10 as u64));
944  let x248: u64 = (((*IndexConst(arg1).index(0)) as u64) * (x15 as u64));
945  let x249: u64 = (((*IndexConst(arg1).index(0)) as u64) * (x20 as u64));
946  let x250: u64 = (((*IndexConst(arg1).index(0)) as u64) * (x25 as u64));
947  let x251: u64 = (((*IndexConst(arg1).index(0)) as u64) * (x30 as u64));
948  let x252: u64 = (((*IndexConst(arg1).index(0)) as u64) * (x35 as u64));
949  let x253: u64 = (((*IndexConst(arg1).index(0)) as u64) * (x38 as u64));
950  let x254: u64 = (((*IndexConst(arg1).index(0)) as u64) * (x39 as u64));
951  let x255: u64 = (((*IndexConst(arg1).index(0)) as u64) * (x40 as u64));
952  let x256: u64 = (((*IndexConst(arg1).index(0)) as u64) * (x41 as u64));
953  let x257: u64 = (((*IndexConst(arg1).index(0)) as u64) * (x42 as u64));
954  let x258: u64 = (((*IndexConst(arg1).index(0)) as u64) * (x43 as u64));
955  let x259: u64 = (((*IndexConst(arg1).index(0)) as u64) * (x44 as u64));
956  let x260: u64 = (((*IndexConst(arg1).index(0)) as u64) * (x45 as u64));
957  let x261: u64 = (((*IndexConst(arg1).index(0)) as u64) * ((*IndexConst(arg1).index(0)) as u64));
958  let x262: u64 = (x254 + (x240 + (x226 + (x212 + (x118 + (x106 + (x97 + x91)))))));
959  let x263: u64 = (x262 >> 28);
960  let x264: u32 = ((x262 & (0xfffffff as u64)) as u32);
961  let x265: u64 = (x246 + (x232 + (x218 + (x204 + (x190 + (x176 + (x162 + (x148 + (x119 + (x107 + (x98 + x92)))))))))));
962  let x266: u64 = (x247 + (x233 + (x219 + (x205 + (x191 + (x177 + (x163 + (x149 + (x135 + (x121 + (x109 + (x100 + (x94 + (x78 + x62))))))))))))));
963  let x267: u64 = (x248 + (x234 + (x220 + (x206 + (x192 + (x178 + (x164 + (x151 + (x137 + (x123 + (x111 + (x102 + (x79 + x63)))))))))))));
964  let x268: u128 = ((x249 as u128) + ((x235 + (x221 + (x207 + (x193 + (x179 + (x167 + (x165 + (x153 + (x139 + (x125 + (x113 + (x104 + (x81 + (x80 + (x65 + x64))))))))))))))) as u128));
965  let x269: u128 = ((x250 as u128) + ((x236 as u128) + ((x222 + (x208 + (x194 + (x183 + (x180 + (x169 + (x155 + (x141 + (x127 + (x115 + (x84 + (x82 + (x68 + x66))))))))))))) as u128)));
966  let x270: u128 = ((x251 as u128) + ((x237 as u128) + ((x223 as u128) + ((x209 + (x199 + (x195 + (x185 + (x181 + (x171 + (x157 + (x143 + (x129 + (x117 + (x88 + (x85 + (x83 + (x72 + (x69 + x67))))))))))))))) as u128))));
967  let x271: u128 = ((x252 as u128) + ((x238 as u128) + ((x224 as u128) + ((x215 as u128) + ((x210 + (x201 + (x196 + (x187 + (x173 + (x159 + (x145 + (x131 + (x95 + (x89 + (x86 + (x75 + (x73 + x70))))))))))))) as u128)))));
968  let x272: u128 = ((x253 as u128) + ((x239 as u128) + ((x231 as u128) + ((x225 as u128) + ((x217 as u128) + ((x211 + (x203 + (x197 + (x189 + (x175 + (x161 + (x147 + (x133 + (x105 + (x96 + (x90 + (x87 + (x77 + (x76 + (x74 + x71))))))))))))))) as u128))))));
969  let x273: u64 = (x255 + (x241 + (x227 + (x213 + (x134 + (x120 + (x108 + (x99 + (x93 + x46)))))))));
970  let x274: u64 = (x256 + (x242 + (x228 + (x150 + (x136 + (x122 + (x110 + (x101 + x47))))))));
971  let x275: u64 = (x257 + (x243 + (x229 + (x166 + (x152 + (x138 + (x124 + (x112 + (x103 + (x49 + x48))))))))));
972  let x276: u64 = (x258 + (x244 + (x182 + (x168 + (x154 + (x140 + (x126 + (x114 + (x52 + x50)))))))));
973  let x277: u64 = (x259 + (x245 + (x198 + (x184 + (x170 + (x156 + (x142 + (x128 + (x116 + (x56 + (x53 + x51)))))))))));
974  let x278: u64 = (x260 + (x214 + (x200 + (x186 + (x172 + (x158 + (x144 + (x130 + (x59 + (x57 + x54))))))))));
975  let x279: u64 = (x261 + (x230 + (x216 + (x202 + (x188 + (x174 + (x160 + (x146 + (x132 + (x61 + (x60 + (x58 + x55))))))))))));
976  let x280: u128 = ((x263 as u128) + x272);
977  let x281: u64 = (x265 >> 28);
978  let x282: u32 = ((x265 & (0xfffffff as u64)) as u32);
979  let x283: u128 = (x280 + (x281 as u128));
980  let x284: u64 = ((x283 >> 28) as u64);
981  let x285: u32 = ((x283 & (0xfffffff as u128)) as u32);
982  let x286: u64 = (x279 + x281);
983  let x287: u128 = ((x284 as u128) + x271);
984  let x288: u64 = (x286 >> 28);
985  let x289: u32 = ((x286 & (0xfffffff as u64)) as u32);
986  let x290: u64 = (x288 + x278);
987  let x291: u64 = ((x287 >> 28) as u64);
988  let x292: u32 = ((x287 & (0xfffffff as u128)) as u32);
989  let x293: u128 = ((x291 as u128) + x270);
990  let x294: u64 = (x290 >> 28);
991  let x295: u32 = ((x290 & (0xfffffff as u64)) as u32);
992  let x296: u64 = (x294 + x277);
993  let x297: u64 = ((x293 >> 28) as u64);
994  let x298: u32 = ((x293 & (0xfffffff as u128)) as u32);
995  let x299: u128 = ((x297 as u128) + x269);
996  let x300: u64 = (x296 >> 28);
997  let x301: u32 = ((x296 & (0xfffffff as u64)) as u32);
998  let x302: u64 = (x300 + x276);
999  let x303: u64 = ((x299 >> 28) as u64);
1000  let x304: u32 = ((x299 & (0xfffffff as u128)) as u32);
1001  let x305: u128 = ((x303 as u128) + x268);
1002  let x306: u64 = (x302 >> 28);
1003  let x307: u32 = ((x302 & (0xfffffff as u64)) as u32);
1004  let x308: u64 = (x306 + x275);
1005  let x309: u64 = ((x305 >> 28) as u64);
1006  let x310: u32 = ((x305 & (0xfffffff as u128)) as u32);
1007  let x311: u64 = (x309 + x267);
1008  let x312: u64 = (x308 >> 28);
1009  let x313: u32 = ((x308 & (0xfffffff as u64)) as u32);
1010  let x314: u64 = (x312 + x274);
1011  let x315: u64 = (x311 >> 28);
1012  let x316: u32 = ((x311 & (0xfffffff as u64)) as u32);
1013  let x317: u64 = (x315 + x266);
1014  let x318: u64 = (x314 >> 28);
1015  let x319: u32 = ((x314 & (0xfffffff as u64)) as u32);
1016  let x320: u64 = (x318 + x273);
1017  let x321: u64 = (x317 >> 28);
1018  let x322: u32 = ((x317 & (0xfffffff as u64)) as u32);
1019  let x323: u64 = (x321 + (x282 as u64));
1020  let x324: u64 = (x320 >> 28);
1021  let x325: u32 = ((x320 & (0xfffffff as u64)) as u32);
1022  let x326: u64 = (x324 + (x264 as u64));
1023  let x327: u32 = ((x323 >> 28) as u32);
1024  let x328: u32 = ((x323 & (0xfffffff as u64)) as u32);
1025  let x329: u32 = ((x326 >> 28) as u32);
1026  let x330: u32 = ((x326 & (0xfffffff as u64)) as u32);
1027  let x331: u32 = (x285 + x327);
1028  let x332: u32 = (x289 + x327);
1029  let x333: u32 = (x329 + x331);
1030  let x334: fiat_p448_u1 = ((x333 >> 28) as fiat_p448_u1);
1031  let x335: u32 = (x333 & 0xfffffff);
1032  let x336: u32 = ((x334 as u32) + x292);
1033  let x337: fiat_p448_u1 = ((x332 >> 28) as fiat_p448_u1);
1034  let x338: u32 = (x332 & 0xfffffff);
1035  let x339: u32 = ((x337 as u32) + x295);
1036  *IndexConst(&mut out1).index_mut(0) = x338;
1037  *IndexConst(&mut out1).index_mut(1) = x339;
1038  *IndexConst(&mut out1).index_mut(2) = x301;
1039  *IndexConst(&mut out1).index_mut(3) = x307;
1040  *IndexConst(&mut out1).index_mut(4) = x313;
1041  *IndexConst(&mut out1).index_mut(5) = x319;
1042  *IndexConst(&mut out1).index_mut(6) = x325;
1043  *IndexConst(&mut out1).index_mut(7) = x330;
1044  *IndexConst(&mut out1).index_mut(8) = x335;
1045  *IndexConst(&mut out1).index_mut(9) = x336;
1046  *IndexConst(&mut out1).index_mut(10) = x298;
1047  *IndexConst(&mut out1).index_mut(11) = x304;
1048  *IndexConst(&mut out1).index_mut(12) = x310;
1049  *IndexConst(&mut out1).index_mut(13) = x316;
1050  *IndexConst(&mut out1).index_mut(14) = x322;
1051  *IndexConst(&mut out1).index_mut(15) = x328;
1052}
1053
1054/// The function fiat_p448_carry reduces a field element.
1055///
1056/// Postconditions:
1057///   eval out1 mod m = eval arg1 mod m
1058///
1059#[inline]
1060pub const fn fiat_p448_carry(mut out1: &mut fiat_p448_tight_field_element, arg1: &fiat_p448_loose_field_element) {
1061  let x1: u32 = (*IndexConst(arg1).index(7));
1062  let x2: u32 = (*IndexConst(arg1).index(15));
1063  let x3: u32 = (x2 >> 28);
1064  let x4: u32 = (((x1 >> 28) + (*IndexConst(arg1).index(8))) + x3);
1065  let x5: u32 = ((*IndexConst(arg1).index(0)) + x3);
1066  let x6: u32 = ((x4 >> 28) + (*IndexConst(arg1).index(9)));
1067  let x7: u32 = ((x5 >> 28) + (*IndexConst(arg1).index(1)));
1068  let x8: u32 = ((x6 >> 28) + (*IndexConst(arg1).index(10)));
1069  let x9: u32 = ((x7 >> 28) + (*IndexConst(arg1).index(2)));
1070  let x10: u32 = ((x8 >> 28) + (*IndexConst(arg1).index(11)));
1071  let x11: u32 = ((x9 >> 28) + (*IndexConst(arg1).index(3)));
1072  let x12: u32 = ((x10 >> 28) + (*IndexConst(arg1).index(12)));
1073  let x13: u32 = ((x11 >> 28) + (*IndexConst(arg1).index(4)));
1074  let x14: u32 = ((x12 >> 28) + (*IndexConst(arg1).index(13)));
1075  let x15: u32 = ((x13 >> 28) + (*IndexConst(arg1).index(5)));
1076  let x16: u32 = ((x14 >> 28) + (*IndexConst(arg1).index(14)));
1077  let x17: u32 = ((x15 >> 28) + (*IndexConst(arg1).index(6)));
1078  let x18: u32 = ((x16 >> 28) + (x2 & 0xfffffff));
1079  let x19: u32 = ((x17 >> 28) + (x1 & 0xfffffff));
1080  let x20: fiat_p448_u1 = ((x18 >> 28) as fiat_p448_u1);
1081  let x21: u32 = ((x5 & 0xfffffff) + (x20 as u32));
1082  let x22: u32 = ((((x19 >> 28) as fiat_p448_u1) as u32) + ((x4 & 0xfffffff) + (x20 as u32)));
1083  let x23: u32 = (x21 & 0xfffffff);
1084  let x24: u32 = ((((x21 >> 28) as fiat_p448_u1) as u32) + (x7 & 0xfffffff));
1085  let x25: u32 = (x9 & 0xfffffff);
1086  let x26: u32 = (x11 & 0xfffffff);
1087  let x27: u32 = (x13 & 0xfffffff);
1088  let x28: u32 = (x15 & 0xfffffff);
1089  let x29: u32 = (x17 & 0xfffffff);
1090  let x30: u32 = (x19 & 0xfffffff);
1091  let x31: u32 = (x22 & 0xfffffff);
1092  let x32: u32 = ((((x22 >> 28) as fiat_p448_u1) as u32) + (x6 & 0xfffffff));
1093  let x33: u32 = (x8 & 0xfffffff);
1094  let x34: u32 = (x10 & 0xfffffff);
1095  let x35: u32 = (x12 & 0xfffffff);
1096  let x36: u32 = (x14 & 0xfffffff);
1097  let x37: u32 = (x16 & 0xfffffff);
1098  let x38: u32 = (x18 & 0xfffffff);
1099  *IndexConst(&mut out1).index_mut(0) = x23;
1100  *IndexConst(&mut out1).index_mut(1) = x24;
1101  *IndexConst(&mut out1).index_mut(2) = x25;
1102  *IndexConst(&mut out1).index_mut(3) = x26;
1103  *IndexConst(&mut out1).index_mut(4) = x27;
1104  *IndexConst(&mut out1).index_mut(5) = x28;
1105  *IndexConst(&mut out1).index_mut(6) = x29;
1106  *IndexConst(&mut out1).index_mut(7) = x30;
1107  *IndexConst(&mut out1).index_mut(8) = x31;
1108  *IndexConst(&mut out1).index_mut(9) = x32;
1109  *IndexConst(&mut out1).index_mut(10) = x33;
1110  *IndexConst(&mut out1).index_mut(11) = x34;
1111  *IndexConst(&mut out1).index_mut(12) = x35;
1112  *IndexConst(&mut out1).index_mut(13) = x36;
1113  *IndexConst(&mut out1).index_mut(14) = x37;
1114  *IndexConst(&mut out1).index_mut(15) = x38;
1115}
1116
1117/// The function fiat_p448_add adds two field elements.
1118///
1119/// Postconditions:
1120///   eval out1 mod m = (eval arg1 + eval arg2) mod m
1121///
1122#[inline]
1123pub const fn fiat_p448_add(mut out1: &mut fiat_p448_loose_field_element, arg1: &fiat_p448_tight_field_element, arg2: &fiat_p448_tight_field_element) {
1124  let x1: u32 = ((*IndexConst(arg1).index(0)) + (*IndexConst(arg2).index(0)));
1125  let x2: u32 = ((*IndexConst(arg1).index(1)) + (*IndexConst(arg2).index(1)));
1126  let x3: u32 = ((*IndexConst(arg1).index(2)) + (*IndexConst(arg2).index(2)));
1127  let x4: u32 = ((*IndexConst(arg1).index(3)) + (*IndexConst(arg2).index(3)));
1128  let x5: u32 = ((*IndexConst(arg1).index(4)) + (*IndexConst(arg2).index(4)));
1129  let x6: u32 = ((*IndexConst(arg1).index(5)) + (*IndexConst(arg2).index(5)));
1130  let x7: u32 = ((*IndexConst(arg1).index(6)) + (*IndexConst(arg2).index(6)));
1131  let x8: u32 = ((*IndexConst(arg1).index(7)) + (*IndexConst(arg2).index(7)));
1132  let x9: u32 = ((*IndexConst(arg1).index(8)) + (*IndexConst(arg2).index(8)));
1133  let x10: u32 = ((*IndexConst(arg1).index(9)) + (*IndexConst(arg2).index(9)));
1134  let x11: u32 = ((*IndexConst(arg1).index(10)) + (*IndexConst(arg2).index(10)));
1135  let x12: u32 = ((*IndexConst(arg1).index(11)) + (*IndexConst(arg2).index(11)));
1136  let x13: u32 = ((*IndexConst(arg1).index(12)) + (*IndexConst(arg2).index(12)));
1137  let x14: u32 = ((*IndexConst(arg1).index(13)) + (*IndexConst(arg2).index(13)));
1138  let x15: u32 = ((*IndexConst(arg1).index(14)) + (*IndexConst(arg2).index(14)));
1139  let x16: u32 = ((*IndexConst(arg1).index(15)) + (*IndexConst(arg2).index(15)));
1140  *IndexConst(&mut out1).index_mut(0) = x1;
1141  *IndexConst(&mut out1).index_mut(1) = x2;
1142  *IndexConst(&mut out1).index_mut(2) = x3;
1143  *IndexConst(&mut out1).index_mut(3) = x4;
1144  *IndexConst(&mut out1).index_mut(4) = x5;
1145  *IndexConst(&mut out1).index_mut(5) = x6;
1146  *IndexConst(&mut out1).index_mut(6) = x7;
1147  *IndexConst(&mut out1).index_mut(7) = x8;
1148  *IndexConst(&mut out1).index_mut(8) = x9;
1149  *IndexConst(&mut out1).index_mut(9) = x10;
1150  *IndexConst(&mut out1).index_mut(10) = x11;
1151  *IndexConst(&mut out1).index_mut(11) = x12;
1152  *IndexConst(&mut out1).index_mut(12) = x13;
1153  *IndexConst(&mut out1).index_mut(13) = x14;
1154  *IndexConst(&mut out1).index_mut(14) = x15;
1155  *IndexConst(&mut out1).index_mut(15) = x16;
1156}
1157
1158/// The function fiat_p448_sub subtracts two field elements.
1159///
1160/// Postconditions:
1161///   eval out1 mod m = (eval arg1 - eval arg2) mod m
1162///
1163#[inline]
1164pub const fn fiat_p448_sub(mut out1: &mut fiat_p448_loose_field_element, arg1: &fiat_p448_tight_field_element, arg2: &fiat_p448_tight_field_element) {
1165  let x1: u32 = ((0x1ffffffe + (*IndexConst(arg1).index(0))) - (*IndexConst(arg2).index(0)));
1166  let x2: u32 = ((0x1ffffffe + (*IndexConst(arg1).index(1))) - (*IndexConst(arg2).index(1)));
1167  let x3: u32 = ((0x1ffffffe + (*IndexConst(arg1).index(2))) - (*IndexConst(arg2).index(2)));
1168  let x4: u32 = ((0x1ffffffe + (*IndexConst(arg1).index(3))) - (*IndexConst(arg2).index(3)));
1169  let x5: u32 = ((0x1ffffffe + (*IndexConst(arg1).index(4))) - (*IndexConst(arg2).index(4)));
1170  let x6: u32 = ((0x1ffffffe + (*IndexConst(arg1).index(5))) - (*IndexConst(arg2).index(5)));
1171  let x7: u32 = ((0x1ffffffe + (*IndexConst(arg1).index(6))) - (*IndexConst(arg2).index(6)));
1172  let x8: u32 = ((0x1ffffffe + (*IndexConst(arg1).index(7))) - (*IndexConst(arg2).index(7)));
1173  let x9: u32 = ((0x1ffffffc + (*IndexConst(arg1).index(8))) - (*IndexConst(arg2).index(8)));
1174  let x10: u32 = ((0x1ffffffe + (*IndexConst(arg1).index(9))) - (*IndexConst(arg2).index(9)));
1175  let x11: u32 = ((0x1ffffffe + (*IndexConst(arg1).index(10))) - (*IndexConst(arg2).index(10)));
1176  let x12: u32 = ((0x1ffffffe + (*IndexConst(arg1).index(11))) - (*IndexConst(arg2).index(11)));
1177  let x13: u32 = ((0x1ffffffe + (*IndexConst(arg1).index(12))) - (*IndexConst(arg2).index(12)));
1178  let x14: u32 = ((0x1ffffffe + (*IndexConst(arg1).index(13))) - (*IndexConst(arg2).index(13)));
1179  let x15: u32 = ((0x1ffffffe + (*IndexConst(arg1).index(14))) - (*IndexConst(arg2).index(14)));
1180  let x16: u32 = ((0x1ffffffe + (*IndexConst(arg1).index(15))) - (*IndexConst(arg2).index(15)));
1181  *IndexConst(&mut out1).index_mut(0) = x1;
1182  *IndexConst(&mut out1).index_mut(1) = x2;
1183  *IndexConst(&mut out1).index_mut(2) = x3;
1184  *IndexConst(&mut out1).index_mut(3) = x4;
1185  *IndexConst(&mut out1).index_mut(4) = x5;
1186  *IndexConst(&mut out1).index_mut(5) = x6;
1187  *IndexConst(&mut out1).index_mut(6) = x7;
1188  *IndexConst(&mut out1).index_mut(7) = x8;
1189  *IndexConst(&mut out1).index_mut(8) = x9;
1190  *IndexConst(&mut out1).index_mut(9) = x10;
1191  *IndexConst(&mut out1).index_mut(10) = x11;
1192  *IndexConst(&mut out1).index_mut(11) = x12;
1193  *IndexConst(&mut out1).index_mut(12) = x13;
1194  *IndexConst(&mut out1).index_mut(13) = x14;
1195  *IndexConst(&mut out1).index_mut(14) = x15;
1196  *IndexConst(&mut out1).index_mut(15) = x16;
1197}
1198
1199/// The function fiat_p448_opp negates a field element.
1200///
1201/// Postconditions:
1202///   eval out1 mod m = -eval arg1 mod m
1203///
1204#[inline]
1205pub const fn fiat_p448_opp(mut out1: &mut fiat_p448_loose_field_element, arg1: &fiat_p448_tight_field_element) {
1206  let x1: u32 = (0x1ffffffe - (*IndexConst(arg1).index(0)));
1207  let x2: u32 = (0x1ffffffe - (*IndexConst(arg1).index(1)));
1208  let x3: u32 = (0x1ffffffe - (*IndexConst(arg1).index(2)));
1209  let x4: u32 = (0x1ffffffe - (*IndexConst(arg1).index(3)));
1210  let x5: u32 = (0x1ffffffe - (*IndexConst(arg1).index(4)));
1211  let x6: u32 = (0x1ffffffe - (*IndexConst(arg1).index(5)));
1212  let x7: u32 = (0x1ffffffe - (*IndexConst(arg1).index(6)));
1213  let x8: u32 = (0x1ffffffe - (*IndexConst(arg1).index(7)));
1214  let x9: u32 = (0x1ffffffc - (*IndexConst(arg1).index(8)));
1215  let x10: u32 = (0x1ffffffe - (*IndexConst(arg1).index(9)));
1216  let x11: u32 = (0x1ffffffe - (*IndexConst(arg1).index(10)));
1217  let x12: u32 = (0x1ffffffe - (*IndexConst(arg1).index(11)));
1218  let x13: u32 = (0x1ffffffe - (*IndexConst(arg1).index(12)));
1219  let x14: u32 = (0x1ffffffe - (*IndexConst(arg1).index(13)));
1220  let x15: u32 = (0x1ffffffe - (*IndexConst(arg1).index(14)));
1221  let x16: u32 = (0x1ffffffe - (*IndexConst(arg1).index(15)));
1222  *IndexConst(&mut out1).index_mut(0) = x1;
1223  *IndexConst(&mut out1).index_mut(1) = x2;
1224  *IndexConst(&mut out1).index_mut(2) = x3;
1225  *IndexConst(&mut out1).index_mut(3) = x4;
1226  *IndexConst(&mut out1).index_mut(4) = x5;
1227  *IndexConst(&mut out1).index_mut(5) = x6;
1228  *IndexConst(&mut out1).index_mut(6) = x7;
1229  *IndexConst(&mut out1).index_mut(7) = x8;
1230  *IndexConst(&mut out1).index_mut(8) = x9;
1231  *IndexConst(&mut out1).index_mut(9) = x10;
1232  *IndexConst(&mut out1).index_mut(10) = x11;
1233  *IndexConst(&mut out1).index_mut(11) = x12;
1234  *IndexConst(&mut out1).index_mut(12) = x13;
1235  *IndexConst(&mut out1).index_mut(13) = x14;
1236  *IndexConst(&mut out1).index_mut(14) = x15;
1237  *IndexConst(&mut out1).index_mut(15) = x16;
1238}
1239
1240/// The function fiat_p448_selectznz is a multi-limb conditional select.
1241///
1242/// Postconditions:
1243///   out1 = (if arg1 = 0 then arg2 else arg3)
1244///
1245/// Input Bounds:
1246///   arg1: [0x0 ~> 0x1]
1247///   arg2: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]]
1248///   arg3: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]]
1249/// Output Bounds:
1250///   out1: [[0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff], [0x0 ~> 0xffffffff]]
1251#[inline]
1252pub const fn fiat_p448_selectznz(mut out1: &mut [u32; 16], arg1: fiat_p448_u1, arg2: &[u32; 16], arg3: &[u32; 16]) {
1253  let mut x1: u32 = 0;
1254  fiat_p448_cmovznz_u32(&mut x1, arg1, (*IndexConst(arg2).index(0)), (*IndexConst(arg3).index(0)));
1255  let mut x2: u32 = 0;
1256  fiat_p448_cmovznz_u32(&mut x2, arg1, (*IndexConst(arg2).index(1)), (*IndexConst(arg3).index(1)));
1257  let mut x3: u32 = 0;
1258  fiat_p448_cmovznz_u32(&mut x3, arg1, (*IndexConst(arg2).index(2)), (*IndexConst(arg3).index(2)));
1259  let mut x4: u32 = 0;
1260  fiat_p448_cmovznz_u32(&mut x4, arg1, (*IndexConst(arg2).index(3)), (*IndexConst(arg3).index(3)));
1261  let mut x5: u32 = 0;
1262  fiat_p448_cmovznz_u32(&mut x5, arg1, (*IndexConst(arg2).index(4)), (*IndexConst(arg3).index(4)));
1263  let mut x6: u32 = 0;
1264  fiat_p448_cmovznz_u32(&mut x6, arg1, (*IndexConst(arg2).index(5)), (*IndexConst(arg3).index(5)));
1265  let mut x7: u32 = 0;
1266  fiat_p448_cmovznz_u32(&mut x7, arg1, (*IndexConst(arg2).index(6)), (*IndexConst(arg3).index(6)));
1267  let mut x8: u32 = 0;
1268  fiat_p448_cmovznz_u32(&mut x8, arg1, (*IndexConst(arg2).index(7)), (*IndexConst(arg3).index(7)));
1269  let mut x9: u32 = 0;
1270  fiat_p448_cmovznz_u32(&mut x9, arg1, (*IndexConst(arg2).index(8)), (*IndexConst(arg3).index(8)));
1271  let mut x10: u32 = 0;
1272  fiat_p448_cmovznz_u32(&mut x10, arg1, (*IndexConst(arg2).index(9)), (*IndexConst(arg3).index(9)));
1273  let mut x11: u32 = 0;
1274  fiat_p448_cmovznz_u32(&mut x11, arg1, (*IndexConst(arg2).index(10)), (*IndexConst(arg3).index(10)));
1275  let mut x12: u32 = 0;
1276  fiat_p448_cmovznz_u32(&mut x12, arg1, (*IndexConst(arg2).index(11)), (*IndexConst(arg3).index(11)));
1277  let mut x13: u32 = 0;
1278  fiat_p448_cmovznz_u32(&mut x13, arg1, (*IndexConst(arg2).index(12)), (*IndexConst(arg3).index(12)));
1279  let mut x14: u32 = 0;
1280  fiat_p448_cmovznz_u32(&mut x14, arg1, (*IndexConst(arg2).index(13)), (*IndexConst(arg3).index(13)));
1281  let mut x15: u32 = 0;
1282  fiat_p448_cmovznz_u32(&mut x15, arg1, (*IndexConst(arg2).index(14)), (*IndexConst(arg3).index(14)));
1283  let mut x16: u32 = 0;
1284  fiat_p448_cmovznz_u32(&mut x16, arg1, (*IndexConst(arg2).index(15)), (*IndexConst(arg3).index(15)));
1285  *IndexConst(&mut out1).index_mut(0) = x1;
1286  *IndexConst(&mut out1).index_mut(1) = x2;
1287  *IndexConst(&mut out1).index_mut(2) = x3;
1288  *IndexConst(&mut out1).index_mut(3) = x4;
1289  *IndexConst(&mut out1).index_mut(4) = x5;
1290  *IndexConst(&mut out1).index_mut(5) = x6;
1291  *IndexConst(&mut out1).index_mut(6) = x7;
1292  *IndexConst(&mut out1).index_mut(7) = x8;
1293  *IndexConst(&mut out1).index_mut(8) = x9;
1294  *IndexConst(&mut out1).index_mut(9) = x10;
1295  *IndexConst(&mut out1).index_mut(10) = x11;
1296  *IndexConst(&mut out1).index_mut(11) = x12;
1297  *IndexConst(&mut out1).index_mut(12) = x13;
1298  *IndexConst(&mut out1).index_mut(13) = x14;
1299  *IndexConst(&mut out1).index_mut(14) = x15;
1300  *IndexConst(&mut out1).index_mut(15) = x16;
1301}
1302
1303/// The function fiat_p448_to_bytes serializes a field element to bytes in little-endian order.
1304///
1305/// Postconditions:
1306///   out1 = map (λ x, ⌊((eval arg1 mod m) mod 2^(8 * (x + 1))) / 2^(8 * x)⌋) [0..55]
1307///
1308/// Output Bounds:
1309///   out1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]]
1310#[inline]
1311pub const fn fiat_p448_to_bytes(mut out1: &mut [u8; 56], arg1: &fiat_p448_tight_field_element) {
1312  let mut x1: u32 = 0;
1313  let mut x2: fiat_p448_u1 = 0;
1314  fiat_p448_subborrowx_u28(&mut x1, &mut x2, 0x0, (*IndexConst(arg1).index(0)), 0xfffffff);
1315  let mut x3: u32 = 0;
1316  let mut x4: fiat_p448_u1 = 0;
1317  fiat_p448_subborrowx_u28(&mut x3, &mut x4, x2, (*IndexConst(arg1).index(1)), 0xfffffff);
1318  let mut x5: u32 = 0;
1319  let mut x6: fiat_p448_u1 = 0;
1320  fiat_p448_subborrowx_u28(&mut x5, &mut x6, x4, (*IndexConst(arg1).index(2)), 0xfffffff);
1321  let mut x7: u32 = 0;
1322  let mut x8: fiat_p448_u1 = 0;
1323  fiat_p448_subborrowx_u28(&mut x7, &mut x8, x6, (*IndexConst(arg1).index(3)), 0xfffffff);
1324  let mut x9: u32 = 0;
1325  let mut x10: fiat_p448_u1 = 0;
1326  fiat_p448_subborrowx_u28(&mut x9, &mut x10, x8, (*IndexConst(arg1).index(4)), 0xfffffff);
1327  let mut x11: u32 = 0;
1328  let mut x12: fiat_p448_u1 = 0;
1329  fiat_p448_subborrowx_u28(&mut x11, &mut x12, x10, (*IndexConst(arg1).index(5)), 0xfffffff);
1330  let mut x13: u32 = 0;
1331  let mut x14: fiat_p448_u1 = 0;
1332  fiat_p448_subborrowx_u28(&mut x13, &mut x14, x12, (*IndexConst(arg1).index(6)), 0xfffffff);
1333  let mut x15: u32 = 0;
1334  let mut x16: fiat_p448_u1 = 0;
1335  fiat_p448_subborrowx_u28(&mut x15, &mut x16, x14, (*IndexConst(arg1).index(7)), 0xfffffff);
1336  let mut x17: u32 = 0;
1337  let mut x18: fiat_p448_u1 = 0;
1338  fiat_p448_subborrowx_u28(&mut x17, &mut x18, x16, (*IndexConst(arg1).index(8)), 0xffffffe);
1339  let mut x19: u32 = 0;
1340  let mut x20: fiat_p448_u1 = 0;
1341  fiat_p448_subborrowx_u28(&mut x19, &mut x20, x18, (*IndexConst(arg1).index(9)), 0xfffffff);
1342  let mut x21: u32 = 0;
1343  let mut x22: fiat_p448_u1 = 0;
1344  fiat_p448_subborrowx_u28(&mut x21, &mut x22, x20, (*IndexConst(arg1).index(10)), 0xfffffff);
1345  let mut x23: u32 = 0;
1346  let mut x24: fiat_p448_u1 = 0;
1347  fiat_p448_subborrowx_u28(&mut x23, &mut x24, x22, (*IndexConst(arg1).index(11)), 0xfffffff);
1348  let mut x25: u32 = 0;
1349  let mut x26: fiat_p448_u1 = 0;
1350  fiat_p448_subborrowx_u28(&mut x25, &mut x26, x24, (*IndexConst(arg1).index(12)), 0xfffffff);
1351  let mut x27: u32 = 0;
1352  let mut x28: fiat_p448_u1 = 0;
1353  fiat_p448_subborrowx_u28(&mut x27, &mut x28, x26, (*IndexConst(arg1).index(13)), 0xfffffff);
1354  let mut x29: u32 = 0;
1355  let mut x30: fiat_p448_u1 = 0;
1356  fiat_p448_subborrowx_u28(&mut x29, &mut x30, x28, (*IndexConst(arg1).index(14)), 0xfffffff);
1357  let mut x31: u32 = 0;
1358  let mut x32: fiat_p448_u1 = 0;
1359  fiat_p448_subborrowx_u28(&mut x31, &mut x32, x30, (*IndexConst(arg1).index(15)), 0xfffffff);
1360  let mut x33: u32 = 0;
1361  fiat_p448_cmovznz_u32(&mut x33, x32, (0x0 as u32), 0xffffffff);
1362  let mut x34: u32 = 0;
1363  let mut x35: fiat_p448_u1 = 0;
1364  fiat_p448_addcarryx_u28(&mut x34, &mut x35, 0x0, x1, (x33 & 0xfffffff));
1365  let mut x36: u32 = 0;
1366  let mut x37: fiat_p448_u1 = 0;
1367  fiat_p448_addcarryx_u28(&mut x36, &mut x37, x35, x3, (x33 & 0xfffffff));
1368  let mut x38: u32 = 0;
1369  let mut x39: fiat_p448_u1 = 0;
1370  fiat_p448_addcarryx_u28(&mut x38, &mut x39, x37, x5, (x33 & 0xfffffff));
1371  let mut x40: u32 = 0;
1372  let mut x41: fiat_p448_u1 = 0;
1373  fiat_p448_addcarryx_u28(&mut x40, &mut x41, x39, x7, (x33 & 0xfffffff));
1374  let mut x42: u32 = 0;
1375  let mut x43: fiat_p448_u1 = 0;
1376  fiat_p448_addcarryx_u28(&mut x42, &mut x43, x41, x9, (x33 & 0xfffffff));
1377  let mut x44: u32 = 0;
1378  let mut x45: fiat_p448_u1 = 0;
1379  fiat_p448_addcarryx_u28(&mut x44, &mut x45, x43, x11, (x33 & 0xfffffff));
1380  let mut x46: u32 = 0;
1381  let mut x47: fiat_p448_u1 = 0;
1382  fiat_p448_addcarryx_u28(&mut x46, &mut x47, x45, x13, (x33 & 0xfffffff));
1383  let mut x48: u32 = 0;
1384  let mut x49: fiat_p448_u1 = 0;
1385  fiat_p448_addcarryx_u28(&mut x48, &mut x49, x47, x15, (x33 & 0xfffffff));
1386  let mut x50: u32 = 0;
1387  let mut x51: fiat_p448_u1 = 0;
1388  fiat_p448_addcarryx_u28(&mut x50, &mut x51, x49, x17, (x33 & 0xffffffe));
1389  let mut x52: u32 = 0;
1390  let mut x53: fiat_p448_u1 = 0;
1391  fiat_p448_addcarryx_u28(&mut x52, &mut x53, x51, x19, (x33 & 0xfffffff));
1392  let mut x54: u32 = 0;
1393  let mut x55: fiat_p448_u1 = 0;
1394  fiat_p448_addcarryx_u28(&mut x54, &mut x55, x53, x21, (x33 & 0xfffffff));
1395  let mut x56: u32 = 0;
1396  let mut x57: fiat_p448_u1 = 0;
1397  fiat_p448_addcarryx_u28(&mut x56, &mut x57, x55, x23, (x33 & 0xfffffff));
1398  let mut x58: u32 = 0;
1399  let mut x59: fiat_p448_u1 = 0;
1400  fiat_p448_addcarryx_u28(&mut x58, &mut x59, x57, x25, (x33 & 0xfffffff));
1401  let mut x60: u32 = 0;
1402  let mut x61: fiat_p448_u1 = 0;
1403  fiat_p448_addcarryx_u28(&mut x60, &mut x61, x59, x27, (x33 & 0xfffffff));
1404  let mut x62: u32 = 0;
1405  let mut x63: fiat_p448_u1 = 0;
1406  fiat_p448_addcarryx_u28(&mut x62, &mut x63, x61, x29, (x33 & 0xfffffff));
1407  let mut x64: u32 = 0;
1408  let mut x65: fiat_p448_u1 = 0;
1409  fiat_p448_addcarryx_u28(&mut x64, &mut x65, x63, x31, (x33 & 0xfffffff));
1410  let x66: u32 = (x64 << 4);
1411  let x67: u32 = (x60 << 4);
1412  let x68: u32 = (x56 << 4);
1413  let x69: u32 = (x52 << 4);
1414  let x70: u32 = (x48 << 4);
1415  let x71: u32 = (x44 << 4);
1416  let x72: u32 = (x40 << 4);
1417  let x73: u32 = (x36 << 4);
1418  let x74: u8 = ((x34 & (0xff as u32)) as u8);
1419  let x75: u32 = (x34 >> 8);
1420  let x76: u8 = ((x75 & (0xff as u32)) as u8);
1421  let x77: u32 = (x75 >> 8);
1422  let x78: u8 = ((x77 & (0xff as u32)) as u8);
1423  let x79: u8 = ((x77 >> 8) as u8);
1424  let x80: u32 = (x73 + (x79 as u32));
1425  let x81: u8 = ((x80 & (0xff as u32)) as u8);
1426  let x82: u32 = (x80 >> 8);
1427  let x83: u8 = ((x82 & (0xff as u32)) as u8);
1428  let x84: u32 = (x82 >> 8);
1429  let x85: u8 = ((x84 & (0xff as u32)) as u8);
1430  let x86: u8 = ((x84 >> 8) as u8);
1431  let x87: u8 = ((x38 & (0xff as u32)) as u8);
1432  let x88: u32 = (x38 >> 8);
1433  let x89: u8 = ((x88 & (0xff as u32)) as u8);
1434  let x90: u32 = (x88 >> 8);
1435  let x91: u8 = ((x90 & (0xff as u32)) as u8);
1436  let x92: u8 = ((x90 >> 8) as u8);
1437  let x93: u32 = (x72 + (x92 as u32));
1438  let x94: u8 = ((x93 & (0xff as u32)) as u8);
1439  let x95: u32 = (x93 >> 8);
1440  let x96: u8 = ((x95 & (0xff as u32)) as u8);
1441  let x97: u32 = (x95 >> 8);
1442  let x98: u8 = ((x97 & (0xff as u32)) as u8);
1443  let x99: u8 = ((x97 >> 8) as u8);
1444  let x100: u8 = ((x42 & (0xff as u32)) as u8);
1445  let x101: u32 = (x42 >> 8);
1446  let x102: u8 = ((x101 & (0xff as u32)) as u8);
1447  let x103: u32 = (x101 >> 8);
1448  let x104: u8 = ((x103 & (0xff as u32)) as u8);
1449  let x105: u8 = ((x103 >> 8) as u8);
1450  let x106: u32 = (x71 + (x105 as u32));
1451  let x107: u8 = ((x106 & (0xff as u32)) as u8);
1452  let x108: u32 = (x106 >> 8);
1453  let x109: u8 = ((x108 & (0xff as u32)) as u8);
1454  let x110: u32 = (x108 >> 8);
1455  let x111: u8 = ((x110 & (0xff as u32)) as u8);
1456  let x112: u8 = ((x110 >> 8) as u8);
1457  let x113: u8 = ((x46 & (0xff as u32)) as u8);
1458  let x114: u32 = (x46 >> 8);
1459  let x115: u8 = ((x114 & (0xff as u32)) as u8);
1460  let x116: u32 = (x114 >> 8);
1461  let x117: u8 = ((x116 & (0xff as u32)) as u8);
1462  let x118: u8 = ((x116 >> 8) as u8);
1463  let x119: u32 = (x70 + (x118 as u32));
1464  let x120: u8 = ((x119 & (0xff as u32)) as u8);
1465  let x121: u32 = (x119 >> 8);
1466  let x122: u8 = ((x121 & (0xff as u32)) as u8);
1467  let x123: u32 = (x121 >> 8);
1468  let x124: u8 = ((x123 & (0xff as u32)) as u8);
1469  let x125: u8 = ((x123 >> 8) as u8);
1470  let x126: u8 = ((x50 & (0xff as u32)) as u8);
1471  let x127: u32 = (x50 >> 8);
1472  let x128: u8 = ((x127 & (0xff as u32)) as u8);
1473  let x129: u32 = (x127 >> 8);
1474  let x130: u8 = ((x129 & (0xff as u32)) as u8);
1475  let x131: u8 = ((x129 >> 8) as u8);
1476  let x132: u32 = (x69 + (x131 as u32));
1477  let x133: u8 = ((x132 & (0xff as u32)) as u8);
1478  let x134: u32 = (x132 >> 8);
1479  let x135: u8 = ((x134 & (0xff as u32)) as u8);
1480  let x136: u32 = (x134 >> 8);
1481  let x137: u8 = ((x136 & (0xff as u32)) as u8);
1482  let x138: u8 = ((x136 >> 8) as u8);
1483  let x139: u8 = ((x54 & (0xff as u32)) as u8);
1484  let x140: u32 = (x54 >> 8);
1485  let x141: u8 = ((x140 & (0xff as u32)) as u8);
1486  let x142: u32 = (x140 >> 8);
1487  let x143: u8 = ((x142 & (0xff as u32)) as u8);
1488  let x144: u8 = ((x142 >> 8) as u8);
1489  let x145: u32 = (x68 + (x144 as u32));
1490  let x146: u8 = ((x145 & (0xff as u32)) as u8);
1491  let x147: u32 = (x145 >> 8);
1492  let x148: u8 = ((x147 & (0xff as u32)) as u8);
1493  let x149: u32 = (x147 >> 8);
1494  let x150: u8 = ((x149 & (0xff as u32)) as u8);
1495  let x151: u8 = ((x149 >> 8) as u8);
1496  let x152: u8 = ((x58 & (0xff as u32)) as u8);
1497  let x153: u32 = (x58 >> 8);
1498  let x154: u8 = ((x153 & (0xff as u32)) as u8);
1499  let x155: u32 = (x153 >> 8);
1500  let x156: u8 = ((x155 & (0xff as u32)) as u8);
1501  let x157: u8 = ((x155 >> 8) as u8);
1502  let x158: u32 = (x67 + (x157 as u32));
1503  let x159: u8 = ((x158 & (0xff as u32)) as u8);
1504  let x160: u32 = (x158 >> 8);
1505  let x161: u8 = ((x160 & (0xff as u32)) as u8);
1506  let x162: u32 = (x160 >> 8);
1507  let x163: u8 = ((x162 & (0xff as u32)) as u8);
1508  let x164: u8 = ((x162 >> 8) as u8);
1509  let x165: u8 = ((x62 & (0xff as u32)) as u8);
1510  let x166: u32 = (x62 >> 8);
1511  let x167: u8 = ((x166 & (0xff as u32)) as u8);
1512  let x168: u32 = (x166 >> 8);
1513  let x169: u8 = ((x168 & (0xff as u32)) as u8);
1514  let x170: u8 = ((x168 >> 8) as u8);
1515  let x171: u32 = (x66 + (x170 as u32));
1516  let x172: u8 = ((x171 & (0xff as u32)) as u8);
1517  let x173: u32 = (x171 >> 8);
1518  let x174: u8 = ((x173 & (0xff as u32)) as u8);
1519  let x175: u32 = (x173 >> 8);
1520  let x176: u8 = ((x175 & (0xff as u32)) as u8);
1521  let x177: u8 = ((x175 >> 8) as u8);
1522  *IndexConst(&mut out1).index_mut(0) = x74;
1523  *IndexConst(&mut out1).index_mut(1) = x76;
1524  *IndexConst(&mut out1).index_mut(2) = x78;
1525  *IndexConst(&mut out1).index_mut(3) = x81;
1526  *IndexConst(&mut out1).index_mut(4) = x83;
1527  *IndexConst(&mut out1).index_mut(5) = x85;
1528  *IndexConst(&mut out1).index_mut(6) = x86;
1529  *IndexConst(&mut out1).index_mut(7) = x87;
1530  *IndexConst(&mut out1).index_mut(8) = x89;
1531  *IndexConst(&mut out1).index_mut(9) = x91;
1532  *IndexConst(&mut out1).index_mut(10) = x94;
1533  *IndexConst(&mut out1).index_mut(11) = x96;
1534  *IndexConst(&mut out1).index_mut(12) = x98;
1535  *IndexConst(&mut out1).index_mut(13) = x99;
1536  *IndexConst(&mut out1).index_mut(14) = x100;
1537  *IndexConst(&mut out1).index_mut(15) = x102;
1538  *IndexConst(&mut out1).index_mut(16) = x104;
1539  *IndexConst(&mut out1).index_mut(17) = x107;
1540  *IndexConst(&mut out1).index_mut(18) = x109;
1541  *IndexConst(&mut out1).index_mut(19) = x111;
1542  *IndexConst(&mut out1).index_mut(20) = x112;
1543  *IndexConst(&mut out1).index_mut(21) = x113;
1544  *IndexConst(&mut out1).index_mut(22) = x115;
1545  *IndexConst(&mut out1).index_mut(23) = x117;
1546  *IndexConst(&mut out1).index_mut(24) = x120;
1547  *IndexConst(&mut out1).index_mut(25) = x122;
1548  *IndexConst(&mut out1).index_mut(26) = x124;
1549  *IndexConst(&mut out1).index_mut(27) = x125;
1550  *IndexConst(&mut out1).index_mut(28) = x126;
1551  *IndexConst(&mut out1).index_mut(29) = x128;
1552  *IndexConst(&mut out1).index_mut(30) = x130;
1553  *IndexConst(&mut out1).index_mut(31) = x133;
1554  *IndexConst(&mut out1).index_mut(32) = x135;
1555  *IndexConst(&mut out1).index_mut(33) = x137;
1556  *IndexConst(&mut out1).index_mut(34) = x138;
1557  *IndexConst(&mut out1).index_mut(35) = x139;
1558  *IndexConst(&mut out1).index_mut(36) = x141;
1559  *IndexConst(&mut out1).index_mut(37) = x143;
1560  *IndexConst(&mut out1).index_mut(38) = x146;
1561  *IndexConst(&mut out1).index_mut(39) = x148;
1562  *IndexConst(&mut out1).index_mut(40) = x150;
1563  *IndexConst(&mut out1).index_mut(41) = x151;
1564  *IndexConst(&mut out1).index_mut(42) = x152;
1565  *IndexConst(&mut out1).index_mut(43) = x154;
1566  *IndexConst(&mut out1).index_mut(44) = x156;
1567  *IndexConst(&mut out1).index_mut(45) = x159;
1568  *IndexConst(&mut out1).index_mut(46) = x161;
1569  *IndexConst(&mut out1).index_mut(47) = x163;
1570  *IndexConst(&mut out1).index_mut(48) = x164;
1571  *IndexConst(&mut out1).index_mut(49) = x165;
1572  *IndexConst(&mut out1).index_mut(50) = x167;
1573  *IndexConst(&mut out1).index_mut(51) = x169;
1574  *IndexConst(&mut out1).index_mut(52) = x172;
1575  *IndexConst(&mut out1).index_mut(53) = x174;
1576  *IndexConst(&mut out1).index_mut(54) = x176;
1577  *IndexConst(&mut out1).index_mut(55) = x177;
1578}
1579
1580/// The function fiat_p448_from_bytes deserializes a field element from bytes in little-endian order.
1581///
1582/// Postconditions:
1583///   eval out1 mod m = bytes_eval arg1 mod m
1584///
1585/// Input Bounds:
1586///   arg1: [[0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff], [0x0 ~> 0xff]]
1587#[inline]
1588pub const fn fiat_p448_from_bytes(mut out1: &mut fiat_p448_tight_field_element, arg1: &[u8; 56]) {
1589  let x1: u32 = (((*IndexConst(arg1).index(55)) as u32) << 20);
1590  let x2: u32 = (((*IndexConst(arg1).index(54)) as u32) << 12);
1591  let x3: u32 = (((*IndexConst(arg1).index(53)) as u32) << 4);
1592  let x4: u32 = (((*IndexConst(arg1).index(52)) as u32) << 24);
1593  let x5: u32 = (((*IndexConst(arg1).index(51)) as u32) << 16);
1594  let x6: u32 = (((*IndexConst(arg1).index(50)) as u32) << 8);
1595  let x7: u8 = (*IndexConst(arg1).index(49));
1596  let x8: u32 = (((*IndexConst(arg1).index(48)) as u32) << 20);
1597  let x9: u32 = (((*IndexConst(arg1).index(47)) as u32) << 12);
1598  let x10: u32 = (((*IndexConst(arg1).index(46)) as u32) << 4);
1599  let x11: u32 = (((*IndexConst(arg1).index(45)) as u32) << 24);
1600  let x12: u32 = (((*IndexConst(arg1).index(44)) as u32) << 16);
1601  let x13: u32 = (((*IndexConst(arg1).index(43)) as u32) << 8);
1602  let x14: u8 = (*IndexConst(arg1).index(42));
1603  let x15: u32 = (((*IndexConst(arg1).index(41)) as u32) << 20);
1604  let x16: u32 = (((*IndexConst(arg1).index(40)) as u32) << 12);
1605  let x17: u32 = (((*IndexConst(arg1).index(39)) as u32) << 4);
1606  let x18: u32 = (((*IndexConst(arg1).index(38)) as u32) << 24);
1607  let x19: u32 = (((*IndexConst(arg1).index(37)) as u32) << 16);
1608  let x20: u32 = (((*IndexConst(arg1).index(36)) as u32) << 8);
1609  let x21: u8 = (*IndexConst(arg1).index(35));
1610  let x22: u32 = (((*IndexConst(arg1).index(34)) as u32) << 20);
1611  let x23: u32 = (((*IndexConst(arg1).index(33)) as u32) << 12);
1612  let x24: u32 = (((*IndexConst(arg1).index(32)) as u32) << 4);
1613  let x25: u32 = (((*IndexConst(arg1).index(31)) as u32) << 24);
1614  let x26: u32 = (((*IndexConst(arg1).index(30)) as u32) << 16);
1615  let x27: u32 = (((*IndexConst(arg1).index(29)) as u32) << 8);
1616  let x28: u8 = (*IndexConst(arg1).index(28));
1617  let x29: u32 = (((*IndexConst(arg1).index(27)) as u32) << 20);
1618  let x30: u32 = (((*IndexConst(arg1).index(26)) as u32) << 12);
1619  let x31: u32 = (((*IndexConst(arg1).index(25)) as u32) << 4);
1620  let x32: u32 = (((*IndexConst(arg1).index(24)) as u32) << 24);
1621  let x33: u32 = (((*IndexConst(arg1).index(23)) as u32) << 16);
1622  let x34: u32 = (((*IndexConst(arg1).index(22)) as u32) << 8);
1623  let x35: u8 = (*IndexConst(arg1).index(21));
1624  let x36: u32 = (((*IndexConst(arg1).index(20)) as u32) << 20);
1625  let x37: u32 = (((*IndexConst(arg1).index(19)) as u32) << 12);
1626  let x38: u32 = (((*IndexConst(arg1).index(18)) as u32) << 4);
1627  let x39: u32 = (((*IndexConst(arg1).index(17)) as u32) << 24);
1628  let x40: u32 = (((*IndexConst(arg1).index(16)) as u32) << 16);
1629  let x41: u32 = (((*IndexConst(arg1).index(15)) as u32) << 8);
1630  let x42: u8 = (*IndexConst(arg1).index(14));
1631  let x43: u32 = (((*IndexConst(arg1).index(13)) as u32) << 20);
1632  let x44: u32 = (((*IndexConst(arg1).index(12)) as u32) << 12);
1633  let x45: u32 = (((*IndexConst(arg1).index(11)) as u32) << 4);
1634  let x46: u32 = (((*IndexConst(arg1).index(10)) as u32) << 24);
1635  let x47: u32 = (((*IndexConst(arg1).index(9)) as u32) << 16);
1636  let x48: u32 = (((*IndexConst(arg1).index(8)) as u32) << 8);
1637  let x49: u8 = (*IndexConst(arg1).index(7));
1638  let x50: u32 = (((*IndexConst(arg1).index(6)) as u32) << 20);
1639  let x51: u32 = (((*IndexConst(arg1).index(5)) as u32) << 12);
1640  let x52: u32 = (((*IndexConst(arg1).index(4)) as u32) << 4);
1641  let x53: u32 = (((*IndexConst(arg1).index(3)) as u32) << 24);
1642  let x54: u32 = (((*IndexConst(arg1).index(2)) as u32) << 16);
1643  let x55: u32 = (((*IndexConst(arg1).index(1)) as u32) << 8);
1644  let x56: u8 = (*IndexConst(arg1).index(0));
1645  let x57: u32 = (x55 + (x56 as u32));
1646  let x58: u32 = (x54 + x57);
1647  let x59: u32 = (x53 + x58);
1648  let x60: u32 = (x59 & 0xfffffff);
1649  let x61: u8 = ((x59 >> 28) as u8);
1650  let x62: u32 = (x52 + (x61 as u32));
1651  let x63: u32 = (x51 + x62);
1652  let x64: u32 = (x50 + x63);
1653  let x65: u32 = (x48 + (x49 as u32));
1654  let x66: u32 = (x47 + x65);
1655  let x67: u32 = (x46 + x66);
1656  let x68: u32 = (x67 & 0xfffffff);
1657  let x69: u8 = ((x67 >> 28) as u8);
1658  let x70: u32 = (x45 + (x69 as u32));
1659  let x71: u32 = (x44 + x70);
1660  let x72: u32 = (x43 + x71);
1661  let x73: u32 = (x41 + (x42 as u32));
1662  let x74: u32 = (x40 + x73);
1663  let x75: u32 = (x39 + x74);
1664  let x76: u32 = (x75 & 0xfffffff);
1665  let x77: u8 = ((x75 >> 28) as u8);
1666  let x78: u32 = (x38 + (x77 as u32));
1667  let x79: u32 = (x37 + x78);
1668  let x80: u32 = (x36 + x79);
1669  let x81: u32 = (x34 + (x35 as u32));
1670  let x82: u32 = (x33 + x81);
1671  let x83: u32 = (x32 + x82);
1672  let x84: u32 = (x83 & 0xfffffff);
1673  let x85: u8 = ((x83 >> 28) as u8);
1674  let x86: u32 = (x31 + (x85 as u32));
1675  let x87: u32 = (x30 + x86);
1676  let x88: u32 = (x29 + x87);
1677  let x89: u32 = (x27 + (x28 as u32));
1678  let x90: u32 = (x26 + x89);
1679  let x91: u32 = (x25 + x90);
1680  let x92: u32 = (x91 & 0xfffffff);
1681  let x93: u8 = ((x91 >> 28) as u8);
1682  let x94: u32 = (x24 + (x93 as u32));
1683  let x95: u32 = (x23 + x94);
1684  let x96: u32 = (x22 + x95);
1685  let x97: u32 = (x20 + (x21 as u32));
1686  let x98: u32 = (x19 + x97);
1687  let x99: u32 = (x18 + x98);
1688  let x100: u32 = (x99 & 0xfffffff);
1689  let x101: u8 = ((x99 >> 28) as u8);
1690  let x102: u32 = (x17 + (x101 as u32));
1691  let x103: u32 = (x16 + x102);
1692  let x104: u32 = (x15 + x103);
1693  let x105: u32 = (x13 + (x14 as u32));
1694  let x106: u32 = (x12 + x105);
1695  let x107: u32 = (x11 + x106);
1696  let x108: u32 = (x107 & 0xfffffff);
1697  let x109: u8 = ((x107 >> 28) as u8);
1698  let x110: u32 = (x10 + (x109 as u32));
1699  let x111: u32 = (x9 + x110);
1700  let x112: u32 = (x8 + x111);
1701  let x113: u32 = (x6 + (x7 as u32));
1702  let x114: u32 = (x5 + x113);
1703  let x115: u32 = (x4 + x114);
1704  let x116: u32 = (x115 & 0xfffffff);
1705  let x117: u8 = ((x115 >> 28) as u8);
1706  let x118: u32 = (x3 + (x117 as u32));
1707  let x119: u32 = (x2 + x118);
1708  let x120: u32 = (x1 + x119);
1709  *IndexConst(&mut out1).index_mut(0) = x60;
1710  *IndexConst(&mut out1).index_mut(1) = x64;
1711  *IndexConst(&mut out1).index_mut(2) = x68;
1712  *IndexConst(&mut out1).index_mut(3) = x72;
1713  *IndexConst(&mut out1).index_mut(4) = x76;
1714  *IndexConst(&mut out1).index_mut(5) = x80;
1715  *IndexConst(&mut out1).index_mut(6) = x84;
1716  *IndexConst(&mut out1).index_mut(7) = x88;
1717  *IndexConst(&mut out1).index_mut(8) = x92;
1718  *IndexConst(&mut out1).index_mut(9) = x96;
1719  *IndexConst(&mut out1).index_mut(10) = x100;
1720  *IndexConst(&mut out1).index_mut(11) = x104;
1721  *IndexConst(&mut out1).index_mut(12) = x108;
1722  *IndexConst(&mut out1).index_mut(13) = x112;
1723  *IndexConst(&mut out1).index_mut(14) = x116;
1724  *IndexConst(&mut out1).index_mut(15) = x120;
1725}
1726
1727/// The function fiat_p448_relax is the identity function converting from tight field elements to loose field elements.
1728///
1729/// Postconditions:
1730///   out1 = arg1
1731///
1732#[inline]
1733pub const fn fiat_p448_relax(mut out1: &mut fiat_p448_loose_field_element, arg1: &fiat_p448_tight_field_element) {
1734  let x1: u32 = (*IndexConst(arg1).index(0));
1735  let x2: u32 = (*IndexConst(arg1).index(1));
1736  let x3: u32 = (*IndexConst(arg1).index(2));
1737  let x4: u32 = (*IndexConst(arg1).index(3));
1738  let x5: u32 = (*IndexConst(arg1).index(4));
1739  let x6: u32 = (*IndexConst(arg1).index(5));
1740  let x7: u32 = (*IndexConst(arg1).index(6));
1741  let x8: u32 = (*IndexConst(arg1).index(7));
1742  let x9: u32 = (*IndexConst(arg1).index(8));
1743  let x10: u32 = (*IndexConst(arg1).index(9));
1744  let x11: u32 = (*IndexConst(arg1).index(10));
1745  let x12: u32 = (*IndexConst(arg1).index(11));
1746  let x13: u32 = (*IndexConst(arg1).index(12));
1747  let x14: u32 = (*IndexConst(arg1).index(13));
1748  let x15: u32 = (*IndexConst(arg1).index(14));
1749  let x16: u32 = (*IndexConst(arg1).index(15));
1750  *IndexConst(&mut out1).index_mut(0) = x1;
1751  *IndexConst(&mut out1).index_mut(1) = x2;
1752  *IndexConst(&mut out1).index_mut(2) = x3;
1753  *IndexConst(&mut out1).index_mut(3) = x4;
1754  *IndexConst(&mut out1).index_mut(4) = x5;
1755  *IndexConst(&mut out1).index_mut(5) = x6;
1756  *IndexConst(&mut out1).index_mut(6) = x7;
1757  *IndexConst(&mut out1).index_mut(7) = x8;
1758  *IndexConst(&mut out1).index_mut(8) = x9;
1759  *IndexConst(&mut out1).index_mut(9) = x10;
1760  *IndexConst(&mut out1).index_mut(10) = x11;
1761  *IndexConst(&mut out1).index_mut(11) = x12;
1762  *IndexConst(&mut out1).index_mut(12) = x13;
1763  *IndexConst(&mut out1).index_mut(13) = x14;
1764  *IndexConst(&mut out1).index_mut(14) = x15;
1765  *IndexConst(&mut out1).index_mut(15) = x16;
1766}