Add TNG writing and reading support
[alexxy/gromacs.git] / src / external / tng_io / include / compression / widemuldiv.h
1 /* This code is part of the tng compression routines.
2  *
3  * Written by Daniel Spangberg
4  * Copyright (c) 2010, 2013, The GROMACS development team.
5  *
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the Revised BSD License.
9  */
10
11
12 #ifndef WIDEMULDIV_H
13 #define WIDEMULDIV_H
14
15 /* Multiply two 32 bit unsigned integers returning a 64 bit unsigned value (in two integers) */
16 void Ptngc_widemul(unsigned int i1, unsigned int i2, unsigned int *ohi, unsigned int *olo);
17
18 /* Divide a 64 bit unsigned value in hi:lo with the 32 bit value i and
19    return the result in result and the remainder in remainder */
20 void Ptngc_widediv(unsigned int hi, unsigned int lo, unsigned int i, unsigned int *result, unsigned int *remainder);
21
22 /* Add a unsigned int to a largeint. */
23 void Ptngc_largeint_add(unsigned int v1, unsigned int *largeint, int n);
24
25 /* Multiply v1 with largeint_in and return result in largeint_out */
26 void Ptngc_largeint_mul(unsigned int v1, unsigned int *largeint_in, unsigned int *largeint_out, int n);
27
28 /* Return the remainder from dividing largeint_in with v1. Result of the division is returned in largeint_out */
29 unsigned int Ptngc_largeint_div(unsigned int v1, unsigned int *largeint_in, unsigned int *largeint_out, int n);
30
31 #endif