This file is indexed.

/usr/include/givaro/givmontg32.h is in libgivaro-dev 3.7.2-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
// ==========================================================================
// Copyright(c)'1994-2009 by The Givaro group
// This file is part of Givaro.
// Givaro is governed by the CeCILL-B license under French law
// and abiding by the rules of distribution of free software.
// see the COPYRIGHT file for more details.
// author: JG Dumas (from P. Zimmermann's Montgomery implementation)
// $Id: givmontg32.h,v 1.15 2011-02-04 14:11:46 jgdumas Exp $
// ==========================================================================

/*! @file givmontg32.h
 * @ingroup zpz
 * @brief NO DOC
 */

#ifndef __GIVARO_montg32_H
#define __GIVARO_montg32_H

#include "givaro/givbasictype.h"
#include "givaro/giverror.h"
#include "givaro/giv_randiter.h"
#include <math.h>



#define B32 65536UL
#define MASK32 65535UL
#define HALF_BITS32 16

namespace Givaro {

	template<class TYPE> class Montgomery;


	/*! @brief This class implements the standard arithmetic with Modulo Elements.
	 *   Reduction is made through Montgomery's reduction.
	 *   Representation of a is by storing (aB).
	 *   - We must have p>2
	 *   - We must have \f$(p-1)^2 + p(B-1) < B^2 \f$, i.e. \f$2<p \leq 40504\f$ for \f$B=2^16\f$.
	 */
	template<>
	class Montgomery<Std32> {
	public:
		// ----- Exported Types and constantes
		typedef uint32_t Residu_t;                    // - type to store residue
		enum { size_rep = sizeof(Residu_t) };      // - size of the storage type
		// ----- Representation of Element of the domain Montgomery
		typedef uint32_t Rep;
		typedef uint32_t Element;

		// ----- Constructor
		Montgomery() : _p(0UL), _dp(0.0), zero(0UL), one(1UL), mOne(_p-one) {}

		Montgomery( Residu_t p, int = 1) :
			_p(  (Residu_t)  p),
			_Bp( (Residu_t)  B32%p),
			_B2p((Residu_t)  (_Bp<<HALF_BITS32) % p),
			_B3p((Residu_t)  (_B2p<<HALF_BITS32) % p),
			_nim((Residu_t)  -Montgomery<Std32>::invext((int32_t)_p,B32) ),
			_dp( (double)    p),
			zero((Residu_t)  0UL),
			one( (Residu_t)  redcsal( _B2p ) ),
			mOne( _p - one )
		{}

		Montgomery( const Montgomery<Std32>& F)
		: _p(F._p), _Bp(F._Bp), _B2p( F._B2p), _B3p( F._B3p), _nim(F._nim),_dp(F._dp), zero(0UL), one(F.one),mOne(F.mOne)
		{ }


		int operator==( const Montgomery<Std32>& BC) const
		{ return _p == BC._p;}
		int operator!=( const Montgomery<Std32>& BC) const
		{ return _p != BC._p;}

		Montgomery<Std32>& operator=( const Montgomery<Std32>& F)
		{
			this->_p = F._p;
			this->_Bp = F._Bp;
			this->_B2p = F._B2p;
			this->_B3p = F._B3p;
			this->_nim = F._nim;
			this->_dp = F._dp;
			assign(const_cast<Element&>(one),F.one);
			assign(const_cast<Element&>(mOne),F.mOne);
			assign(const_cast<Element&>(zero),F.zero);
			return *this;
		}

		// ----- Access to the modulus
		Residu_t residu() const;
		Residu_t size() const
		{return _p;}
		Rep access( const Rep a ) const
		{ return a; }
		Residu_t characteristic() const
		{ return _p; }
		Residu_t characteristic(Residu_t p) const
		{ return p=_p; }
		Residu_t cardinality() const
		{ return _p; }


		// ----- Access to the modulus
		Rep& init( Rep& a ) const;
		Rep& init( Rep& r, const long a) const ;
		Rep& init( Rep& r, const unsigned long a) const ;
		Rep& init( Rep& a, const int i) const ;
		Rep& init( Rep& a, const unsigned int i) const ;
		Rep& init ( Rep& r, const Integer& residu ) const ;

		// Initialisation from double ( added for FFLAS usage) (C Pernet)
		Rep& init( Rep& a, const double i) const;
		Rep& init( Rep& a, const float i) const;

		unsigned long int& convert(unsigned long int& r, const Rep a) const
		{
			uint32_t ur;
			return r = (unsigned long)redc(ur,a);}

			uint32_t& convert(uint32_t& r, const Rep a) const
			{
				unsigned long ur;
				return r = (uint32_t)convert(ur, a);
			}

			int32_t& convert(int32_t& r, const Rep a) const
			{
				unsigned long ur;
				return r = (int32_t)convert(ur, a);
			}

			long int& convert(long int& r, const Rep a) const
			{
				unsigned long ur;
				return r = (long int)convert(ur, a);
			}

			Integer& convert(Integer& i, const Rep a) const
			{
				unsigned long ur;
				return i = (Integer)convert(ur, a);
			}

			// Conversion to double ( added for FFLAS usage) (C Pernet)
			float& convert(float& r, const Rep a ) const
			{
				unsigned long ur;
				return r = (float)convert(ur, a); }
				double& convert(double& r, const Rep a ) const
				{
					unsigned long ur;
					return r = (double)convert(ur, a); }

					// ----- Misc methods
					int isZero( const Rep a ) const;
					int isOne ( const Rep a ) const;
					size_t length ( const Rep a ) const;

					// ----- Equality between two Elements
					int areEqual(const  Rep& a, const Rep& b) const
					{
						return a==b;
					}

					// ----- Operations with reduction: r <- a op b mod p, r <- op a mod p
					Rep& mul (Rep& r, const Rep a, const Rep b) const;
					Rep& div (Rep& r, const Rep a, const Rep b) const;
					Rep& add (Rep& r, const Rep a, const Rep b) const;
					Rep& sub (Rep& r, const Rep a, const Rep b) const;
					Rep& neg (Rep& r, const Rep a) const;
					Rep& inv (Rep& r, const Rep a) const;

					Rep& mulin (Rep& r, const Rep a) const;
					Rep& divin (Rep& r, const Rep a) const;
					Rep& addin (Rep& r, const Rep a) const;
					Rep& subin (Rep& r, const Rep a) const;
					Rep& negin (Rep& r) const;
					Rep& invin (Rep& r) const;

					// -- axpy: r <- a * x + y mod p
					Rep& axpy  (Rep& r, const Rep a, const Rep b, const Rep c) const;
					// -- axpyin: r <- r + a * x mod p
					Rep& axpyin(Rep& r, const Rep a, const Rep b) const;
					// -- axmy: r <- a * x - y mod p
					Rep& axmy  (Rep& r, const Rep a, const Rep b, const Rep c) const;
					// -- axmyin: r <- a * x - r  mod p
					Rep& axmyin(Rep& r, const Rep a, const Rep b) const;
					// -- maxpy: r <- c - a * b mod p
					Rep& maxpy  (Rep& r, const Rep a, const Rep b, const Rep c) const;
					// -- maxpyin: r <- r - a * x mod p
					Rep& maxpyin(Rep& r, const Rep a, const Rep b) const;
					// -- Misc: r <- a mod p
					Rep& assign ( Rep& r, const Rep a) const;

					// ----- random generators
					template< class RandIter > Rep& random(RandIter&, Rep& r) const ;
					template< class RandIter > Rep& random(RandIter&, Rep& r, long s) const ;
					template< class RandIter > Rep& random(RandIter&, Rep& r, const Rep& b) const ;
					template< class RandIter > Rep& nonzerorandom(RandIter&, Rep& r) const ;
					template< class RandIter > Rep& nonzerorandom(RandIter&, Rep& r, long s) const ;
					template< class RandIter > Rep& nonzerorandom(RandIter&, Rep& r, const Rep& b) const ;

					typedef GIV_randIter< Montgomery<Std32> , Rep > randIter;

					// --- IO methods
					std::istream& read ( std::istream& s );
					std::ostream& write( std::ostream& s ) const;
					std::istream& read ( std::istream& s, Rep& a ) const;
					std::ostream& write( std::ostream& s, const Rep a ) const;

	protected:
					// -- based on modular inverse, d = a*u + b*v
					//   static const int32_t gcdext ( int32_t& u, int32_t& v, const int32_t a, const int32_t b );
					int32_t& gcdext (int32_t& d, int32_t& u, int32_t& v, const int32_t a, const int32_t b ) const;
					int32_t& invext (int32_t& u, const int32_t a, const int32_t b ) const;
					int32_t invext(const int32_t a, const int32_t b ) const;



					Element& redc(Element&, const Element) const ;
					Element redcal(const Element) const;
					Element redcsal(const Element) const;
					Element& redcin(Element&) const;
					Element& redcs(Element&, const Element) const;
					Element& redcsin(Element&) const;


	protected:
					// -- data representation of the domain:
					Residu_t _p;
					Residu_t _Bp;
					Residu_t _B2p;
					Residu_t _B3p;
					Residu_t _nim;
					double _dp;


					static void Init();
					static void End();

	public:
					// ----- Constantes
					const Rep zero;
					const Rep one;
					const Rep mOne;
	};


} // namespace Givaro

#include "givaro/givmontg32.inl"

#endif //  __GIVARO_montg32_H

// vim:sts=8:sw=8:ts=8:noet:sr:cino=>s,f0,{0,g0,(0,\:0,t0,+0,=s