This file is indexed.

/usr/include/ncl/nxsallocatematrix.h is in libncl-dev 2.1.18+dfsg-2.

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
//	Copyright (C) 2008 Mark Holder
//
//	This file is part of NCL (Nexus Class Library) version 2.1
//
//	NCL is free software; you can redistribute it and/or modify
//	it under the terms of the GNU General Public License as published by
//	the Free Software Foundation; either version 2 of the License, or
//	(at your option) any later version.
//
//	NCL is distributed in the hope that it will be useful,
//	but WITHOUT ANY WARRANTY; without even the implied warranty of
//	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
//	GNU General Public License for more details.
//
//	You should have received a copy of the GNU General Public License
//	along with NCL; if not, write to the Free Software Foundation, Inc.,
//	59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

// This code is based on code developed by Mark Holder for the CIPRES project

#if !defined (NXS_ALLOCATE_MATRIX_H)
# define NXS_ALLOCATE_MATRIX_H

#include "ncl/nxsdefs.h"

template<typename T>
T *** NewThreeDArray(unsigned f , unsigned s , unsigned t);
template<typename T>
T ** NewTwoDArray(unsigned f , unsigned s);
template<typename T>
void DeleteThreeDArray(T ***& ptr);
template<typename T>
void DeleteTwoDArray(T **& ptr);

/*!
 Allocates a three dimensional array of doubles as one contiguous block of memory
 the dimensions are f two dimensional arrays that are s by t.

	The pointer should be freed by a call to DeleteThreeDArray

 the array is set up so that
 for(i = 0 ; i < f ; i++)
	for (j = 0 ; j < s ; j++)
		for (k = 0 ; k < t; k++)
			array[i][j][k];

 would be the same order of access as:

	T *ptr = **array;
	for (i = 0 ; i < f*s*t ; i++)
		*ptr++;

*/
template<typename T> T *** NewThreeDArray(unsigned f , unsigned s , unsigned t)
	{
	NCL_ASSERT(f > 0 && s > 0 && t> 0);
	const unsigned twoDStride = s*t;
	T ***ptr;
	ptr = new T **[f];
	ptr[0] = new T *[f * s];
	ptr[0][0] = new T[f * s * t];
	for (unsigned sIt = 1 ; sIt < s ; sIt++)
		ptr[0][sIt] = ptr[0][sIt-1] + t ;
	for (unsigned fIt = 1 ; fIt < f ; fIt ++)
		{
		ptr[fIt] = ptr[fIt -1] +  s ;
		ptr[fIt][0] = ptr[fIt -1][0] + twoDStride;
		for (unsigned sIt = 1 ; sIt < s ; sIt++)
			ptr[fIt][sIt] = ptr[fIt][sIt-1] + t ;
		}
	return ptr;
	}

/*!
 Delete a Three Dimensional Array that has been allocated using NewThreeDArray and sets the pointer to NULL
*/
template<typename T> void DeleteThreeDArray	(T *** & ptr)
	{
	if (ptr)
		{
		if (*ptr)
			{
			delete [] **ptr;
			delete [] * ptr;
			}
		delete [] ptr;
		}
	ptr = NULL;
	}

/*!
 	Allocates a two dimensional array of doubles as one contiguous block of memory
 	the dimensions are f by s.

	The pointer should be freed by a call to DeleteTwoDArray

 	The array is set up so that:

	for(i = 0 ; i < f ; i++)
		for (j = 0 ; j < s ; j++)
			array[i][j];

	would be the same order of access as:

  	T *ptr = **array;
	for (i = 0 ; i < f*s*t ; i++)
		*ptr++;
*/
template<typename T> T **NewTwoDArray(unsigned f , unsigned s)
	{
	NCL_ASSERT(f > 0 && s > 0);
	T **ptr;
	ptr = new T *[f];
	*ptr = new T [f * s];
	for (unsigned fIt = 1 ; fIt < f ; fIt ++)
		ptr[fIt] = ptr[fIt -1] +  s ;
	return ptr;
	}

/*!
 Delete a 2 Dimensional Array NewTwoDArray and set the ptr to NULL
*/
template<typename T> inline void DeleteTwoDArray	(T ** & ptr)
	{
	if (ptr)
		{
		delete [] * ptr;
		delete [] ptr;
		ptr = NULL;
		}
	}


template<typename T>
class ScopedThreeDMatrix
	{
	public:
		T *** ptr;

		/*! returns an alias to the memory, but does not "surrender" the
			ownership of the pointer to the caller
		*/
		T *** GetAlias() const
			{
			return ptr;
			}
		/*! Creates a new matrix.  See NewThreeDArray() for argument  explanation */
		ScopedThreeDMatrix(unsigned f = 0, unsigned s = 0, unsigned t = 0)
			:ptr(NULL)
			{
			Initialize(f, s, t);
			}
		/*! Frees the old matrix, and creates a new matrix.  See NewThreeDArray() for argument explanation  */
		void Initialize(unsigned f = 0, unsigned s = 0, unsigned t = 0)
			{
			Free();
			if (f > 0 && s > 0 && t > 0)
				ptr = NewThreeDArray<T>(f, s, t);
			}
		/*! returns an alias to the memory, and "forgets" about the memory.
			The caller is responsible for assuring that DeleteThreeDArray is
			called on the pointer.
		*/
		T ***Surrender()
			{
			T ***temp = ptr;
			ptr = NULL;
			return temp;
			}
		~ScopedThreeDMatrix()
			{
			Free();
			}
		/*! Releases the memory. */
		void Free()
			{
			if (ptr != NULL)
				{
				DeleteThreeDArray<T>(ptr);
				ptr = 0L;
				}
			}
	};


/*!
	Simple memory-management class for a 2-D array that is allocated using NewTwoDArray

	Memory is deleted when the instance goes out of scope, unless Surrender is called.

*/
template<typename T>
class ScopedTwoDMatrix
	{

	public:
		T ** ptr;

		/*! returns an alias to the memory, but does not "surrender" the
			ownership of the pointer to the caller
		*/
		T ** GetAlias() const
			{
			return ptr;
			}
		/*! Creates a new matrix.  See NewTwoDArray() for argument explanation  */
		ScopedTwoDMatrix(unsigned f = 0, unsigned s = 0)
			:ptr(NULL)
			{
			Initialize(f, s);
			}
		/*! Frees the old matrix, and creates a new matrix.  See NewTwoDArray() for argument explanation  */
		void Initialize(unsigned f, unsigned s)
			{
			Free();
			if (f > 0 && s > 0)
				ptr = NewTwoDArray<T>(f, s);
			}
		/*! returns an alias to the memory, and "forgets" about the memory.
			The caller is responsible for assuring that DeleteTwoDArray is
			called on the pointer.
		*/
		T **Surrender()
			{
			T** temp = ptr;
			ptr = NULL;
			return temp;
			}

		~ScopedTwoDMatrix()
			{
			Free();
			}

		/*! Releases the memory. */
		void Free()
			{
			if (ptr != NULL)
				{
				DeleteTwoDArray<T>(ptr);
				ptr = 0L;
				}
			}

	};

typedef ScopedTwoDMatrix<double> ScopedDblTwoDMatrix;
typedef ScopedTwoDMatrix<unsigned> ScopedUIntTwoDMatrix;

typedef ScopedThreeDMatrix<double> ScopedDblThreeDMatrix;
typedef ScopedThreeDMatrix<unsigned> ScopedUIntThreeDMatrix;

#endif