flint-sys 0.9.0

Bindings to the FLINT C library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
/* automatically generated by rust-bindgen 0.70.1 */

use crate::deps::*;
use crate::flint::*;
use crate::gr_types::*;


pub const MPN_MOD_MIN_LIMBS: u32 = 2;
pub const MPN_MOD_MAX_LIMBS: u32 = 16;
#[repr(C)]
pub struct _mpn_mod_ctx_struct {
    pub nlimbs: slong,
    pub d: [ulong; 16usize],
    pub dinv: [ulong; 16usize],
    pub dnormed: [ulong; 16usize],
    pub norm: flint_bitcnt_t,
    pub is_prime: truth_t,
}
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _mpn_mod_ctx_struct"][::std::mem::size_of::<_mpn_mod_ctx_struct>() - 408usize];
    ["Alignment of _mpn_mod_ctx_struct"][::std::mem::align_of::<_mpn_mod_ctx_struct>() - 8usize];
    ["Offset of field: _mpn_mod_ctx_struct::nlimbs"]
        [::std::mem::offset_of!(_mpn_mod_ctx_struct, nlimbs) - 0usize];
    ["Offset of field: _mpn_mod_ctx_struct::d"]
        [::std::mem::offset_of!(_mpn_mod_ctx_struct, d) - 8usize];
    ["Offset of field: _mpn_mod_ctx_struct::dinv"]
        [::std::mem::offset_of!(_mpn_mod_ctx_struct, dinv) - 136usize];
    ["Offset of field: _mpn_mod_ctx_struct::dnormed"]
        [::std::mem::offset_of!(_mpn_mod_ctx_struct, dnormed) - 264usize];
    ["Offset of field: _mpn_mod_ctx_struct::norm"]
        [::std::mem::offset_of!(_mpn_mod_ctx_struct, norm) - 392usize];
    ["Offset of field: _mpn_mod_ctx_struct::is_prime"]
        [::std::mem::offset_of!(_mpn_mod_ctx_struct, is_prime) - 400usize];
};
impl Default for _mpn_mod_ctx_struct {
    fn default() -> Self {
        let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
        unsafe {
            ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
            s.assume_init()
        }
    }
}
extern "C" {
    #[link_name = "mpn_mod_ctx_set_is_field__extern"]
    pub fn mpn_mod_ctx_set_is_field(ctx: *mut gr_ctx_struct, is_field: truth_t) -> libc::c_int;
    pub fn gr_ctx_init_mpn_mod(ctx: *mut gr_ctx_struct, n: *const fmpz) -> libc::c_int;
    pub fn _gr_ctx_init_mpn_mod(
        ctx: *mut gr_ctx_struct,
        n: nn_srcptr,
        nlimbs: slong,
    ) -> libc::c_int;
    pub fn gr_ctx_init_mpn_mod_randtest(ctx: *mut gr_ctx_struct, state: *mut flint_rand_struct);
    pub fn mpn_mod_ctx_write(out: *mut gr_stream_struct, ctx: *mut gr_ctx_struct) -> libc::c_int;
    pub fn mpn_mod_ctx_clear(ctx: *mut gr_ctx_struct);
    #[link_name = "mpn_mod_ctx_is_field__extern"]
    pub fn mpn_mod_ctx_is_field(ctx: *mut gr_ctx_struct) -> truth_t;
    #[link_name = "mpn_mod_init__extern"]
    pub fn mpn_mod_init(x: nn_ptr, ctx: *mut gr_ctx_struct);
    #[link_name = "mpn_mod_clear__extern"]
    pub fn mpn_mod_clear(UNUSED_x: nn_ptr, UNUSED_ctx: *mut gr_ctx_struct);
    #[link_name = "mpn_mod_swap__extern"]
    pub fn mpn_mod_swap(x: nn_ptr, y: nn_ptr, ctx: *mut gr_ctx_struct);
    #[link_name = "mpn_mod_set__extern"]
    pub fn mpn_mod_set(res: nn_ptr, x: nn_srcptr, ctx: *mut gr_ctx_struct) -> libc::c_int;
    #[link_name = "mpn_mod_zero__extern"]
    pub fn mpn_mod_zero(res: nn_ptr, ctx: *mut gr_ctx_struct) -> libc::c_int;
    #[link_name = "mpn_mod_one__extern"]
    pub fn mpn_mod_one(res: nn_ptr, ctx: *mut gr_ctx_struct) -> libc::c_int;
    pub fn mpn_mod_set_ui(res: nn_ptr, x: ulong, ctx: *mut gr_ctx_struct) -> libc::c_int;
    pub fn mpn_mod_set_si(res: nn_ptr, x: slong, ctx: *mut gr_ctx_struct) -> libc::c_int;
    pub fn mpn_mod_neg_one(res: nn_ptr, ctx: *mut gr_ctx_struct) -> libc::c_int;
    pub fn mpn_mod_set_mpn(
        res: nn_ptr,
        x: nn_srcptr,
        xn: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_set_fmpz(res: nn_ptr, x: *const fmpz, ctx: *mut gr_ctx_struct) -> libc::c_int;
    pub fn mpn_mod_set_other(
        res: nn_ptr,
        v: gr_ptr,
        v_ctx: *mut gr_ctx_struct,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_randtest(
        res: nn_ptr,
        state: *mut flint_rand_struct,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_write(
        out: *mut gr_stream_struct,
        x: nn_srcptr,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_get_fmpz(res: *mut fmpz, x: nn_srcptr, ctx: *mut gr_ctx_struct) -> libc::c_int;
    #[link_name = "mpn_mod_is_zero__extern"]
    pub fn mpn_mod_is_zero(x: nn_srcptr, ctx: *mut gr_ctx_struct) -> truth_t;
    #[link_name = "mpn_mod_is_one__extern"]
    pub fn mpn_mod_is_one(x: nn_srcptr, ctx: *mut gr_ctx_struct) -> truth_t;
    pub fn mpn_mod_is_neg_one(x: gr_srcptr, ctx: *mut gr_ctx_struct) -> truth_t;
    #[link_name = "mpn_mod_equal__extern"]
    pub fn mpn_mod_equal(x: nn_srcptr, y: nn_srcptr, ctx: *mut gr_ctx_struct) -> truth_t;
    pub fn mpn_mod_neg(res: nn_ptr, x: nn_srcptr, ctx: *mut gr_ctx_struct) -> libc::c_int;
    pub fn mpn_mod_add(
        res: nn_ptr,
        x: nn_srcptr,
        y: nn_srcptr,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_sub(
        res: nn_ptr,
        x: nn_srcptr,
        y: nn_srcptr,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_add_ui(
        res: nn_ptr,
        x: nn_srcptr,
        y: ulong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_sub_ui(
        res: nn_ptr,
        x: nn_srcptr,
        y: ulong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_add_si(
        res: nn_ptr,
        x: nn_srcptr,
        y: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_sub_si(
        res: nn_ptr,
        x: nn_srcptr,
        y: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_add_fmpz(
        res: nn_ptr,
        x: nn_srcptr,
        y: *const fmpz,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_sub_fmpz(
        res: nn_ptr,
        x: nn_srcptr,
        y: *const fmpz,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_mul(
        res: nn_ptr,
        x: nn_srcptr,
        y: nn_srcptr,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_mul_ui(
        res: nn_ptr,
        x: nn_srcptr,
        y: ulong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_mul_si(
        res: nn_ptr,
        x: nn_srcptr,
        y: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_mul_fmpz(
        res: nn_ptr,
        x: nn_srcptr,
        y: *const fmpz,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_addmul(
        res: nn_ptr,
        x: nn_srcptr,
        y: nn_srcptr,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_addmul_ui(
        res: nn_ptr,
        x: nn_srcptr,
        y: ulong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_addmul_si(
        res: nn_ptr,
        x: nn_srcptr,
        y: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_addmul_fmpz(
        res: nn_ptr,
        x: nn_srcptr,
        y: *const fmpz,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_submul(
        res: nn_ptr,
        x: nn_srcptr,
        y: nn_srcptr,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_submul_ui(
        res: nn_ptr,
        x: nn_srcptr,
        y: ulong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_submul_si(
        res: nn_ptr,
        x: nn_srcptr,
        y: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_submul_fmpz(
        res: nn_ptr,
        x: nn_srcptr,
        y: *const fmpz,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    #[link_name = "mpn_mod_sqr__extern"]
    pub fn mpn_mod_sqr(res: nn_ptr, x: nn_srcptr, ctx: *mut gr_ctx_struct) -> libc::c_int;
    pub fn mpn_mod_fmma(
        res: nn_ptr,
        x1: nn_srcptr,
        y1: nn_srcptr,
        x2: nn_srcptr,
        y2: nn_srcptr,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_inv(res: nn_ptr, x: nn_srcptr, ctx: *mut gr_ctx_struct) -> libc::c_int;
    pub fn mpn_mod_div(
        res: nn_ptr,
        x: nn_srcptr,
        y: nn_srcptr,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_vec_zero(res: nn_ptr, len: slong, ctx: *mut gr_ctx_struct) -> libc::c_int;
    pub fn _mpn_mod_vec_clear(
        UNUSED_res: nn_ptr,
        UNUSED_len: slong,
        UNUSED_ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_vec_set(
        res: nn_ptr,
        x: nn_srcptr,
        len: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_vec_swap(vec1: nn_ptr, vec2: nn_ptr, len: slong, ctx: *mut gr_ctx_struct);
    pub fn _mpn_mod_vec_neg(
        res: nn_ptr,
        x: nn_srcptr,
        len: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_vec_add(
        res: nn_ptr,
        x: nn_srcptr,
        y: nn_srcptr,
        len: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_vec_sub(
        res: nn_ptr,
        x: nn_srcptr,
        y: nn_srcptr,
        len: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_vec_mul(
        res: nn_ptr,
        x: nn_srcptr,
        y: nn_srcptr,
        len: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_vec_mul_scalar(
        res: nn_ptr,
        x: nn_srcptr,
        len: slong,
        y: nn_srcptr,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_scalar_mul_vec(
        res: nn_ptr,
        y: nn_srcptr,
        x: nn_srcptr,
        len: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_vec_addmul_scalar(
        res: nn_ptr,
        x: nn_srcptr,
        len: slong,
        y: nn_srcptr,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_vec_submul_scalar(
        res: nn_ptr,
        x: nn_srcptr,
        len: slong,
        y: nn_srcptr,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_vec_dot(
        res: nn_ptr,
        initial: nn_srcptr,
        subtract: libc::c_int,
        vec1: nn_srcptr,
        vec2: nn_srcptr,
        len: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_vec_dot_rev(
        res: nn_ptr,
        initial: nn_srcptr,
        subtract: libc::c_int,
        vec1: nn_srcptr,
        vec2: nn_srcptr,
        len: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_mat_mul_waksman(
        C: *mut gr_mat_struct,
        A: *const gr_mat_struct,
        B: *const gr_mat_struct,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_mat_mul_multi_mod(
        C: *mut gr_mat_struct,
        A: *const gr_mat_struct,
        B: *const gr_mat_struct,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_mat_mul(
        C: *mut gr_mat_struct,
        A: *const gr_mat_struct,
        B: *const gr_mat_struct,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_mat_nonsingular_solve_tril(
        X: *mut gr_mat_struct,
        L: *const gr_mat_struct,
        B: *const gr_mat_struct,
        unit: libc::c_int,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_mat_nonsingular_solve_triu(
        X: *mut gr_mat_struct,
        U: *const gr_mat_struct,
        B: *const gr_mat_struct,
        unit: libc::c_int,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_mat_lu_classical_delayed(
        res_rank: *mut slong,
        P: *mut slong,
        A: *mut gr_mat_struct,
        A_in: *const gr_mat_struct,
        rank_check: libc::c_int,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_mat_lu(
        rank: *mut slong,
        P: *mut slong,
        LU: *mut gr_mat_struct,
        A: *const gr_mat_struct,
        rank_check: libc::c_int,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_mat_det(
        res: nn_ptr,
        A: *const gr_mat_struct,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_mat_charpoly(
        res: nn_ptr,
        mat: *const gr_mat_struct,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn mpn_mod_mat_reduce_row(
        column: *mut slong,
        A: *mut gr_mat_struct,
        P: *mut slong,
        L: *mut slong,
        m: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_poly_mulmid_classical(
        res: nn_ptr,
        poly1: nn_srcptr,
        len1: slong,
        poly2: nn_srcptr,
        len2: slong,
        nlo: slong,
        nhi: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_poly_mulmid_karatsuba(
        res: nn_ptr,
        poly1: nn_srcptr,
        len1: slong,
        poly2: nn_srcptr,
        len2: slong,
        nlo: slong,
        nhi: slong,
        cutoff: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_poly_mulmid_KS(
        res: nn_ptr,
        poly1: nn_srcptr,
        len1: slong,
        poly2: nn_srcptr,
        len2: slong,
        nlo: slong,
        nhi: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_poly_mulmid_fft_small(
        res: nn_ptr,
        poly1: nn_srcptr,
        len1: slong,
        poly2: nn_srcptr,
        len2: slong,
        nlo: slong,
        nhi: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_poly_mulmid(
        res: nn_ptr,
        poly1: nn_srcptr,
        len1: slong,
        poly2: nn_srcptr,
        len2: slong,
        nlo: slong,
        nhi: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_poly_mullow_classical(
        res: nn_ptr,
        poly1: nn_srcptr,
        len1: slong,
        poly2: nn_srcptr,
        len2: slong,
        len: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_poly_mullow_karatsuba(
        res: nn_ptr,
        poly1: nn_srcptr,
        len1: slong,
        poly2: nn_srcptr,
        len2: slong,
        len: slong,
        cutoff: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_poly_mullow_KS(
        res: nn_ptr,
        poly1: nn_srcptr,
        len1: slong,
        poly2: nn_srcptr,
        len2: slong,
        len: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_poly_mullow_fft_small(
        res: nn_ptr,
        poly1: nn_srcptr,
        len1: slong,
        poly2: nn_srcptr,
        len2: slong,
        len: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_poly_mullow(
        res: nn_ptr,
        poly1: nn_srcptr,
        len1: slong,
        poly2: nn_srcptr,
        len2: slong,
        len: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_poly_inv_series(
        Q: nn_ptr,
        B: nn_srcptr,
        lenB: slong,
        len: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_poly_div_series(
        Q: nn_ptr,
        A: nn_srcptr,
        lenA: slong,
        B: nn_srcptr,
        lenB: slong,
        len: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_poly_divrem_q1_preinv1_fmma(
        Q: nn_ptr,
        R: nn_ptr,
        A: nn_srcptr,
        lenA: slong,
        B: nn_srcptr,
        lenB: slong,
        invL: nn_srcptr,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_poly_divrem_q1_preinv1_fmma_precond(
        Q: nn_ptr,
        R: nn_ptr,
        A: nn_srcptr,
        lenA: slong,
        B: nn_srcptr,
        lenB: slong,
        invL: nn_srcptr,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_poly_divrem_q1_preinv1_karatsuba_precond(
        Q: nn_ptr,
        R: nn_ptr,
        A: nn_srcptr,
        lenA: slong,
        B: nn_srcptr,
        lenB: slong,
        invL: nn_srcptr,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_poly_divrem_q1_preinv1(
        Q: nn_ptr,
        R: nn_ptr,
        A: nn_srcptr,
        lenA: slong,
        B: nn_srcptr,
        lenB: slong,
        invL: nn_srcptr,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_poly_divrem_basecase_preinv1(
        Q: nn_ptr,
        R: nn_ptr,
        A: nn_srcptr,
        lenA: slong,
        B: nn_srcptr,
        lenB: slong,
        invL: nn_srcptr,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_poly_divrem_basecase(
        Q: nn_ptr,
        R: nn_ptr,
        A: nn_srcptr,
        lenA: slong,
        B: nn_srcptr,
        lenB: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_poly_divrem(
        Q: nn_ptr,
        R: nn_ptr,
        A: nn_srcptr,
        lenA: slong,
        B: nn_srcptr,
        lenB: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_poly_div(
        Q: nn_ptr,
        A: nn_srcptr,
        lenA: slong,
        B: nn_srcptr,
        lenB: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_poly_gcd(
        G: nn_ptr,
        lenG: *mut slong,
        A: nn_srcptr,
        lenA: slong,
        B: nn_srcptr,
        lenB: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
    pub fn _mpn_mod_poly_xgcd(
        lenG: *mut slong,
        G: nn_ptr,
        S: nn_ptr,
        T: nn_ptr,
        A: nn_srcptr,
        lenA: slong,
        B: nn_srcptr,
        lenB: slong,
        ctx: *mut gr_ctx_struct,
    ) -> libc::c_int;
}